Stackedit/src/components/HtmlExportModal.vue
2017-09-17 16:32:39 +01:00

88 lines
2.6 KiB
Vue

<template>
<div class="modal__inner-1 modal__inner-1--html-export">
<div class="modal__inner-2">
<div class="form-entry">
<label class="form-entry__label" for="template">Template</label>
<div class="form-entry__field">
<select id="template" v-model="selectedTemplate" class="textfield">
<option v-for="(template, id) in allTemplates" :key="id" v-bind:value="id">
{{ template.name }}
</option>
</select>
</div>
<div class="form-entry__actions">
<a href="javascript:void(0)" @click="configureTemplates">Configure templates</a>
</div>
</div>
<div class="modal__button-bar">
<button class="button button--copy">Copy to clipboard</button>
<button class="button" @click="config.reject()">Cancel</button>
<button class="button" @click="resolve()">Ok</button>
</div>
</div>
</div>
</template>
<script>
import { mapState, mapGetters } from 'vuex';
import Clipboard from 'clipboard';
import exportSvc from '../services/exportSvc';
export default {
data: () => ({
result: '',
}),
computed: {
...mapState('modal', [
'config',
]),
...mapGetters('data', [
'allTemplates',
]),
selectedTemplate: {
get() {
return this.$store.getters['data/localSettings'].htmlExportLastTemplate;
},
set(value) {
this.$store.dispatch('data/patchLocalSettings', {
htmlExportLastTemplate: value,
});
},
},
},
mounted() {
this.$watch('selectedTemplate', (selectedTemplate) => {
const currentFile = this.$store.getters['file/current'];
exportSvc.applyTemplate(currentFile.id, this.allTemplates[selectedTemplate])
.then((res) => {
this.result = res;
});
}, {
immediate: true,
});
this.clipboard = new Clipboard(this.$el.querySelector('.button--copy'), {
text: () => this.result,
});
},
destroyed() {
this.clipboard.destroy();
},
methods: {
configureTemplates() {
const reopen = () => this.$store.dispatch('modal/open', 'htmlExport');
this.$store.dispatch('modal/open', {
type: 'templates',
selectedKey: this.selectedTemplate,
})
.then(templates => this.$store.dispatch('data/setTemplates', templates))
.then(reopen, reopen);
},
resolve() {
const currentFile = this.$store.getters['file/current'];
exportSvc.exportToDisk(currentFile.id, 'html', this.allTemplates[this.selectedTemplate]);
this.config.resolve();
},
},
};
</script>