c1cc51a057
This is no longer needed! https://guides.emberjs.com/release/upgrading/current-edition/native-classes/#toc_properties-and-fields
44 lines
1 KiB
JavaScript
44 lines
1 KiB
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';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
export default class VolumesRoute extends Route.extend(WithForbiddenState) {
|
|
@service system;
|
|
@service store;
|
|
|
|
breadcrumbs = [
|
|
{
|
|
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));
|
|
}
|
|
}
|