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

29 lines
503 B
JavaScript
Raw Normal View History

import { computed } from '@ember/object';
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 class WatchListService extends Service {
@computed
get _list() {
return copy(list, true);
}
@readOnly('_list') list;
constructor() {
super(...arguments);
list = {};
}
getIndexFor(url) {
return list[url] || 1;
}
setIndexFor(url, value) {
list[url] = +value;
}
}