scinote-web/app/javascript/vue/storage_locations/modals/assign.vue

134 lines
4.8 KiB
Vue

<template>
<div ref="modal" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<form @submit.prevent="submit">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<i class="sn-icon sn-icon-close"></i>
</button>
<h4 v-if="selectedPosition" class="modal-title truncate !block">
{{ i18n.t(`storage_locations.show.assign_modal.selected_position_title`, { position: formattedPosition }) }}
</h4>
<h4 v-else-if="assignMode === 'assign' && selectedRow && selectedRowName" class="modal-title truncate !block">
{{ i18n.t(`storage_locations.show.assign_modal.selected_row_title`) }}
</h4>
<h4 v-else-if="assignMode === 'move'" class="modal-title truncate !block">
{{ i18n.t(`storage_locations.show.assign_modal.move_title`, { name: selectedRowName }) }}
</h4>
<h4 v-else class="modal-title truncate !block">
{{ i18n.t(`storage_locations.show.assign_modal.assign_title`) }}
</h4>
</div>
<div class="modal-body">
<p v-if="selectedRow && selectedRowName" class="mb-4">
{{ i18n.t(`storage_locations.show.assign_modal.selected_row_description`, { name: selectedRowName }) }}
</p>
<h4 v-else-if="assignMode === 'move'" class="modal-title truncate !block">
{{ i18n.t(`storage_locations.show.assign_modal.move_description`, { name: selectedRowName }) }}
</h4>
<p v-else class="mb-4">
{{ i18n.t(`storage_locations.show.assign_modal.assign_description`) }}
</p>
<RowSelector v-if="!selectedRow" @change="this.rowId = $event" class="mb-4"></RowSelector>
<ContainerSelector v-if="!selectedContainer" @change="this.containerId = $event"></ContainerSelector>
<PositionSelector
v-if="containerId && containerId > 0 && !selectedPosition"
:key="containerId"
:selectedContainerId="containerId"
@change="this.position = $event"></PositionSelector>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">{{ i18n.t('general.cancel') }}</button>
<button class="btn btn-primary" type="submit" :disabled="!validObject">
{{ i18n.t(`storage_locations.show.assign_modal.${assignMode}_action`) }}
</button>
</div>
</div>
</form>
</div>
</div>
</template>
<script>
/* global HelperModule */
import axios from '../../../packs/custom_axios.js';
import modalMixin from '../../shared/modal_mixin';
import RowSelector from './assign/row_selector.vue';
import ContainerSelector from './assign/container_selector.vue';
import PositionSelector from './assign/position_selector.vue';
import {
storage_location_storage_location_repository_rows_path,
move_storage_location_storage_location_repository_row_path,
} from '../../../routes.js';
export default {
name: 'NewProjectModal',
props: {
selectedRow: Number,
selectedRowName: String,
selectedContainer: Number,
cellId: Number,
selectedPosition: Array,
assignMode: String
},
mixins: [modalMixin],
computed: {
validObject() {
return this.rowId && this.containerId && this.containerId > 0;
},
createUrl() {
return storage_location_storage_location_repository_rows_path({
storage_location_id: this.containerId
});
},
formattedPosition() {
if (this.selectedPosition) {
return String.fromCharCode(96 + parseInt(this.selectedPosition[0], 10)).toUpperCase() + this.selectedPosition[1];
}
return '';
},
moveUrl() {
return move_storage_location_storage_location_repository_row_path(this.containerId, this.cellId);
},
actionUrl() {
return this.assignMode === 'assign' ? this.createUrl : this.moveUrl;
}
},
data() {
return {
rowId: this.selectedRow,
containerId: this.selectedContainer,
position: this.selectedPosition,
saving: false
};
},
components: {
RowSelector,
ContainerSelector,
PositionSelector
},
methods: {
submit() {
if (this.saving) {
return;
}
this.saving = true;
axios.post(this.actionUrl, {
repository_row_id: this.rowId,
metadata: { position: this.position?.map((pos) => parseInt(pos, 10)) }
}).then(() => {
this.$emit('close');
this.saving = false;
}).catch((error) => {
HelperModule.flashAlertMsg(error.response.data.errors.join(', '), 'danger');
this.saving = false;
});
}
}
};
</script>