Better handle cannot when we cannot swap checkboxes, added scroll, added swap/scroll to duplicate review
This commit is contained in:
parent
648f18dae1
commit
f6d2a132a4
@ -44,12 +44,13 @@
|
|||||||
var that = $(this);
|
var that = $(this);
|
||||||
var tr = that.closest('tr');
|
var tr = that.closest('tr');
|
||||||
|
|
||||||
|
try {
|
||||||
['duplicate','remove'].forEach(function(item) {
|
['duplicate','remove'].forEach(function(item) {
|
||||||
var items = tr.find('input[name^="'+item+'\["]');
|
var items = tr.find('input[name^="'+item+'\["]');
|
||||||
|
|
||||||
if (items.length !== 2) {
|
if (items.length !== 2) {
|
||||||
alert('cannot swap');
|
alert('cannot swap');
|
||||||
return false;
|
throw new Error('CANNOT SWAP');
|
||||||
}
|
}
|
||||||
|
|
||||||
var rotate = items[0].checked;
|
var rotate = items[0].checked;
|
||||||
@ -58,6 +59,17 @@
|
|||||||
|
|
||||||
that.removeData();
|
that.removeData();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
} catch (e) {
|
||||||
|
// NOOP
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$('span.scroll').on('click',function() {
|
||||||
|
var next = $(this).closest('div.card').closest('tr').next();
|
||||||
|
|
||||||
|
if (next.length)
|
||||||
|
$('html,body').animate({scrollTop: next.offset().top},'fast');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -36,3 +36,41 @@
|
|||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
@section('page-scripts')
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('span.swap').on('click',function() {
|
||||||
|
var that = $(this);
|
||||||
|
var tr = that.closest('tr');
|
||||||
|
|
||||||
|
try {
|
||||||
|
['duplicate','remove'].forEach(function(item) {
|
||||||
|
var items = tr.find('input[name^="'+item+'\["]');
|
||||||
|
|
||||||
|
if (items.length !== 2) {
|
||||||
|
alert('cannot swap');
|
||||||
|
throw new Error('CANNOT SWAP');
|
||||||
|
}
|
||||||
|
|
||||||
|
var rotate = items[0].checked;
|
||||||
|
$(items[0]).prop('checked',items[1].checked);
|
||||||
|
$(items[1]).prop('checked',rotate);
|
||||||
|
|
||||||
|
that.removeData();
|
||||||
|
});
|
||||||
|
|
||||||
|
} catch (e) {
|
||||||
|
// NOOP
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$('span.scroll').on('click',function() {
|
||||||
|
var next = $(this).closest('div.card').closest('tr').next();
|
||||||
|
|
||||||
|
if (next.length)
|
||||||
|
$('html,body').animate({scrollTop: next.offset().top},'fast');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
@append
|
@ -22,6 +22,7 @@
|
|||||||
|
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<x-photo.thumbnail :id="$o->id" :css="$css ?? NULL"/>
|
<x-photo.thumbnail :id="$o->id" :css="$css ?? NULL"/>
|
||||||
|
<span class="btn btn-sm float-right scroll"> <i class="fas fa-fw fa-level-down-alt"></i></span>
|
||||||
<span class="btn btn-sm btn-outline-dark float-right swap">SWAP</span>
|
<span class="btn btn-sm btn-outline-dark float-right swap">SWAP</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user