1cca7abcab
This is extracted from #8094, where I have run into some snags. Since these ESLint fixes aren’t actually connected to the Ember 3.16 update but involve changes to many files, we might as well address them separately. Where possible I fixed the problems but in cases where a fix seemed too involved, I added per-line or -file exceptions.
42 lines
989 B
JavaScript
42 lines
989 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
import WithForbiddenState from 'nomad-ui/mixins/with-forbidden-state';
|
|
import notifyForbidden from 'nomad-ui/utils/notify-forbidden';
|
|
|
|
export default Route.extend(WithForbiddenState, {
|
|
system: service(),
|
|
store: service(),
|
|
|
|
breadcrumbs: Object.freeze([
|
|
{
|
|
label: 'Storage',
|
|
args: ['csi.index'],
|
|
},
|
|
]),
|
|
|
|
queryParams: {
|
|
volumeNamespace: {
|
|
refreshModel: true,
|
|
},
|
|
},
|
|
|
|
beforeModel(transition) {
|
|
return this.get('system.namespaces').then(namespaces => {
|
|
const queryParam = transition.to.queryParams.namespace;
|
|
this.set('system.activeNamespace', queryParam || 'default');
|
|
|
|
return namespaces;
|
|
});
|
|
},
|
|
|
|
model() {
|
|
return this.store
|
|
.query('volume', { type: 'csi' })
|
|
.then(volumes => {
|
|
volumes.forEach(volume => volume.plugin);
|
|
return volumes;
|
|
})
|
|
.catch(notifyForbidden(this));
|
|
},
|
|
});
|