mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
78 lines
2.4 KiB
TypeScript
78 lines
2.4 KiB
TypeScript
import angular from 'angular';
|
|
import { saveAs } from 'file-saver';
|
|
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-save"></i><span class="p-l-1">Cannot save provisioned dashboard</span>
|
|
</h2>
|
|
|
|
<a class="modal-header-close" ng-click="ctrl.dismiss();">
|
|
<i class="fa fa-remove"></i>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="modal-content">
|
|
<small>
|
|
This dashboard cannot be saved from Grafana's UI since it has been provisioned from another source.
|
|
Copy the JSON or save it to a file below. Then you can update your dashboard in corresponding provisioning source.<br/>
|
|
<i>See <a class="external-link" href="http://docs.grafana.org/administration/provisioning/#dashboards" target="_blank">
|
|
documentation</a> for more information about provisioning.</i>
|
|
</small>
|
|
<div class="p-t-2">
|
|
<div class="gf-form">
|
|
<code-editor content="ctrl.dashboardJson" data-mode="json" data-max-lines=15></code-editor>
|
|
</div>
|
|
<div class="gf-form-button-row">
|
|
<button class="btn btn-success" clipboard-button="ctrl.getJsonForClipboard()">
|
|
<i class="fa fa-clipboard"></i> Copy JSON to Clipboard
|
|
</button>
|
|
<button class="btn btn-secondary" clipboard-button="ctrl.save()">
|
|
<i class="fa fa-save"></i> Save JSON to file
|
|
</button>
|
|
<a class="btn btn-link" ng-click="ctrl.dismiss();">Cancel</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
export class SaveProvisionedDashboardModalCtrl {
|
|
dash: any;
|
|
dashboardJson: string;
|
|
dismiss: () => void;
|
|
|
|
/** @ngInject */
|
|
constructor(dashboardSrv) {
|
|
this.dash = dashboardSrv.getCurrent().getSaveModelClone();
|
|
delete this.dash.id;
|
|
this.dashboardJson = angular.toJson(this.dash, true);
|
|
}
|
|
|
|
save() {
|
|
const blob = new Blob([angular.toJson(this.dash, true)], {
|
|
type: 'application/json;charset=utf-8',
|
|
});
|
|
saveAs(blob, this.dash.title + '-' + new Date().getTime() + '.json');
|
|
}
|
|
|
|
getJsonForClipboard() {
|
|
return this.dashboardJson;
|
|
}
|
|
}
|
|
|
|
export function saveProvisionedDashboardModalDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
template: template,
|
|
controller: SaveProvisionedDashboardModalCtrl,
|
|
bindToController: true,
|
|
controllerAs: 'ctrl',
|
|
scope: { dismiss: '&' },
|
|
};
|
|
}
|
|
|
|
coreModule.directive('saveProvisionedDashboardModal', saveProvisionedDashboardModalDirective);
|