Commit 440ea666 by Torkel Ödegaard

more work on share panel, #864

parent 6f1a6d5a
......@@ -15,5 +15,6 @@ define([
'./opentsdbTargetCtrl',
'./annotationsEditorCtrl',
'./templateEditorCtrl',
'./sharePanelCtrl',
'./jsonEditorCtrl',
], function () {});
define([
'angular',
'lodash'
],
function (angular, _) {
'use strict';
var module = angular.module('grafana.controllers');
module.controller('SharePanelCtrl', function($scope, $location, $timeout, timeSrv, $element) {
$scope.init = function() {
$scope.editor = { index: 0 };
var currentUrl = $location.absUrl();
var panelId = $scope.panel.id;
var range = timeSrv.timeRange(false);
var from = range.from;
var to = range.to;
if (_.isDate(from)) {
from = from.getTime();
}
if (_.isDate(to)) {
to = to.getTime();
}
$scope.shareUrl = currentUrl + "?panelId=" + panelId + "&fullscreen";
$scope.shareUrl += "&from=" + from;
$scope.shareUrl += "&to=" + to;
$timeout(function() {
var input = $element.find('[data-share-panel-url]');
input.focus();
input.select();
});
};
$scope.init();
});
});
define([
'angular',
'app',
'lodash'
],
function (angular, app, _) {
function (angular, _) {
'use strict';
var module = angular.module('grafana.controllers');
......
......@@ -7,7 +7,7 @@
</div>
<div ng-model="editor.index" bs-tabs style="text-transform:capitalize;">
<div ng-repeat="tab in ['Link', 'Embedd', 'Image']" data-title="{{tab}}">
<div ng-repeat="tab in ['Link', 'Embed', 'Image']" data-title="{{tab}}">
</div>
</div>
......@@ -16,7 +16,18 @@
<div class="modal-body">
<div class="editor-row">
<input type="text" class="input input-xxlarge"></input>
<div class="editor-option">
<label class="small">Current time range</label>
<input type="checkbox"></input>
</div>
<div class="editor-option">
<label class="small">To fullscreen panel</label>
<input type="checkbox"></input>
</div>
</div>
<div class="editor-row" style="margin-top: 20px;">
<input type="text" data-share-panel-url ng-model="shareUrl" class="input input-fluid"></input>
</div>
</div>
......
......@@ -53,8 +53,9 @@
}
.modal {
max-width: 1024px;
max-width: 800px;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
......@@ -528,3 +529,10 @@ select.grafana-target-segment-input {
.grafana-tip {
padding-left: 5px;
}
input[type=text].input-fluid {
width: 100%;
box-sizing: border-box;
padding: 14px;
}
......@@ -562,12 +562,6 @@ div.flot-text {
background-color: darken(@purple, 10%);
}
.annotation-editor-table {
td {
white-space: nowrap;
}
}
// Top menu
.save-dashboard-dropdown {
padding: 10px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment