mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
47 lines
1.6 KiB
JavaScript
47 lines
1.6 KiB
JavaScript
define([
|
|
'../core_module',
|
|
'app/core/utils/kbn',
|
|
],
|
|
function (coreModule, kbn) {
|
|
'use strict';
|
|
|
|
coreModule.default.directive('dashUpload', function(timer, alertSrv, $location) {
|
|
return {
|
|
restrict: 'A',
|
|
link: function(scope) {
|
|
function file_selected(evt) {
|
|
var files = evt.target.files; // FileList object
|
|
var readerOnload = function() {
|
|
return function(e) {
|
|
scope.$apply(function() {
|
|
try {
|
|
window.grafanaImportDashboard = JSON.parse(e.target.result);
|
|
} catch (err) {
|
|
console.log(err);
|
|
scope.appEvent('alert-error', ['Import failed', 'JSON -> JS Serialization failed: ' + err.message]);
|
|
return;
|
|
}
|
|
var title = kbn.slugifyForUrl(window.grafanaImportDashboard.title);
|
|
window.grafanaImportDashboard.id = null;
|
|
$location.path('/dashboard-import/' + title);
|
|
});
|
|
};
|
|
};
|
|
for (var i = 0, f; f = files[i]; i++) {
|
|
var reader = new FileReader();
|
|
reader.onload = (readerOnload)(f);
|
|
reader.readAsText(f);
|
|
}
|
|
}
|
|
// Check for the various File API support.
|
|
if (window.File && window.FileReader && window.FileList && window.Blob) {
|
|
// Something
|
|
document.getElementById('dashupload').addEventListener('change', file_selected, false);
|
|
} else {
|
|
alertSrv.set('Oops','Sorry, the HTML5 File APIs are not fully supported in this browser.','error');
|
|
}
|
|
}
|
|
};
|
|
});
|
|
});
|