Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
1796dc95
Unverified
Commit
1796dc95
authored
Sep 18, 2017
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing gridstack from overwritten dashboard
parent
61b75243
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
142 deletions
+25
-142
dashboard.blade.php
resources/views/asgard/dashboard/admin/dashboard.blade.php
+25
-142
No files found.
resources/views/asgard/dashboard/admin/dashboard.blade.php
View file @
1796dc95
@
extends
(
'layouts.master'
)
@
section
(
'content-header'
)
<
h1
class
="
pull
-
left
"
>
<
h1
>
{{
trans
(
'dashboard::dashboard.name'
)
}}
</
h1
>
<div class="
btn
-
group
pull
-
right
">
<a class="
btn
btn
-
default
" id="
edit
-
grid
" data-mode="
0
" href="
#">{{ trans('dashboard::dashboard.edit grid') }}</a>
<
a
class
="
btn
btn
-
default
" id="
reset
-
grid
" href="
{{
route
(
'dashboard.grid.reset'
)
}}
">{{ trans('dashboard::dashboard.reset grid') }}</a>
<a class="
btn
btn
-
default
hidden
" id="
add
-
widget
" data-toggle="
modal
" data-target="
#myModal">{{ trans('dashboard::dashboard.add widget') }}</a>
</
div
>
<
div
class
="
clearfix
"></div>
@
stop
@
section
(
'styles'
)
<style>
.grid-stack-item {
padding-right: 20px !important;
}
</style>
@
stop
@
section
(
'content'
)
<
div
class
="
row
">
<div class="
col
-
md
-
12
">
<div class="
grid
-
stack
">
</div>
</div>
</div>
<div class="
clearfix
"></div>
<div class="
modal
fade
" id="
myModal
" tabindex="
-
1
" role="
dialog
" aria-labelledby="
myModalLabel
" aria-hidden="
true
">
<div class="
modal
-
dialog
">
<div class="
modal
-
content
">
<div class="
modal
-
header
">
<button type="
button
" class="
close
" data-dismiss="
modal
" aria-label="
Close
"><span aria-hidden="
true
">×</span></button>
<h4 class="
modal
-
title
" id="
myModalLabel
">{{ trans('dashboard::dashboard.add widget to dashboard') }}</h4>
@if (setting('dashboard::welcome-enabled') === '1')
<div class="
box
box
-
primary
">
<div class="
box
-
header
">
<h3 class="
box
-
title
">
@setting('dashboard::welcome-title')
</h3>
</div>
<div class="
modal
-
body
">
<div class="
row
"
>
<div class="
box
-
body
">
<p>@setting('dashboard::welcome-description')</p
>
</div>
@if (setting('core::site-name') === '')
<div class="
box
-
footer
">
<a class="
btn
btn
-
primary
btn
-
flat
" href="
{{
route
(
'dashboard.module.settings'
,
'core'
)
}}
">
<i class="
fa
fa
-
cog
"></i> {{ trans('dashboard::dashboard.configure your website') }}
</a>
<a class="
btn
btn
-
default
btn
-
flat
" href="
{{
route
(
'admin.page.page.index'
)
}}
">
{{ trans('dashboard::dashboard.add pages') }}
</a>
<a class="
btn
btn
-
default
btn
-
flat
" href="
{{
route
(
'admin.menu.menu.index'
)
}}
">
{{ trans('dashboard::dashboard.add menus') }}
</a>
</div>
@endif
</div>
@endif
</div>
</div>
@stop
@section('scripts')
@parent
<script type="
text
/
javascript
">
$(document).ready(function () {
var options = {
vertical_margin: 10,
float: true,
animate: true
};
$('.grid-stack').gridstack(options);
/** savey crap */
new function () {
this.defaultWidgets = {!! json_encode(
$widgets
) !!};
this.serialized_data = {!!
$customWidgets
!== 'null' ?
$customWidgets
: json_encode(
$widgets
) !!};
//console.log(this.defaultWidgets.PostsWidget);
this.grid = jQuery('.grid-stack').data('gridstack');
this.load_grid = function () {
this.grid.remove_all();
var items = GridStackUI.Utils.sort(this.serialized_data);
_.each(items, function (node) {
this.spawn_widget(node);
jQuery(jQuery.find('option[value="
'+node.id+'
"]')[0]).hide();
}, this);
}.bind(this);
this.save_grid = function () {
this.serialized_data = _.map($('.grid-stack > .grid-stack-item:visible'), function (el) {
el = jQuery(el);
var node = el.data('_gridstack_node');
return {
id: el.attr('id'),
x: node.x,
y: node.y,
width: node.width,
height: node.height
};
}, this);
$.ajax({
type: 'POST',
url: '{{ route('dashboard.grid.save') }}',
data: {
_token: '<?= csrf_token() ?>',
grid: JSON.stringify(this.serialized_data)
},
success: function(data) {
console.log(data);
}
});
}.bind(this);
this.clear_grid = function () {
this.grid.remove_all();
jQuery(jQuery.find('option:hidden')).show();
}.bind(this);
this.edit_grid = function () {
mode = jQuery('#edit-grid').data('mode');
if (mode == 0) {
// enable all the grid editing
_.map(jQuery('.grid-stack > .grid-stack-item:visible'), function (el) {
this.grid.movable(el, true);
jQuery(el).on('dblclick', function (e) {
this.grid.resizable(el, true);
}.bind(this));
}, this);
jQuery('#edit-grid').data('mode', 1).text('{{ trans('dashboard::dashboard.save grid') }}');
} else {
// disable all the grid editing
_.map(jQuery('.grid-stack > .grid-stack-item:visible'), function (el) {
this.grid.movable(el, false);
this.grid.resizable(el, false);
jQuery(el).off('dblclick');
}, this);
jQuery('#edit-grid').data('mode', 0).text('{{ trans('dashboard::dashboard.edit grid') }}');
// run the save mech
this.save_grid();
}
}.bind(this);
this.spawn_widget = function (node) {
var html = node.html === undefined ? this.defaultWidgets[node.id].html : node.html,
element = jQuery('<div><div class="
grid
-
stack
-
item
-
content
" />' + html + '<div/>'),
x = node.options === undefined ? node.x : node.options.x,
y = node.options === undefined ? node.y : node.options.y,
width = node.options === undefined ? node.width : node.options.width,
height = node.options === undefined ? node.height : node.options.height;
this.grid.add_widget(element, x, y, width, height);
element.attr({id: node.id});
this.grid.resizable(element, false);
this.grid.movable(element, false);
return element;
}.bind(this);
jQuery('#edit-grid').on('click', this.edit_grid);
jQuery('#myModal').on('hidden.bs.modal', function (e) {
value = jQuery('select[name=widget]').val();
if (value == 'x') {
return;
}
element = this.spawn_widget({
auto_position: true,
width: 2,
height: 2,
id: value
});
this.grid.resizable(element, true);
this.grid.movable(element, true);
}.bind(this));
this.load_grid();
};
});
</script>
@stop
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment