scinote-web/app/javascript/vue/label_template/components/logo_insert_modal.vue

81 lines
2.8 KiB
Vue
Raw Normal View History

2022-12-07 20:57:19 +08:00
<template>
<div ref="modal" @keydown.esc="cancel" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-sm" role="document">
<div class="modal-content">
<div class="modal-header">
2023-08-17 19:55:17 +08:00
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="sn-icon sn-icon-close"></i></button>
2022-12-07 20:57:19 +08:00
<h4 class="modal-title">
{{ i18n.t('label_templates.show.insert_dropdown.logo_modal.title') }}
</h4>
</div>
<div class="modal-body">
<p>{{ i18n.t('label_templates.show.insert_dropdown.logo_modal.description') }}</p>
<div class="dimensions-container">
<div class="sci-input-container">
<label>{{ i18n.t('label_templates.show.insert_dropdown.logo_modal.width', {unit: unit}) }}</label>
<input type="number" min="0" v-model="width" class="sci-input-field" @change="updateHeight">
</div>
<img src="/images/icon_small/link.svg"/>
<div class="sci-input-container">
<label>{{ i18n.t('label_templates.show.insert_dropdown.logo_modal.height', {unit: unit}) }}</label>
<input type="number" min="0" v-model="height" class="sci-input-field" @change="updateWidth">
</div>
</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">{{ i18n.t('label_templates.show.insert_dropdown.logo_modal.insert') }}</button>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'logoInsertModal',
props: {
unit: { type: String, required: true },
density: { type: Number, required: true },
dimension: { type: Array, required: true }
},
data() {
return {
width: 0,
height: 0,
ratio: 1
};
},
mounted() {
$(this.$refs.modal).modal('show');
$(this.$refs.modal).on('hidden.bs.modal', () => {
this.$emit('cancel');
});
this.width = this.dimension[0] / this.density;
this.height = this.dimension[1] / this.density;
if (this.unit == 'in') {
this.width /= 25.4;
this.height /= 25.4;
}
this.width = Math.round(this.width * 100) / 100;
this.height = Math.round(this.height * 100) / 100;
this.ratio = this.dimension[0] / this.dimension[1];
},
methods: {
updateHeight() {
this.height = Math.round(this.width * 10 / this.ratio) / 10;
2022-12-07 20:57:19 +08:00
},
updateWidth() {
this.width = Math.round(this.height * this.ratio * 10) / 10;
2022-12-07 20:57:19 +08:00
},
confirm() {
this.$emit('insert:tag', { tag: `{{LOGO, ${this.unit}, ${this.width}, ${this.height}}}` });
$(this.$refs.modal).modal('hide');
2022-12-07 20:57:19 +08:00
},
cancel() {
$(this.$refs.modal).modal('hide');
2022-12-07 20:57:19 +08:00
}
}
};
2022-12-07 20:57:19 +08:00
</script>