提交 d2c4a58b 编写于 作者: B baiy 提交者: ninecents

代码格式化工具优化

上级 4736a100
<template> <template>
<div> <div>
<div style="border: 1px solid #dcdee2;border-radius: 4px;"> <div style="border: 1px solid #dcdee2;border-radius: 4px;">
<codemirror ref="code" v-model="current.content" :options="options"></codemirror> <codemirror ref="code" v-model="current.content" :options="options"></codemirror>
</div>
<option-block>
<FormItem>
<ButtonGroup>
<Button type="primary" @click="handle(k,v)" v-for="(v,k) in lang" :key="k">{{ k }}</Button>
</ButtonGroup>
</FormItem>
<FormItem>
<Checkbox v-model="current.isCompress">压缩</Checkbox>
</FormItem>
</option-block>
</div> </div>
<option-block>
<FormItem>
<ButtonGroup>
<Button type="primary" @click="handle(k,v)" v-for="(v,k) in lang" :key="k">{{k}}</Button>
</ButtonGroup>
</FormItem>
<FormItem>
<Checkbox v-model="current.isCompress">压缩</Checkbox>
</FormItem>
</option-block>
</div>
</template> </template>
<script> <script>
import { codemirror } from 'vue-codemirror' import {codemirror} from 'vue-codemirror'
import formatter from 'code-formatter' import formatter from './library/formatter'
import 'codemirror/lib/codemirror.css' import 'codemirror/lib/codemirror.css'
import 'codemirror/mode/javascript/javascript.js' import 'codemirror/mode/javascript/javascript.js'
import 'codemirror/mode/htmlmixed/htmlmixed.js' import 'codemirror/mode/htmlmixed/htmlmixed.js'
import 'codemirror/mode/css/css.js' import 'codemirror/mode/css/css.js'
import 'codemirror/mode/xml/xml.js' import 'codemirror/mode/xml/xml.js'
import 'codemirror/mode/sql/sql.js' import 'codemirror/mode/sql/sql.js'
import 'codemirror/addon/fold/foldcode.js' import 'codemirror/addon/fold/foldcode.js'
import 'codemirror/addon/fold/foldgutter.js' import 'codemirror/addon/fold/foldgutter.js'
import 'codemirror/addon/fold/brace-fold.js' import 'codemirror/addon/fold/brace-fold.js'
import 'codemirror/addon/fold/comment-fold.js' import 'codemirror/addon/fold/comment-fold.js'
import 'codemirror/addon/fold/foldgutter.css' import 'codemirror/addon/fold/foldgutter.css'
export default { export default {
components: { components: {
codemirror, codemirror,
},
created() {
this.current = Object.assign(this.current, this.$getToolData('content'))
},
mounted() {
this.codemirror.setSize(null, 350)
if (this.current.lang) {
this.codemirror.setOption('mode', this.options[this.current.lang])
}
},
computed: {
codemirror() {
return this.$refs.code.codemirror
}, },
created () { },
this.current = Object.assign(this.current, this.$getToolData('content')) methods: {
}, handle(lang, mode) {
mounted () { if (this.current.content) {
this.codemirror.setSize(null, 350) this.current.content = formatter(this.current.content, lang, this.current.isCompress)
if (this.current.lang) { this.codemirror.setOption('mode', mode)
this.codemirror.setOption('mode', this.options[this.current.lang]) this.current.lang = lang
this.$saveToolData(this.current)
} }
}, },
computed: { },
codemirror () { data() {
return this.$refs.code.codemirror return {
current: {
content: '',
lang: '',
isCompress: false,
}, },
}, options: {
methods: { mode: null,
handle (lang, mode) { lineNumbers: true,
if (this.current.content) { lineWrapping: false,
this.current.content = formatter(this.current.content, { foldGutter: true,
method: this.current.isCompress ? lang+"min" : lang indentUnit: 4,
}) gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter'],
this.codemirror.setOption('mode', mode)
this.current.lang = lang
this.$saveToolData(this.current)
}
}, },
}, lang: {
data () { 'js': 'text/javascript',
return { 'html': 'text/html',
current: { 'css': 'text/css',
content: '', 'xml': 'application/xml',
lang: '', 'sql': 'text/x-mysql',
isCompress: false, },
}, }
options: { },
mode: null, }
lineNumbers: true,
lineWrapping: false,
foldGutter: true,
indentUnit: 4,
gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter'],
},
lang: {
'js': 'text/javascript',
'html': 'text/html',
'css': 'text/css',
'xml': 'application/xml',
'sql': 'text/x-mysql',
},
}
},
}
</script> </script>
\ No newline at end of file
import codeFormatter from 'code-formatter'
import xmlFormatter from "xml-formatter"
export default (code, type, isCompress = false) => {
if (type === "xml") {
return xmlFormatter(code, {
indentation: isCompress ? '' : ' ',
collapseContent: true,
lineSeparator: isCompress ? '' : '\n'
});
}
return codeFormatter(code, {
method: isCompress ? type + "min" : type
})
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册