85 lines
2.5 KiB
Vue
85 lines
2.5 KiB
Vue
<template>
|
|
<div class="modal__inner-1 modal__inner-1--file-properties">
|
|
<div class="modal__inner-2">
|
|
<div class="tabs">
|
|
<div class="tabs__tab" :class="{'tabs__tab--active': tab === 'custom'}" @click="tab = 'custom'">
|
|
Current file properties
|
|
</div>
|
|
<div class="tabs__tab" :class="{'tabs__tab--active': tab === 'default'}" @click="tab = 'default'">
|
|
Default properties
|
|
</div>
|
|
</div>
|
|
<div class="form-entry">
|
|
<label class="form-entry__label">YAML</label>
|
|
<div class="form-entry__field">
|
|
<code-editor v-if="tab === 'custom'" lang="yaml" :value="customProperties" key="custom-properties" @changed="setCustomProperties"></code-editor>
|
|
<code-editor v-else lang="yaml" :value="defaultProperties" disabled="true" key="default-properties"></code-editor>
|
|
</div>
|
|
</div>
|
|
<div class="modal__error modal__error--file-properties">{{error}}</div>
|
|
<div class="modal__button-bar">
|
|
<button class="button" @click="config.reject()">Cancel</button>
|
|
<button class="button" @click="!error && config.resolve(strippedCustomProperties)">Ok</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import yaml from 'js-yaml';
|
|
import { mapState } from 'vuex';
|
|
import CodeEditor from './CodeEditor';
|
|
import defaultProperties from '../data/defaultFileProperties.yml';
|
|
|
|
const emptyProperties = '# Add custom properties for the current file here to override the default properties.\n';
|
|
|
|
export default {
|
|
components: {
|
|
CodeEditor,
|
|
},
|
|
data: () => ({
|
|
tab: 'custom',
|
|
defaultProperties,
|
|
customProperties: null,
|
|
error: null,
|
|
}),
|
|
computed: {
|
|
...mapState('modal', [
|
|
'config',
|
|
]),
|
|
strippedCustomProperties() {
|
|
return this.customProperties === emptyProperties ? '\n' : this.customProperties.replace(/\t/g, ' ');
|
|
},
|
|
},
|
|
created() {
|
|
const properties = this.$store.getters['content/current'].properties;
|
|
this.setCustomProperties(properties === '\n' ? emptyProperties : properties);
|
|
},
|
|
methods: {
|
|
setCustomProperties(value) {
|
|
this.customProperties = value;
|
|
try {
|
|
yaml.safeLoad(this.strippedCustomProperties);
|
|
this.error = null;
|
|
} catch (e) {
|
|
this.error = e.message;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import 'common/variables.scss';
|
|
|
|
.modal__inner-1--file-properties {
|
|
max-width: 600px;
|
|
}
|
|
|
|
.modal__error--file-properties {
|
|
white-space: pre-wrap;
|
|
font-family: $font-family-monospace;
|
|
font-size: $font-size-monospace;
|
|
}
|
|
</style>
|