scinote-web/app/javascript/vue/shared/content/modal/move.vue

104 lines
3.1 KiB
Vue
Raw Normal View History

<template>
<div ref="modal" @keydown.esc="cancel" class="modal" id="modalMoveProtocolContent" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<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>
2023-10-09 20:54:22 +08:00
<h4 class="modal-title" id="modal-move-result-element">
{{ i18n.t(`protocols.steps.modals.move_element.${parent_type}.title`) }}
</h4>
</div>
<div class="modal-body">
2023-09-22 17:59:39 +08:00
<label class="font-normal text-sn-dark-grey">
{{ i18n.t(`protocols.steps.modals.move_element.${parent_type}.targets_label`) }}
</label>
<div class="w-full">
<SelectSearch
:value="target"
@change="setTarget"
:options="targetOptions"
:isLoading="false"
:placeholder="
2023-09-21 14:52:41 +08:00
i18n.t(`protocols.steps.modals.move_element.${parent_type}.search_placeholder`)
"
:no-options-placeholder="
i18n.t(
'my_modules.results.move_modal.no_options_placeholder'
)
"
:searchPlaceholder="
2023-09-21 14:52:41 +08:00
i18n.t(`protocols.steps.modals.move_element.${parent_type}.search_placeholder`)
"
/>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-secondary" @click="cancel">{{ i18n.t('general.cancel') }}</button>
<button class="btn btn-primary" @click="confirm" :disabled="!target">{{ i18n.t('general.move')}}</button>
</div>
</div>
</div>
</div>
</template>
<script>
import axios from '../../../../packs/custom_axios.js';
import SelectSearch from "../../select_search.vue";
export default {
name: 'moveElementModal',
props: {
parent_type: {
type: String,
required: true
},
targets_url: {
type: String,
required: true
}
},
data () {
return {
target: null,
targets: []
}
},
components: {
SelectSearch
},
mounted() {
$(this.$refs.modal).modal('show');
$(this.$refs.modal).on('hidden.bs.modal', () => {
this.$emit('cancel');
});
this.fetchTargets();
},
methods: {
setTarget(target) {
this.target = target;
},
fetchTargets() {
axios.get(this.targets_url)
.then(response => {
this.targets = response.data.targets;
})
},
confirm() {
$(this.$refs.modal).modal('hide');
this.$emit('confirm', this.target);
},
cancel() {
$(this.$refs.modal).modal('hide');
}
},
computed: {
targetOptions() {
return this.targets.map(target => [
target[0],
target[1] || this.i18n.t('protocols.steps.modals.move_element.result.untitled_result'),
target[1] === null ? true : false
]);
}
}
}
</script>