25 lines
686 B
JavaScript
25 lines
686 B
JavaScript
import Component from '@ember/component';
|
|
import { computed } from '@ember/object';
|
|
import { classNames } from '@ember-decorators/component';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
@classNames('boxed-section')
|
|
export default class Summary extends Component {
|
|
job = null;
|
|
forceCollapsed = false;
|
|
|
|
@computed('forceCollapsed')
|
|
get isExpanded() {
|
|
if (this.forceCollapsed) return false;
|
|
|
|
const storageValue = window.localStorage.nomadExpandJobSummary;
|
|
return storageValue != null ? JSON.parse(storageValue) : true;
|
|
}
|
|
|
|
persist(item, isOpen) {
|
|
window.localStorage.nomadExpandJobSummary = isOpen;
|
|
this.notifyPropertyChange('isExpanded');
|
|
}
|
|
}
|