2015-03-12 19:51:44 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-07-12 12:51:57 +00:00
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-07-12 12:51:57 +00:00
|
|
|
*
|
2018-05-11 20:32:37 +00:00
|
|
|
* @format
|
2015-03-23 17:06:16 +00:00
|
|
|
* @flow
|
2015-03-12 19:51:44 +00:00
|
|
|
*/
|
2018-05-11 20:32:37 +00:00
|
|
|
|
2015-03-12 19:51:44 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-10-30 21:03:18 +00:00
|
|
|
const React = require('react');
|
|
|
|
const ReactNative = require('react-native');
|
|
|
|
const {AsyncStorage, PickerIOS, Text, View} = ReactNative;
|
|
|
|
const PickerItemIOS = PickerIOS.Item;
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2018-10-30 21:03:18 +00:00
|
|
|
const STORAGE_KEY = '@AsyncStorageExample:key';
|
|
|
|
const COLORS = ['red', 'orange', 'yellow', 'green', 'blue'];
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class BasicStorageExample extends React.Component<{}, $FlowFixMeState> {
|
2016-07-26 08:00:02 +00:00
|
|
|
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 {
|
2018-10-30 21:03:18 +00:00
|
|
|
const value = await AsyncStorage.getItem(STORAGE_KEY);
|
2018-05-11 20:32:37 +00:00
|
|
|
if (value !== null) {
|
2015-08-04 12:23:31 +00:00
|
|
|
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() {
|
2018-10-30 21:03:18 +00:00
|
|
|
const color = this.state.selectedValue;
|
2015-03-12 19:51:44 +00:00
|
|
|
return (
|
|
|
|
<View>
|
2018-05-11 20:32:37 +00:00
|
|
|
<PickerIOS selectedValue={color} onValueChange={this._onValueChange}>
|
|
|
|
{COLORS.map(value => (
|
|
|
|
<PickerItemIOS key={value} value={value} label={value} />
|
2015-03-12 19:51:44 +00:00
|
|
|
))}
|
|
|
|
</PickerIOS>
|
|
|
|
<Text>
|
|
|
|
{'Selected: '}
|
2018-05-11 20:32:37 +00:00
|
|
|
<Text style={{color}}>{this.state.selectedValue}</Text>
|
2015-03-12 19:51:44 +00:00
|
|
|
</Text>
|
2018-11-01 21:27:00 +00:00
|
|
|
<Text />
|
2015-03-12 19:51:44 +00:00
|
|
|
<Text onPress={this._removeStorage}>
|
|
|
|
Press here to remove from storage.
|
|
|
|
</Text>
|
2018-11-01 21:27:00 +00:00
|
|
|
<Text />
|
2015-03-12 19:51:44 +00:00
|
|
|
<Text>Messages:</Text>
|
2018-05-11 20:32:37 +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
|
|
|
|
2018-05-11 20:32:37 +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
|
|
|
|
2018-05-11 20:32:37 +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',
|
2018-05-11 20:32:37 +00:00
|
|
|
render(): React.Element<any> {
|
|
|
|
return <BasicStorageExample />;
|
|
|
|
},
|
2015-03-12 19:51:44 +00:00
|
|
|
},
|
|
|
|
];
|