mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
28 lines
831 B
JavaScript
28 lines
831 B
JavaScript
|
(function () {
|
||
|
document.addEventListener('DOMContentLoaded', () => {
|
||
|
const PERSISTENCE_KEY = 'persistence-tests';
|
||
|
const openmct = window.openmct;
|
||
|
|
||
|
openmct.objects.addRoot({
|
||
|
namespace: PERSISTENCE_KEY,
|
||
|
key: PERSISTENCE_KEY
|
||
|
});
|
||
|
|
||
|
openmct.objects.addProvider(PERSISTENCE_KEY, {
|
||
|
get(identifier) {
|
||
|
if (identifier.key !== PERSISTENCE_KEY) {
|
||
|
return undefined;
|
||
|
} else {
|
||
|
return Promise.resolve({
|
||
|
identifier,
|
||
|
type: 'folder',
|
||
|
name: 'Persistence Testing',
|
||
|
location: 'ROOT',
|
||
|
composition: []
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
}());
|