Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP Htmlmixed mode #7

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions codemirror.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,25 @@ export {
indentSelection,
} from './codemirror.next/commands/src/commands';

export {legacyMode} from './codemirror.next/legacy-modes/src/index';

export {matchBrackets} from './codemirror.next/matchbrackets/src/matchbrackets';

import javascript from './codemirror.next/legacy-modes/src/javascript';
export {javascript};

import css from './modes/css';
export {css};

export {specialChars} from './codemirror.next/special-chars/src/special-chars';

export {
multipleSelections,
} from './codemirror.next/multiple-selections/src/multiple-selections';

export {legacyMode} from './codemirror.next/legacy-modes/src/index';

import javascript from './codemirror.next/legacy-modes/src/javascript';
import css from './modes/css';
import xml from './modes/xml';
import htmlmixed from './modes/htmlmixed';

export const legacyModes = {
javascript,
css,
xml,
htmlmixed
};

11 changes: 2 additions & 9 deletions modes/css.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: https://codemirror.net/LICENSE
// Ported from https://github.com/codemirror/CodeMirror/blob/master/mode/css/css.js

"use strict";

// This tiny shim allows the mode code to go mostly unmodified.
const modes = {};
const CodeMirror = {
defineMIME: (key, value) => modes[key] = value,
resolveMode: key => modes[key]
};
import { CodeMirror } from './shim';

// Ported from https://github.com/codemirror/CodeMirror/blob/master/mode/css/css.js
export default function(config, parserConfig) {
var inline = parserConfig.inline
if (!parserConfig.propertyKeywords) parserConfig = CodeMirror.resolveMode("text/css");
Expand Down
143 changes: 143 additions & 0 deletions modes/htmlmixed.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: https://codemirror.net/LICENSE
// Ported from https://github.com/codemirror/CodeMirror/blob/master/mode/htmlmixed/htmlmixed.js

import { CodeMirror } from './shim';

import xml from './xml';

var defaultTags = {
script: [
["lang", /(javascript|babel)/i, "javascript"],
["type", /^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i, "javascript"],
["type", /./, "text/plain"],
[null, null, "javascript"]
],
style: [
["lang", /^css$/i, "css"],
["type", /^(text\/)?(x-)?(stylesheet|css)$/i, "css"],
["type", /./, "text/plain"],
[null, null, "css"]
]
};

function maybeBackup(stream, pat, style) {
var cur = stream.current(), close = cur.search(pat);
if (close > -1) {
stream.backUp(cur.length - close);
} else if (cur.match(/<\/?$/)) {
stream.backUp(cur.length);
if (!stream.match(pat, false)) stream.match(cur);
}
return style;
}

var attrRegexpCache = {};
function getAttrRegexp(attr) {
var regexp = attrRegexpCache[attr];
if (regexp) return regexp;
return attrRegexpCache[attr] = new RegExp("\\s+" + attr + "\\s*=\\s*('|\")?([^'\"]+)('|\")?\\s*");
}

function getAttrValue(text, attr) {
var match = text.match(getAttrRegexp(attr))
return match ? /^\s*(.*?)\s*$/.exec(match[2])[1] : ""
}

function getTagRegexp(tagName, anchored) {
return new RegExp((anchored ? "^" : "") + "<\/\s*" + tagName + "\s*>", "i");
}

function addTags(from, to) {
for (var tag in from) {
var dest = to[tag] || (to[tag] = []);
var source = from[tag];
for (var i = source.length - 1; i >= 0; i--)
dest.unshift(source[i])
}
}

function findMatchingMode(tagInfo, tagText) {
for (var i = 0; i < tagInfo.length; i++) {
var spec = tagInfo[i];
if (!spec[0] || spec[1].test(getAttrValue(tagText, spec[0]))) return spec[2];
}
}

export default function (config, parserConfig) {

var htmlMode = xml(config, parserConfig);

var tags = {};
var configTags = parserConfig && parserConfig.tags, configScript = parserConfig && parserConfig.scriptTypes;
addTags(defaultTags, tags);
if (configTags) addTags(configTags, tags);
if (configScript) for (var i = configScript.length - 1; i >= 0; i--)
tags.script.unshift(["type", configScript[i].matches, configScript[i].mode])

function html(stream, state) {
var style = htmlMode.token(stream, state.htmlState), tag = /\btag\b/.test(style), tagName
if (tag && !/[<>\s\/]/.test(stream.current()) &&
(tagName = state.htmlState.tagName && state.htmlState.tagName.toLowerCase()) &&
tags.hasOwnProperty(tagName)) {
state.inTag = tagName + " "
} else if (state.inTag && tag && />$/.test(stream.current())) {
var inTag = /^([\S]+) (.*)/.exec(state.inTag)
state.inTag = null
var modeSpec = stream.current() == ">" && findMatchingMode(tags[inTag[1]], inTag[2])
var mode = CodeMirror.getMode(config, modeSpec)
var endTagA = getTagRegexp(inTag[1], true), endTag = getTagRegexp(inTag[1], false);
state.token = function (stream, state) {
if (stream.match(endTagA, false)) {
state.token = html;
state.localState = state.localMode = null;
return null;
}
return maybeBackup(stream, endTag, state.localMode.token(stream, state.localState));
};
state.localMode = mode;
state.localState = CodeMirror.startState(mode, htmlMode.indent(state.htmlState, "", ""));
} else if (state.inTag) {
state.inTag += stream.current()
if (stream.eol()) state.inTag += " "
}
return style;
};

return {
startState: function () {
var state = CodeMirror.startState(htmlMode);
return {token: html, inTag: null, localMode: null, localState: null, htmlState: state};
},

copyState: function (state) {
var local;
if (state.localState) {
local = CodeMirror.copyState(state.localMode, state.localState);
}
return {token: state.token, inTag: state.inTag,
localMode: state.localMode, localState: local,
htmlState: CodeMirror.copyState(htmlMode, state.htmlState)};
},

token: function (stream, state) {
return state.token(stream, state);
},

indent: function (state, textAfter, line) {
if (!state.localMode || /^\s*<\//.test(textAfter))
return htmlMode.indent(state.htmlState, textAfter, line);
else if (state.localMode.indent)
return state.localMode.indent(state.localState, textAfter, line);
else
return CodeMirror.Pass;
},

innerMode: function (state) {
return {state: state.localState || state.htmlState, mode: state.localMode || htmlMode};
}
};
};
//, "xml", "javascript", "css");

CodeMirror.defineMIME("text/html", "htmlmixed");
6 changes: 6 additions & 0 deletions modes/shim.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// This tiny shim allows the mode code to go mostly unmodified.
const modes = {};
export const CodeMirror = {
defineMIME: (key, value) => modes[key] = value,
resolveMode: key => modes[key]
};
Loading