0a47a95588
* ui: Add data-source component and related services (#6486) * ui: Add data-source component and related services: 1. DataSource component 2. Repository manager for retrieving repositories based on URIs 3. Blocking data service for injection to the data-source component to support blocking query types of data sources 4. 'Once' promise based data service for injection for potential fallback to old style promise based data (would need to be injected via an initial runtime variable) 5. Several utility functions taken from elsewhere - maybeCall - a replication of code from elsewhere for condition calling a function based on the result of a promise - restartWhenAvailable - used for restarting blocking queries when a tab is brought to the front - ifNotBlocking - to check if blocking is NOT enabled * Move to a different organization based on protocols * Don't call open twice when eager * Workaround new ember error for reading and writing at the same time * Add first draft of a README.mdx file
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import Service from '@ember/service';
|
|
import getStorage from 'consul-ui/utils/storage/local-storage';
|
|
const SCHEME = 'consul';
|
|
const storage = getStorage(SCHEME);
|
|
// promise aware assertion
|
|
export const ifNotBlocking = function(repo) {
|
|
return repo.findBySlug('client').then(function(settings) {
|
|
return typeof settings.blocking !== 'undefined' && !settings.blocking;
|
|
});
|
|
};
|
|
export default Service.extend({
|
|
storage: storage,
|
|
findAll: function(key) {
|
|
return Promise.resolve(this.storage.all());
|
|
},
|
|
findBySlug: function(slug) {
|
|
return Promise.resolve(this.storage.getValue(slug));
|
|
},
|
|
persist: function(obj) {
|
|
const storage = this.storage;
|
|
Object.keys(obj).forEach((item, i) => {
|
|
storage.setValue(item, obj[item]);
|
|
});
|
|
return Promise.resolve(obj);
|
|
},
|
|
delete: function(obj) {
|
|
// TODO: Loop through and delete the specified keys
|
|
if (!Array.isArray(obj)) {
|
|
obj = [obj];
|
|
}
|
|
const storage = this.storage;
|
|
const item = obj.reduce(function(prev, item, i, arr) {
|
|
storage.removeValue(item);
|
|
return prev;
|
|
}, {});
|
|
return Promise.resolve(item);
|
|
},
|
|
});
|