2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00

fix(ui): update template editor colors

This commit is contained in:
18alantom 2023-03-08 19:55:45 +05:30
parent a8f73b605e
commit ec9cc7f2b4
3 changed files with 41 additions and 18 deletions

View File

@ -195,16 +195,13 @@
<h2 class="text-base font-semibold p-4 border-b">
{{ t`Template` }}
</h2>
<div
<TemplateEditor
class="overflow-auto custom-scroll"
style="max-height: 80vh; width: 65vw"
>
<TemplateEditor
v-if="!templateCollapsed && typeof doc.template === 'string'"
v-model.lazy="doc.template"
:disabled="!doc.isCustom"
/>
</div>
v-if="!templateCollapsed && typeof doc.template === 'string'"
v-model.lazy="doc.template"
:disabled="!doc.isCustom"
/>
</div>
</div>
</Modal>

View File

@ -34,9 +34,9 @@
<div
v-else
class="
text-green-600
bg-green-50
border-green-200 border
text-pink-600
bg-pink-50
border-pink-200 border
tracking-tighter
rounded
text-xs

View File

@ -1,13 +1,15 @@
<template>
<div ref="container"></div>
<div ref="container" class="bg-white text-gray-900"></div>
</template>
<script lang="ts">
import { vue } from '@codemirror/lang-vue';
import { HighlightStyle, syntaxHighlighting } from '@codemirror/language';
import { Compartment, EditorState } from '@codemirror/state';
import { ViewUpdate, EditorView } from '@codemirror/view';
import { EditorView, ViewUpdate } from '@codemirror/view';
import { tags } from '@lezer/highlight';
import { basicSetup } from 'codemirror';
import { defineComponent } from 'vue';
import { markRaw } from 'vue';
import { uicolors } from 'src/utils/colors';
import { defineComponent, markRaw } from 'vue';
export default defineComponent({
data() {
@ -33,15 +35,24 @@ export default defineComponent({
if (!this.view) {
this.init();
}
// @ts-ignore
window.vte = this;
},
methods: {
init() {
const readOnly = new Compartment();
const editable = new Compartment();
const highlightStyle = HighlightStyle.define([
{ tag: tags.typeName, color: uicolors.pink[600] },
{ tag: tags.angleBracket, color: uicolors.pink[600] },
{ tag: tags.attributeName, color: uicolors.gray[700] },
{ tag: tags.attributeValue, color: uicolors.blue[700] },
{ tag: tags.comment, color: uicolors.gray[500] },
{ tag: tags.keyword, color: uicolors.blue[500] },
{ tag: tags.variableName, color: uicolors.yellow[600] },
{ tag: tags.string, color: uicolors.pink[700] },
{ tag: tags.content, color: uicolors.gray[700] },
]);
const view = new EditorView({
doc: this.modelValue,
extensions: [
@ -50,6 +61,7 @@ export default defineComponent({
editable.of(EditorView.editable.of(!this.disabled)),
basicSetup,
vue(),
syntaxHighlighting(highlightStyle),
],
parent: this.container,
});
@ -96,3 +108,17 @@ export default defineComponent({
},
});
</script>
<style>
.cm-gutter {
@apply bg-gray-50;
}
.cm-gutters {
border: none !important;
}
.cm-activeLine,
.cm-activeLineGutter {
background-color: #e5f3ff67 !important;
}
</style>