38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import Route from '@ember/routing/route';
|
|
import RSVP from 'rsvp';
|
|
import notifyError from 'nomad-ui/utils/notify-error';
|
|
|
|
export default Route.extend({
|
|
model({ path = '/' }) {
|
|
const decodedPath = decodeURIComponent(path);
|
|
const task = this.modelFor('allocations.allocation.task');
|
|
|
|
const pathWithTaskName = `${task.name}${decodedPath.startsWith('/') ? '' : '/'}${decodedPath}`;
|
|
|
|
return RSVP.all([task.stat(pathWithTaskName), task.get('allocation.node')])
|
|
.then(([statJson]) => {
|
|
if (statJson.IsDir) {
|
|
return RSVP.hash({
|
|
path: decodedPath,
|
|
task,
|
|
directoryEntries: task.ls(pathWithTaskName).catch(notifyError(this)),
|
|
isFile: false,
|
|
});
|
|
} else {
|
|
return {
|
|
path: decodedPath,
|
|
task,
|
|
isFile: true,
|
|
stat: statJson,
|
|
};
|
|
}
|
|
})
|
|
.catch(notifyError(this));
|
|
},
|
|
|
|
setupController(controller, { path, task, directoryEntries, isFile, stat } = {}) {
|
|
this._super(...arguments);
|
|
controller.setProperties({ path, task, directoryEntries, isFile, stat });
|
|
},
|
|
});
|