Skip to content

Commit bb7ca1f

Browse files
authored
Merge pull request #2074 from ConnorVG/generalise-ordering-js
Generalises the ordering JS
2 parents dbb8778 + 486642d commit bb7ca1f

File tree

8 files changed

+38
-63
lines changed

8 files changed

+38
-63
lines changed

public/build/dist/css/all-8b09a6139d.css public/build/dist/css/all-9f109896fb.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/dist/css/all.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/dist/js/all-914268da61.js public/build/dist/js/all-a2296565be.js

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/dist/js/all.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/rev-manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"dist/css/all.css": "dist/css/all-8b09a6139d.css",
3-
"dist/js/all.js": "dist/js/all-914268da61.js"
2+
"dist/css/all.css": "dist/css/all-9f109896fb.css",
3+
"dist/js/all.js": "dist/js/all-a2296565be.js"
44
}

resources/assets/js/app.js

+17-42
Original file line numberDiff line numberDiff line change
@@ -161,63 +161,38 @@ $(function() {
161161
}
162162
});
163163

164-
// Sortable components.
165-
var componentList = document.getElementById("component-list");
166-
if (componentList) {
167-
new Sortable(componentList, {
168-
group: "omega",
169-
handle: ".drag-handle",
164+
// Sortable models.
165+
var orderableLists = document.querySelectorAll('[data-orderable-list]');
166+
167+
$.each(orderableLists, function (k, list) {
168+
var url = $(list).data('orderableList');
169+
var notifier = new Cachet.Notifier();
170+
171+
new Sortable(list, {
172+
group: 'omega',
173+
handle: '.drag-handle',
170174
onUpdate: function() {
171-
var orderedComponentIds = $.map($('#component-list .striped-list-item'), function(elem) {
172-
return $(elem).data('component-id');
175+
var orderedIds = $.map(list.querySelectorAll('[data-orderable-id]'), function(elem) {
176+
return $(elem).data('orderable-id');
173177
});
174178

175179
$.ajax({
176180
async: true,
177-
url: '/dashboard/api/components/order',
181+
url: url,
178182
type: 'POST',
179183
data: {
180-
ids: orderedComponentIds
184+
ids: orderedIds
181185
},
182186
success: function() {
183-
(new Cachet.Notifier()).notify('Component orders updated.', 'success');
184-
},
185-
error: function() {
186-
(new Cachet.Notifier()).notify('Component orders not updated.', 'error');
187-
}
188-
});
189-
}
190-
});
191-
}
192-
193-
// Sortable Component Groups
194-
var componentGroupList = document.getElementById("component-group-list");
195-
if (componentGroupList) {
196-
new Sortable(componentGroupList, {
197-
group: "omega",
198-
handle: ".drag-handle",
199-
onUpdate: function() {
200-
var orderedComponentGroupsIds = $.map(
201-
$('#component-group-list .striped-list-item'),
202-
function(elem) {
203-
return $(elem).data('group-id');
204-
}
205-
);
206-
$.ajax({
207-
async: true,
208-
url: '/dashboard/api/components/groups/order',
209-
type: 'POST',
210-
data: {ids: orderedComponentGroupsIds},
211-
success: function() {
212-
(new Cachet.Notifier()).notify('Component groups order has been updated.', 'success');
187+
notifier.notify('Ordering updated.', 'success');
213188
},
214189
error: function() {
215-
(new Cachet.Notifier()).notify('Component groups order could not be updated.', 'error');
190+
notifier.notify('Ordering not updated.', 'error');
216191
}
217192
});
218193
}
219194
});
220-
}
195+
});
221196

222197
// Toggle inline component statuses.
223198
$('form.component-inline').on('click', 'input[type=radio]', function() {

resources/views/dashboard/components/groups/index.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
</div>
1818
@include('dashboard.partials.errors')
1919
<div class="row">
20-
<div class="col-sm-12 striped-list" id="component-group-list">
20+
<div class="col-sm-12 striped-list" data-orderable-list="/dashboard/api/components/groups/order">
2121
@forelse($groups as $group)
22-
<div class="row striped-list-item" data-group-id="{{ $group->id }}">
22+
<div class="row striped-list-item" data-orderable-id="{{ $group->id }}">
2323
<div class="col-xs-6">
2424
<h4>
2525
@if($groups->count() > 1)

resources/views/dashboard/components/index.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
</div>
1818
@include('dashboard.partials.errors')
1919
<div class="row">
20-
<div class="col-sm-12 striped-list" id="component-list">
20+
<div class="col-sm-12 striped-list" data-orderable-list="/dashboard/api/components/order">
2121
@forelse($components as $component)
22-
<div class="row striped-list-item {{ !$component->enabled ? 'bg-warning' : null }}" data-component-id="{{ $component->id }}">
22+
<div class="row striped-list-item {{ !$component->enabled ? 'bg-warning' : null }}" data-orderable-id="{{ $component->id }}">
2323
<div class="col-xs-6">
2424
<h4>
2525
@if($components->count() > 1)

0 commit comments

Comments
 (0)