mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import appEvents from 'app/core/app_events';
|
|
import locationUtil from 'app/core/utils/location_util';
|
|
|
|
export class CreateFolderCtrl {
|
|
title = '';
|
|
navModel: any;
|
|
titleTouched = false;
|
|
hasValidationError: boolean;
|
|
validationError: any;
|
|
|
|
/** @ngInject */
|
|
constructor(private backendSrv, private $location, private validationSrv, navModelSrv) {
|
|
this.navModel = navModelSrv.getNav('dashboards', 'manage-dashboards', 0);
|
|
}
|
|
|
|
create() {
|
|
if (this.hasValidationError) {
|
|
return;
|
|
}
|
|
|
|
return this.backendSrv.createFolder({ title: this.title }).then(result => {
|
|
appEvents.emit('alert-success', ['Folder Created', 'OK']);
|
|
this.$location.url(locationUtil.stripBaseFromUrl(result.url));
|
|
});
|
|
}
|
|
|
|
titleChanged() {
|
|
this.titleTouched = true;
|
|
|
|
this.validationSrv
|
|
.validateNewFolderName(this.title)
|
|
.then(() => {
|
|
this.hasValidationError = false;
|
|
})
|
|
.catch(err => {
|
|
this.hasValidationError = true;
|
|
this.validationError = err.message;
|
|
});
|
|
}
|
|
}
|