|
@@ -12,231 +12,267 @@ require('jquery-ui/ui/resizable');
|
|
|
require('jquery-ui/ui/button');
|
|
|
require('jquery-ui/ui/dialog');
|
|
|
|
|
|
-var initDashboard = function() {
|
|
|
- var updateDashboardModules = function () {
|
|
|
- var $form = $('#update-dashboard-modules-form');
|
|
|
- var modules = [];
|
|
|
-
|
|
|
- $('.dashboard-column').each(function () {
|
|
|
- var $column = $(this);
|
|
|
- var column = $column.closest('.dashboard-column-wrapper').index();
|
|
|
-
|
|
|
- $column.find('.dashboard-item').each(function () {
|
|
|
- var $item = $(this);
|
|
|
- var order = $item.index();
|
|
|
- var id = $item.data('module-id');
|
|
|
-
|
|
|
- modules.push({
|
|
|
- id: id,
|
|
|
- column: column,
|
|
|
- order: order
|
|
|
- });
|
|
|
- });
|
|
|
- });
|
|
|
-
|
|
|
- $form.find('[name="modules"]').val(JSON.stringify(modules));
|
|
|
+var Dashboard = function($dashboard) {
|
|
|
+ this.$dashboard = $dashboard;
|
|
|
+};
|
|
|
|
|
|
- $.ajax({
|
|
|
- url: $form.attr('action'),
|
|
|
- method: $form.attr('method'),
|
|
|
- dataType: 'json',
|
|
|
- data: $form.serialize()
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- $('.dashboard-column').droppable({
|
|
|
- activeClass: 'active',
|
|
|
- hoverClass: 'hovered',
|
|
|
- tolerance: 'pointer',
|
|
|
- accept: '.dashboard-item'
|
|
|
- }).sortable({
|
|
|
- items: '.dashboard-item',
|
|
|
- handle: '.dashboard-item-header',
|
|
|
- tolerance: 'pointer',
|
|
|
- connectWith: '.dashboard-column',
|
|
|
- cursor: 'move',
|
|
|
- placeholder: 'dashboard-item placeholder',
|
|
|
- forcePlaceholderSize: true,
|
|
|
- update: function (event, ui) {
|
|
|
- updateDashboardModules();
|
|
|
+Dashboard.prototype = {
|
|
|
+ t: function(s) {
|
|
|
+ if (window.django == undefined) {
|
|
|
+ return s;
|
|
|
}
|
|
|
- });
|
|
|
-
|
|
|
- $('.dashboard-item.collapsible').each(function () {
|
|
|
- var $item = $(this);
|
|
|
- var $link = $item.find('.dashboard-item-collapse');
|
|
|
- var $collapsible = $item.find('.dashboard-item-content');
|
|
|
- var $form = $('#update-dashboard-module-collapse-form');
|
|
|
- var moduleId = $item.data('module-id');
|
|
|
+ return django.gettext(s);
|
|
|
+ },
|
|
|
+ initTools: function($dashboard) {
|
|
|
+ var self = this;
|
|
|
|
|
|
- $link.on('click', function (e) {
|
|
|
- e.preventDefault();
|
|
|
+ $dashboard.find('.dashboard-tools-toggle').on('click', function () {
|
|
|
+ $dashboard.find('.dashboard-tools').toggleClass('visible');
|
|
|
+ });
|
|
|
|
|
|
- $collapsible.slideFadeToggle(200, 'swing', function () {
|
|
|
- var collapsed = $collapsible.is(':visible') == false;
|
|
|
+ var $form = $dashboard.find('#add-dashboard-module-form');
|
|
|
|
|
|
- if (collapsed) {
|
|
|
- $item.addClass('collapsed')
|
|
|
- } else {
|
|
|
- $item.removeClass('collapsed')
|
|
|
- }
|
|
|
+ $form.find('.add-dashboard-link').on('click', function (e) {
|
|
|
+ var $typeInput = $form.find('[name="type"]');
|
|
|
+ var type = $form.find('[name="module"] option:selected').data('type');
|
|
|
|
|
|
- $form.find('[name="id"]').val(moduleId);
|
|
|
- $form.find('[name="collapsed"]').val(collapsed ? 'true' : 'false');
|
|
|
+ if (type) {
|
|
|
+ $typeInput.val(type);
|
|
|
|
|
|
$.ajax({
|
|
|
url: $form.attr('action'),
|
|
|
method: $form.attr('method'),
|
|
|
dataType: 'json',
|
|
|
- data: $form.serialize()
|
|
|
- });
|
|
|
- });
|
|
|
- });
|
|
|
- });
|
|
|
+ data: $form.serialize(),
|
|
|
+ success: function (result) {
|
|
|
+ if (result.error) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- $('.dashboard-item.deletable').each(function () {
|
|
|
- var $item = $(this);
|
|
|
- var $link = $item.find('.dashboard-item-remove');
|
|
|
- var $form = $('#remove-dashboard-module-form');
|
|
|
- var moduleId = $item.data('module-id');
|
|
|
+ document.location = result.success_url;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
- $link.on('click', function (e) {
|
|
|
e.preventDefault();
|
|
|
+ });
|
|
|
|
|
|
+ $dashboard.find('.reset-dashboard-link').on('click', function(e) {
|
|
|
var buttons = {};
|
|
|
+ var resetDashboard = function () {
|
|
|
+ var $form = $dashboard.find('#reset-dashboard-form');
|
|
|
|
|
|
- var deleteModule = function () {
|
|
|
- $item.fadeOut(200, 'swing', function () {
|
|
|
- $form.find('[name="id"]').val(moduleId);
|
|
|
+ $.ajax({
|
|
|
+ url: $form.attr('action'),
|
|
|
+ method: $form.attr('method'),
|
|
|
+ dataType: 'json',
|
|
|
+ data: $form.serialize(),
|
|
|
+ success: function (result) {
|
|
|
+ if (result.error) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- $.ajax({
|
|
|
- url: $form.attr('action'),
|
|
|
- method: $form.attr('method'),
|
|
|
- dataType: 'json',
|
|
|
- data: $form.serialize()
|
|
|
- });
|
|
|
+ location.reload();
|
|
|
+ }
|
|
|
});
|
|
|
};
|
|
|
|
|
|
- buttons[django.gettext('Delete')] = function () {
|
|
|
- deleteModule();
|
|
|
+ buttons[self.t('Yes')] = function() {
|
|
|
+ resetDashboard();
|
|
|
$(this).dialog('close');
|
|
|
};
|
|
|
|
|
|
- buttons[django.gettext('Cancel')] = function () {
|
|
|
+ buttons[self.t('Cancel')] = function() {
|
|
|
$(this).dialog('close');
|
|
|
};
|
|
|
|
|
|
- $('#module-remove-dialog').dialog({
|
|
|
+ $dashboard.find('#reset-dashboard-dialog').dialog({
|
|
|
resizable: false,
|
|
|
modal: true,
|
|
|
buttons: buttons
|
|
|
});
|
|
|
+
|
|
|
+ e.preventDefault();
|
|
|
});
|
|
|
- });
|
|
|
+ },
|
|
|
+ updateDashboardModules: function($dashboard) {
|
|
|
+ var $form = $dashboard.find('#update-dashboard-modules-form');
|
|
|
+ var modules = [];
|
|
|
|
|
|
- $('.dashboard-tools-toggle').on('click', function() {
|
|
|
- $('.dashboard-tools').toggleClass('visible');
|
|
|
- });
|
|
|
+ $dashboard.find('.dashboard-column').each(function () {
|
|
|
+ var $column = $(this);
|
|
|
+ var column = $column.closest('.dashboard-column-wrapper').index();
|
|
|
|
|
|
- var $form = $('#add-dashboard-module-form');
|
|
|
+ $column.find('.dashboard-item').each(function () {
|
|
|
+ var $item = $(this);
|
|
|
+ var order = $item.index();
|
|
|
+ var id = $item.data('module-id');
|
|
|
|
|
|
- $form.find('.add-dashboard-link').on('click', function (e) {
|
|
|
- var $typeInput = $form.find('[name="type"]');
|
|
|
- var type = $form.find('[name="module"] option:selected').data('type');
|
|
|
+ modules.push({
|
|
|
+ id: id,
|
|
|
+ column: column,
|
|
|
+ order: order
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
|
|
|
- if (type) {
|
|
|
- $typeInput.val(type);
|
|
|
+ $form.find('[name="modules"]').val(JSON.stringify(modules));
|
|
|
|
|
|
- $.ajax({
|
|
|
- url: $form.attr('action'),
|
|
|
- method: $form.attr('method'),
|
|
|
- dataType: 'json',
|
|
|
- data: $form.serialize(),
|
|
|
- success: function (result) {
|
|
|
- if (result.error) {
|
|
|
- return;
|
|
|
+ $.ajax({
|
|
|
+ url: $form.attr('action'),
|
|
|
+ method: $form.attr('method'),
|
|
|
+ dataType: 'json',
|
|
|
+ data: $form.serialize()
|
|
|
+ });
|
|
|
+ },
|
|
|
+ initModulesDragAndDrop: function($dashboard) {
|
|
|
+ var self = this;
|
|
|
+
|
|
|
+ $dashboard.find('.dashboard-column').droppable({
|
|
|
+ activeClass: 'active',
|
|
|
+ hoverClass: 'hovered',
|
|
|
+ tolerance: 'pointer',
|
|
|
+ accept: '.dashboard-item'
|
|
|
+ }).sortable({
|
|
|
+ items: '.dashboard-item',
|
|
|
+ handle: '.dashboard-item-header',
|
|
|
+ tolerance: 'pointer',
|
|
|
+ connectWith: '.dashboard-column',
|
|
|
+ cursor: 'move',
|
|
|
+ placeholder: 'dashboard-item placeholder',
|
|
|
+ forcePlaceholderSize: true,
|
|
|
+ update: function (event, ui) {
|
|
|
+ self.updateDashboardModules($dashboard);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ initCollapsibleModules: function($dashboard) {
|
|
|
+ var $form = $dashboard.find('#update-dashboard-module-collapse-form');
|
|
|
+
|
|
|
+ $dashboard.find('.dashboard-item.collapsible').each(function () {
|
|
|
+ var $item = $(this);
|
|
|
+ var $link = $item.find('.dashboard-item-collapse');
|
|
|
+ var $collapsible = $item.find('.dashboard-item-content');
|
|
|
+ var moduleId = $item.data('module-id');
|
|
|
+
|
|
|
+ $link.on('click', function (e) {
|
|
|
+ e.preventDefault();
|
|
|
+
|
|
|
+ $collapsible.slideFadeToggle(200, 'swing', function () {
|
|
|
+ var collapsed = $collapsible.is(':visible') == false;
|
|
|
+
|
|
|
+ if (collapsed) {
|
|
|
+ $item.addClass('collapsed')
|
|
|
+ } else {
|
|
|
+ $item.removeClass('collapsed')
|
|
|
}
|
|
|
|
|
|
- document.location = result.success_url;
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- e.preventDefault();
|
|
|
- });
|
|
|
+ $form.find('[name="id"]').val(moduleId);
|
|
|
+ $form.find('[name="collapsed"]').val(collapsed ? 'true' : 'false');
|
|
|
|
|
|
- $('.dashboard-item.ajax').each(function () {
|
|
|
- var $item = $(this);
|
|
|
- var $content = $item.find('.dashboard-item-content');
|
|
|
- var url = $item.data('ajax-url');
|
|
|
- var moduleId = $item.data('module-id');
|
|
|
+ $.ajax({
|
|
|
+ url: $form.attr('action'),
|
|
|
+ method: $form.attr('method'),
|
|
|
+ dataType: 'json',
|
|
|
+ data: $form.serialize()
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ initDeletableModules: function($dashboard) {
|
|
|
+ var self = this;
|
|
|
+ var $form = $dashboard.find('#remove-dashboard-module-form');
|
|
|
+
|
|
|
+ $dashboard.find('.dashboard-item.deletable').each(function () {
|
|
|
+ var $item = $(this);
|
|
|
+ var $link = $item.find('.dashboard-item-remove');
|
|
|
+ var moduleId = $item.data('module-id');
|
|
|
+
|
|
|
+ $link.on('click', function (e) {
|
|
|
+ e.preventDefault();
|
|
|
+
|
|
|
+ var buttons = {};
|
|
|
+
|
|
|
+ var deleteModule = function () {
|
|
|
+ $item.fadeOut(200, 'swing', function () {
|
|
|
+ $form.find('[name="id"]').val(moduleId);
|
|
|
+
|
|
|
+ $.ajax({
|
|
|
+ url: $form.attr('action'),
|
|
|
+ method: $form.attr('method'),
|
|
|
+ dataType: 'json',
|
|
|
+ data: $form.serialize()
|
|
|
+ });
|
|
|
+ });
|
|
|
+ };
|
|
|
|
|
|
- $form.find('[name="id"]').val(moduleId);
|
|
|
+ buttons[self.t('Delete')] = function () {
|
|
|
+ deleteModule();
|
|
|
+ $(this).dialog('close');
|
|
|
+ };
|
|
|
|
|
|
- $.ajax({
|
|
|
- url: url,
|
|
|
- dataType: 'json',
|
|
|
- success: function (result) {
|
|
|
- if (result.error) {
|
|
|
- $content.empty();
|
|
|
- return;
|
|
|
- }
|
|
|
+ buttons[self.t('Cancel')] = function () {
|
|
|
+ $(this).dialog('close');
|
|
|
+ };
|
|
|
|
|
|
- var oldHeight = $content.height();
|
|
|
- $content.html(result.html);
|
|
|
- var newHeight = $content.height();
|
|
|
-
|
|
|
- $content.height(oldHeight);
|
|
|
- $content.animate({
|
|
|
- height: newHeight
|
|
|
- }, 250);
|
|
|
- },
|
|
|
- error: function() {
|
|
|
- $content.empty();
|
|
|
- }
|
|
|
+ $dashboard.find('#module-remove-dialog').dialog({
|
|
|
+ resizable: false,
|
|
|
+ modal: true,
|
|
|
+ buttons: buttons
|
|
|
+ });
|
|
|
+ });
|
|
|
});
|
|
|
- });
|
|
|
-
|
|
|
- $('.reset-dashboard-link').on('click', function(e) {
|
|
|
- var buttons = {};
|
|
|
- var resetDashboard = function () {
|
|
|
- var $form = $('#reset-dashboard-form');
|
|
|
+ },
|
|
|
+ initAjaxModules: function($dashboard) {
|
|
|
+ $dashboard.find('.dashboard-item.ajax').each(function () {
|
|
|
+ var $item = $(this);
|
|
|
+ var $content = $item.find('.dashboard-item-content');
|
|
|
+ var url = $item.data('ajax-url');
|
|
|
|
|
|
$.ajax({
|
|
|
- url: $form.attr('action'),
|
|
|
- method: $form.attr('method'),
|
|
|
+ url: url,
|
|
|
dataType: 'json',
|
|
|
- data: $form.serialize(),
|
|
|
success: function (result) {
|
|
|
if (result.error) {
|
|
|
+ $content.empty();
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- location.reload();
|
|
|
+ var oldHeight = $content.height();
|
|
|
+ $content.html(result.html);
|
|
|
+ var newHeight = $content.height();
|
|
|
+
|
|
|
+ $content.height(oldHeight);
|
|
|
+ $content.animate({
|
|
|
+ height: newHeight
|
|
|
+ }, 250);
|
|
|
+ },
|
|
|
+ error: function () {
|
|
|
+ $content.empty();
|
|
|
}
|
|
|
});
|
|
|
- };
|
|
|
-
|
|
|
- buttons[django.gettext('Yes')] = function() {
|
|
|
- resetDashboard();
|
|
|
- $(this).dialog('close');
|
|
|
- };
|
|
|
-
|
|
|
- buttons[django.gettext('Cancel')] = function() {
|
|
|
- $(this).dialog('close');
|
|
|
- };
|
|
|
-
|
|
|
- $('#reset-dashboard-dialog').dialog({
|
|
|
- resizable: false,
|
|
|
- modal: true,
|
|
|
- buttons: buttons
|
|
|
});
|
|
|
+ },
|
|
|
+ run: function() {
|
|
|
+ var $dashboard = this.$dashboard;
|
|
|
+
|
|
|
+ try {
|
|
|
+ this.initTools($dashboard);
|
|
|
+ this.initModulesDragAndDrop($dashboard);
|
|
|
+ this.initCollapsibleModules($dashboard);
|
|
|
+ this.initDeletableModules($dashboard);
|
|
|
+ this.initAjaxModules($dashboard);
|
|
|
+ } catch (e) {
|
|
|
+ console.error(e, e.stack);
|
|
|
+ }
|
|
|
|
|
|
- e.preventDefault();
|
|
|
- });
|
|
|
+ $dashboard.addClass('initialized');
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
- initDashboard();
|
|
|
+ $('.dashboard.jet').each(function() {
|
|
|
+ new Dashboard($(this)).run();
|
|
|
+ });
|
|
|
});
|