| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- import coreModule from 'app/core/core_module';
- const template = `
- <div class="modal-body">
- <div class="modal-header">
- <h2 class="modal-header-title">
- <i class="fa fa-copy"></i>
- <span class="p-l-1">Save As...</span>
- </h2>
- <a class="modal-header-close" ng-click="ctrl.dismiss();">
- <i class="fa fa-remove"></i>
- </a>
- </div>
- <form name="ctrl.saveForm" class="modal-content" novalidate>
- <div class="p-t-2">
- <div class="gf-form">
- <label class="gf-form-label width-7">New name</label>
- <input type="text" class="gf-form-input" ng-model="ctrl.clone.title" give-focus="true" required>
- </div>
- <div class="gf-form">
- <folder-picker initial-folder-id="ctrl.folderId"
- on-change="ctrl.onFolderChange($folder)"
- enter-folder-creation="ctrl.onEnterFolderCreation()"
- exit-folder-creation="ctrl.onExitFolderCreation()"
- enable-create-new="true"
- label-class="width-7"
- dashboard-id="ctrl.clone.id">
- </folder-picker>
- </div>
- </div>
- <div class="gf-form-button-row text-center">
- <button type="submit" class="btn btn-primary" ng-click="ctrl.save()" ng-disabled="!ctrl.isValidFolderSelection">Save</button>
- <a class="btn-text" ng-click="ctrl.dismiss();">Cancel</a>
- </div>
- </form>
- </div>
- `;
- export class SaveDashboardAsModalCtrl {
- clone: any;
- folderId: any;
- dismiss: () => void;
- isValidFolderSelection = true;
- /** @ngInject */
- constructor(private dashboardSrv) {
- const dashboard = this.dashboardSrv.getCurrent();
- this.clone = dashboard.getSaveModelClone();
- this.clone.id = null;
- this.clone.uid = '';
- this.clone.title += ' Copy';
- this.clone.editable = true;
- this.clone.hideControls = false;
- this.folderId = dashboard.meta.folderId;
- // remove alerts if source dashboard is already persisted
- // do not want to create alert dupes
- if (dashboard.id > 0) {
- this.clone.panels.forEach(panel => {
- if (panel.type === 'graph' && panel.alert) {
- delete panel.thresholds;
- }
- delete panel.alert;
- });
- }
- delete this.clone.autoUpdate;
- }
- save() {
- return this.dashboardSrv.save(this.clone, { folderId: this.folderId }).then(this.dismiss);
- }
- keyDown(evt) {
- if (evt.keyCode === 13) {
- this.save();
- }
- }
- onFolderChange(folder) {
- this.folderId = folder.id;
- }
- onEnterFolderCreation() {
- this.isValidFolderSelection = false;
- }
- onExitFolderCreation() {
- this.isValidFolderSelection = true;
- }
- }
- export function saveDashboardAsDirective() {
- return {
- restrict: 'E',
- template: template,
- controller: SaveDashboardAsModalCtrl,
- bindToController: true,
- controllerAs: 'ctrl',
- scope: { dismiss: '&' },
- };
- }
- coreModule.directive('saveDashboardAsModal', saveDashboardAsDirective);
|