open-nomad/ui/app/services/watch-list.js

24 lines
386 B
JavaScript
Raw Normal View History

import { readOnly } from '@ember/object/computed';
2019-03-26 04:55:06 +00:00
import { copy } from 'ember-copy';
import Service from '@ember/service';
let list = {};
export default Service.extend({
list: readOnly(function() {
return copy(list, true);
}),
init() {
list = {};
},
getIndexFor(url) {
return list[url] || 1;
},
setIndexFor(url, value) {
list[url] = +value;
},
});