insomnia/packages/insomnia-app/app/plugins/context/store.js

35 lines
1.1 KiB
JavaScript
Raw Normal View History

// @flow
2018-06-25 17:42:50 +00:00
import type { Plugin } from '../index';
import * as models from '../../models';
2018-06-25 17:42:50 +00:00
export function init(plugin: Plugin) {
return {
store: {
2018-06-25 17:42:50 +00:00
async hasItem(key: string): Promise<boolean> {
const doc = await models.pluginData.getByKey(plugin.name, key);
return doc !== null;
},
2018-06-25 17:42:50 +00:00
async setItem(key: string, value: string): Promise<void> {
await models.pluginData.upsertByKey(plugin.name, key, String(value));
},
2018-06-25 17:42:50 +00:00
async getItem(key: string): Promise<string | null> {
const doc = await models.pluginData.getByKey(plugin.name, key);
return doc ? doc.value : null;
},
2018-06-25 17:42:50 +00:00
async removeItem(key: string): Promise<void> {
await models.pluginData.removeByKey(plugin.name, key);
},
2018-11-06 13:52:55 +00:00
async clear(): Promise<void> {
await models.pluginData.removeAll(plugin.name);
2018-11-06 13:52:55 +00:00
},
async all(): Promise<Array<{ key: string, value: string }>> {
const docs = await models.pluginData.all(plugin.name);
return docs.map(d => ({
value: d.value,
key: d.key,
2018-11-06 13:52:55 +00:00
}));
},
},
};
}