codemirror代码格式化

上效果

代码

此处演示纯js版本,而切实5.x版本,最新版本6.x变化较大,不搞

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link href="https://cdn.bootcdn.net/ajax/libs/codemirror/5.62.2/codemirror.min.css" rel="stylesheet">
    <link href="https://cdn.bootcdn.net/ajax/libs/codemirror/5.62.2/theme/night.min.css" rel="stylesheet">
</head>

<body>
    <textarea id="abc">
        {"job_name":"西藏域名监控","metrics_path":"/probe","params":{"module":["http_2xx"]},"file_sd_configs":[{"files":["targets/probes/xizang.json"],"refresh_interval":"6m"}],"relabel_configs":[{"source_labels":["__address__"],"target_label":"__param_target"},{"source_labels":["__param_target"],"target_label":"instance"},{"target_label":"__address__","replacement":"172.21.16.52:9115"}]}
    </textarea>
    <script src="https://cdn.bootcdn.net/ajax/libs/codemirror/5.62.2/codemirror.min.js"></script>
    <script src="https://cdn.bootcdn.net/ajax/libs/codemirror/5.62.2/mode/javascript/javascript.min.js"></script>
    <script>

        //  格式化插件
        CodeMirror.extendMode("css", {
            commentStart: "/*",
            commentEnd: "*/",
            newlineAfterToken: function (type, content) {
                return /^[;{}]$/.test(content);
            }
        });

        CodeMirror.extendMode("javascript", {
            commentStart: "/*",
            commentEnd: "*/",
            // FIXME semicolons inside of for
            newlineAfterToken: function (type, content, textAfter, state) {
                if (this.jsonMode) {
                    return /^[[,{]$/.test(content) || /^}/.test(textAfter);
                } else {
                    if (content == ";" && state.lexical && state.lexical.type == ")") return false;
                    return /^[;{}]$/.test(content) && !/^;/.test(textAfter);
                }
            }
        });

        CodeMirror.extendMode("xml", {
            commentStart: "<!--",
            commentEnd: "-->",
            newlineAfterToken: function (type, content, textAfter) {
                return type == "tag" && />$/.test(content) || /^</.test(textAfter);
            }
        });

        // Comment/uncomment the specified range
        CodeMirror.defineExtension("commentRange", function (isComment, from, to) {
            let cm = this, curMode = CodeMirror.innerMode(cm.getMode(), cm.getTokenAt(from).state).mode;
            cm.operation(function () {
                if (isComment) { // Comment range
                    cm.replaceRange(curMode.commentEnd, to);
                    cm.replaceRange(curMode.commentStart, from);
                    if (from.line == to.line && from.ch == to.ch) // An empty comment inserted - put cursor inside
                        cm.setCursor(from.line, from.ch + curMode.commentStart.length);
                } else { // Uncomment range
                    let selText = cm.getRange(from, to);
                    let startIndex = selText.indexOf(curMode.commentStart);
                    let endIndex = selText.lastIndexOf(curMode.commentEnd);
                    if (startIndex > -1 && endIndex > -1 && endIndex > startIndex) {
                        // Take string till comment start
                        selText = selText.substr(0, startIndex)
                            // From comment start till comment end
                            + selText.substring(startIndex + curMode.commentStart.length, endIndex)
                            // From comment end till string end
                            + selText.substr(endIndex + curMode.commentEnd.length);
                    }
                    cm.replaceRange(selText, from, to);
                }
            });
        });

        // Applies automatic mode-aware indentation to the specified range
        CodeMirror.defineExtension("autoIndentRange", function (from, to) {
            let cmInstance = this;
            this.operation(function () {
                for (let i = from.line; i <= to.line; i++) {
                    cmInstance.indentLine(i, "smart");
                }
            });
        });

        // Applies automatic formatting to the specified range
        CodeMirror.defineExtension("autoFormatRange", function (from, to) {
            let cm = this;
            let outer = cm.getMode(), text = cm.getRange(from, to).split("
");
            let state = CodeMirror.copyState(outer, cm.getTokenAt(from).state);
            let tabSize = cm.getOption("tabSize");

            let out = "", lines = 0, atSol = from.ch == 0;
            function newline() {
                out += "
";
                atSol = true;
                ++lines;
            }

            for (let i = 0; i < text.length; ++i) {
                let stream = new CodeMirror.StringStream(text[i], tabSize);
                while (!stream.eol()) {
                    let inner = CodeMirror.innerMode(outer, state);
                    let style = outer.token(stream, state), cur = stream.current();
                    stream.start = stream.pos;
                    if (!atSol || /S/.test(cur)) {
                        out += cur;
                        atSol = false;
                    }
                    if (!atSol && inner.mode.newlineAfterToken &&
                        inner.mode.newlineAfterToken(style, cur, stream.string.slice(stream.pos) || text[i + 1] || "", inner.state))
                        newline();
                }
                if (!stream.pos && outer.blankLine) outer.blankLine(state);
                if (!atSol) newline();
            }

            cm.operation(function () {
                cm.replaceRange(out, from, to);
                for (let cur = from.line + 1, end = from.line + lines; cur <= end; ++cur)
                    cm.indentLine(cur, "smart");
                cm.setSelection(from, cm.getCursor(false));
            });
        });




        // 使用
        let editor = CodeMirror.fromTextArea(document.getElementById('abc'), {
            lineNumbers: true,
            mode: "application/json",
            theme: 'night'
        });
        let totalLines = editor.lineCount();
        editor.autoFormatRange({ line: 0, ch: 0 }, { line: totalLines });
    </script>
</body>

</html>

react版

参考这里,写这篇文章的时候,有用到

原文地址:https://www.cnblogs.com/dshvv/p/15343563.html