redux-persist-sensitive-storage
Version:
redux-persist storage engine for react-native-sensitive-info
89 lines (77 loc) • 2.08 kB
JavaScript
import { Platform } from "react-native";
import sensitiveInfo from "react-native-sensitive-info";
export default function(options = {}) {
// react-native-sensitive-info returns different a different structure on iOS
// than it does on Android.
//
// iOS:
// [
// [
// { service: 'app', key: 'foo', value: 'bar' },
// { service: 'app', key: 'baz', value: 'quux' }
// ]
// ]
//
// Android:
// {
// foo: 'bar',
// baz: 'quux'
// }
//
// See https://github.com/mCodex/react-native-sensitive-info/issues/8
//
// `extractKeys` adapts for the different structure to return the list of
// keys.
const extractKeys = Platform.select({
ios: items => items[0].map(item => item.key),
android: Object.keys
});
const noop = () => null;
return {
async getItem(key, callback = noop) {
try {
// getItem() returns `null` on Android and `undefined` on iOS;
// explicitly return `null` here as `undefined` causes an exception
// upstream.
let result = await sensitiveInfo.getItem(key, options);
if (typeof result === "undefined") {
result = null;
}
callback(null, result);
return result;
} catch (error) {
callback(error);
throw error;
}
},
async setItem(key, value, callback = noop) {
try {
await sensitiveInfo.setItem(key, value, options);
callback(null);
} catch (error) {
callback(error);
throw error;
}
},
async removeItem(key, callback = noop) {
try {
await sensitiveInfo.deleteItem(key, options);
callback(null);
} catch (error) {
callback(error);
throw error;
}
},
async getAllKeys(callback = noop) {
try {
const values = await sensitiveInfo.getAllItems(options);
const result = extractKeys(values);
callback(null, result);
return result;
} catch (error) {
callback(error);
throw error;
}
}
};
}