2015-03-12 19:51:44 +00:00
|
|
|
/**
|
2017-05-06 03:50:47 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
2016-07-12 12:51:57 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
2015-03-23 17:06:16 +00:00
|
|
|
* @flow
|
2017-02-25 11:05:32 +00:00
|
|
|
* @providesModule AsyncStorageExample
|
2015-03-12 19:51:44 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var React = require('react');
|
|
|
|
var ReactNative = require('react-native');
|
2015-03-12 19:51:44 +00:00
|
|
|
var {
|
|
|
|
AsyncStorage,
|
|
|
|
PickerIOS,
|
|
|
|
Text,
|
|
|
|
View
|
2016-04-09 03:36:40 +00:00
|
|
|
} = ReactNative;
|
2015-03-12 19:51:44 +00:00
|
|
|
var PickerItemIOS = PickerIOS.Item;
|
|
|
|
|
|
|
|
var STORAGE_KEY = '@AsyncStorageExample:key';
|
|
|
|
var COLORS = ['red', 'orange', 'yellow', 'green', 'blue'];
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
class BasicStorageExample extends React.Component {
|
|
|
|
state = {
|
|
|
|
selectedValue: COLORS[0],
|
|
|
|
messages: [],
|
|
|
|
};
|
|
|
|
|
2015-03-12 19:51:44 +00:00
|
|
|
componentDidMount() {
|
2015-08-04 12:23:31 +00:00
|
|
|
this._loadInitialState().done();
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
2015-08-04 12:23:31 +00:00
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
_loadInitialState = async () => {
|
2015-08-04 12:23:31 +00:00
|
|
|
try {
|
|
|
|
var value = await AsyncStorage.getItem(STORAGE_KEY);
|
|
|
|
if (value !== null){
|
|
|
|
this.setState({selectedValue: value});
|
|
|
|
this._appendMessage('Recovered selection from disk: ' + value);
|
|
|
|
} else {
|
|
|
|
this._appendMessage('Initialized with no selection on disk.');
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
this._appendMessage('AsyncStorage error: ' + error.message);
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
2015-03-12 19:51:44 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
var color = this.state.selectedValue;
|
|
|
|
return (
|
|
|
|
<View>
|
|
|
|
<PickerIOS
|
|
|
|
selectedValue={color}
|
|
|
|
onValueChange={this._onValueChange}>
|
|
|
|
{COLORS.map((value) => (
|
|
|
|
<PickerItemIOS
|
|
|
|
key={value}
|
|
|
|
value={value}
|
|
|
|
label={value}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</PickerIOS>
|
|
|
|
<Text>
|
|
|
|
{'Selected: '}
|
|
|
|
<Text style={{color}}>
|
|
|
|
{this.state.selectedValue}
|
|
|
|
</Text>
|
|
|
|
</Text>
|
|
|
|
<Text>{' '}</Text>
|
|
|
|
<Text onPress={this._removeStorage}>
|
|
|
|
Press here to remove from storage.
|
|
|
|
</Text>
|
|
|
|
<Text>{' '}</Text>
|
|
|
|
<Text>Messages:</Text>
|
2015-12-12 05:21:02 +00:00
|
|
|
{this.state.messages.map((m) => <Text key={m}>{m}</Text>)}
|
2015-03-12 19:51:44 +00:00
|
|
|
</View>
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
_onValueChange = async (selectedValue) => {
|
2015-03-12 19:51:44 +00:00
|
|
|
this.setState({selectedValue});
|
2015-08-04 12:23:31 +00:00
|
|
|
try {
|
|
|
|
await AsyncStorage.setItem(STORAGE_KEY, selectedValue);
|
|
|
|
this._appendMessage('Saved selection to disk: ' + selectedValue);
|
|
|
|
} catch (error) {
|
|
|
|
this._appendMessage('AsyncStorage error: ' + error.message);
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
_removeStorage = async () => {
|
2015-08-04 12:23:31 +00:00
|
|
|
try {
|
|
|
|
await AsyncStorage.removeItem(STORAGE_KEY);
|
|
|
|
this._appendMessage('Selection removed from disk.');
|
|
|
|
} catch (error) {
|
|
|
|
this._appendMessage('AsyncStorage error: ' + error.message);
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
_appendMessage = (message) => {
|
2015-03-12 19:51:44 +00:00
|
|
|
this.setState({messages: this.state.messages.concat(message)});
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
|
|
|
}
|
2015-03-12 19:51:44 +00:00
|
|
|
|
|
|
|
exports.title = 'AsyncStorage';
|
|
|
|
exports.description = 'Asynchronous local disk storage.';
|
|
|
|
exports.examples = [
|
|
|
|
{
|
|
|
|
title: 'Basics - getItem, setItem, removeItem',
|
2016-10-16 11:11:59 +00:00
|
|
|
render(): React.Element<any> { return <BasicStorageExample />; }
|
2015-03-12 19:51:44 +00:00
|
|
|
},
|
|
|
|
];
|