
Added sponsorship options. Added pdf and pandoc export. Added emoji and mermaid extensions. Added find/replace support. Added HTML template with TOC. Updated welcome file.
96 lines
2.8 KiB
Vue
96 lines
2.8 KiB
Vue
<template>
|
|
<modal-inner class="modal__inner-1--settings" aria-label="Settings">
|
|
<div class="modal__content">
|
|
<div class="tabs flex flex--row">
|
|
<tab :active="tab === 'custom'" @click="tab = 'custom'">
|
|
Custom settings
|
|
</tab>
|
|
<tab :active="tab === 'default'" @click="tab = 'default'">
|
|
Default settings
|
|
</tab>
|
|
</div>
|
|
<div class="form-entry" v-if="tab === 'custom'" role="tabpanel" aria-label="Custom settings">
|
|
<label class="form-entry__label">YAML</label>
|
|
<div class="form-entry__field form-entry__field--code-editor">
|
|
<code-editor lang="yaml" :value="customSettings" key="custom-settings" @changed="setCustomSettings"></code-editor>
|
|
</div>
|
|
</div>
|
|
<div class="form-entry" v-else-if="tab === 'default'" role="tabpanel" aria-label="Default settings">
|
|
<label class="form-entry__label">YAML</label>
|
|
<div class="form-entry__field form-entry__field--code-editor">
|
|
<code-editor lang="yaml" :value="defaultSettings" key="default-settings" disabled="true"></code-editor>
|
|
</div>
|
|
</div>
|
|
<div class="modal__error modal__error--settings">{{error}}</div>
|
|
</div>
|
|
<div class="modal__button-bar">
|
|
<button class="button" @click="config.reject()">Cancel</button>
|
|
<button class="button" @click="!error && config.resolve(strippedCustomSettings)">Ok</button>
|
|
</div>
|
|
</modal-inner>
|
|
</template>
|
|
|
|
<script>
|
|
import yaml from 'js-yaml';
|
|
import { mapGetters } from 'vuex';
|
|
import ModalInner from './common/ModalInner';
|
|
import Tab from './common/Tab';
|
|
import CodeEditor from '../CodeEditor';
|
|
import defaultSettings from '../../data/defaultSettings.yml';
|
|
|
|
const emptySettings = `# Add your custom settings here to override the
|
|
# default settings.
|
|
`;
|
|
|
|
export default {
|
|
components: {
|
|
ModalInner,
|
|
Tab,
|
|
CodeEditor,
|
|
},
|
|
data: () => ({
|
|
tab: 'custom',
|
|
defaultSettings,
|
|
customSettings: null,
|
|
error: null,
|
|
}),
|
|
computed: {
|
|
...mapGetters('modal', [
|
|
'config',
|
|
]),
|
|
strippedCustomSettings() {
|
|
return this.customSettings === emptySettings ? '\n' : this.customSettings.replace(/\t/g, ' ');
|
|
},
|
|
},
|
|
created() {
|
|
const settings = this.$store.getters['data/settings'];
|
|
this.setCustomSettings(settings === '\n' ? emptySettings : settings);
|
|
},
|
|
methods: {
|
|
setCustomSettings(value) {
|
|
this.customSettings = value;
|
|
try {
|
|
yaml.safeLoad(this.strippedCustomSettings);
|
|
this.error = null;
|
|
} catch (e) {
|
|
this.error = e.message;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '../common/variables.scss';
|
|
|
|
.modal__inner-1--settings {
|
|
max-width: 600px;
|
|
}
|
|
|
|
.modal__error--settings {
|
|
white-space: pre-wrap;
|
|
font-family: $font-family-monospace;
|
|
font-size: $font-size-monospace;
|
|
}
|
|
</style>
|