phpvms/resources/views/admin/pireps/scripts.blade.php

117 lines
3.3 KiB
PHP
Raw Normal View History

@section('scripts')
<script>
const changeStatus = (values, fn) => {
const api_key = $('meta[name="api-key"]').attr('content');
const token = $('meta[name="csrf-token"]').attr('content');
console.log('Changing PIREP ' + values.pirep_id + ' to state ' + values.new_status);
$.ajax({
url: '{{url('/admin/pireps')}}/' + values.pirep_id + '/status',
data: values,
type: 'POST',
2018-01-03 00:50:41 +08:00
headers: {
'x-api-key': api_key,
'X-CSRF-TOKEN': token,
2018-01-03 00:50:41 +08:00
},
success: function (data) {
fn(data);
}
});
};
$(document).ready(() => {
2018-01-04 05:27:56 +08:00
const api_key = $('meta[name="api-key"]').attr('content');
const token = $('meta[name="csrf-token"]').attr('content');
const select_id = "select#aircraft_select";
const destContainer = $('#fares_container');
$(select_id).change((e) => {
const aircraft_id = $(select_id + " option:selected").val();
console.log('aircraft select change: ', aircraft_id);
$.ajax({
url: "{{ url('/admin/pireps/fares') }}?aircraft_id=" + aircraft_id,
type: 'GET',
headers: {
'x-api-key': api_key,
'X-CSRF-TOKEN': token,
},
success: (data) => {
console.log('returned new fares', data);
destContainer.html(data);
},
error: () => {
destContainer.html('');
}
});
});
$(document).on('submit', 'form.pjax_form', (event) => {
2018-01-04 05:27:56 +08:00
event.preventDefault();
$.pjax.submit(event, '#pirep_comments_wrapper', {push: false});
});
$(document).on('pjax:complete', function () {
$(".select2").select2();
});
/**
* Recalculate finances button is clicked
*/
$('button#recalculate-finances').on('click', (event) => {
event.preventDefault();
console.log('Sending recalculate finances request');
const pirep_id = $(event.currentTarget).attr('data-pirep-id');
$.ajax({
url: '{{url('/api/pireps')}}/' + pirep_id + '/finances/recalculate',
type: 'POST',
headers: {
'x-api-key': api_key,
'X-CSRF-TOKEN': token,
},
success: (data) => {
console.log(data);
location.reload();
}
});
});
$(document).on('submit', 'form.pirep_submit_status', (event) => {
event.preventDefault();
2018-01-04 10:39:24 +08:00
const values = {
2018-03-06 20:17:45 +08:00
pirep_id: $(event.currentTarget).attr('pirep_id'),
new_status: $(event.currentTarget).attr('new_status')
};
2018-03-06 20:17:45 +08:00
console.log('change status', values);
changeStatus(values, (data) => {
const destContainer = '#pirep_' + values.pirep_id + '_actionbar';
$(destContainer).html(data);
});
});
$(document).on('submit', 'form.pirep_change_status', (event) => {
event.preventDefault();
2018-03-06 20:17:45 +08:00
const values = {
pirep_id: $(event.currentTarget).attr('pirep_id'),
new_status: $(event.currentTarget).attr('new_status')
};
console.log('change status', values);
changeStatus(values, (data) => {
location.reload();
});
});
});
</script>
@endsection