mirror of https://github.com/portainer/portainer
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
|
export class CreateEdgeGroupController {
|
||
|
/* @ngInject */
|
||
|
constructor(EdgeGroupService, GroupService, TagService, Notifications, $state, $async) {
|
||
|
this.EdgeGroupService = EdgeGroupService;
|
||
|
this.GroupService = GroupService;
|
||
|
this.TagService = TagService;
|
||
|
this.Notifications = Notifications;
|
||
|
this.$state = $state;
|
||
|
this.$async = $async;
|
||
|
|
||
|
this.state = {
|
||
|
actionInProgress: false,
|
||
|
loaded: false,
|
||
|
};
|
||
|
|
||
|
this.model = {
|
||
|
Name: '',
|
||
|
Endpoints: [],
|
||
|
Dynamic: false,
|
||
|
TagIds: [],
|
||
|
PartialMatch: false,
|
||
|
};
|
||
|
|
||
|
this.createGroup = this.createGroup.bind(this);
|
||
|
this.createGroupAsync = this.createGroupAsync.bind(this);
|
||
|
}
|
||
|
|
||
|
async $onInit() {
|
||
|
const [tags, endpointGroups] = await Promise.all([this.TagService.tags(), this.GroupService.groups()]);
|
||
|
this.tags = tags;
|
||
|
this.endpointGroups = endpointGroups;
|
||
|
this.state.loaded = true;
|
||
|
}
|
||
|
|
||
|
createGroup() {
|
||
|
return this.$async(this.createGroupAsync);
|
||
|
}
|
||
|
|
||
|
async createGroupAsync() {
|
||
|
this.state.actionInProgress = true;
|
||
|
try {
|
||
|
await this.EdgeGroupService.create(this.model);
|
||
|
this.Notifications.success('Edge group successfully created');
|
||
|
this.$state.go('edge.groups');
|
||
|
} catch (err) {
|
||
|
this.Notifications.error('Failure', err, 'Unable to create edge group');
|
||
|
} finally {
|
||
|
this.state.actionInProgress = false;
|
||
|
}
|
||
|
}
|
||
|
}
|