You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
5.2 KiB

2 months ago
  1. // CodeMirror, copyright (c) by Marijn Haverbeke and others
  2. // Distributed under an MIT license: https://codemirror.net/5/LICENSE
  3. (function(mod) {
  4. if (typeof exports == "object" && typeof module == "object") // CommonJS
  5. mod(require("../../lib/codemirror"), require("../xml/xml"), require("../javascript/javascript"))
  6. else if (typeof define == "function" && define.amd) // AMD
  7. define(["../../lib/codemirror", "../xml/xml", "../javascript/javascript"], mod)
  8. else // Plain browser env
  9. mod(CodeMirror)
  10. })(function(CodeMirror) {
  11. "use strict"
  12. // Depth means the amount of open braces in JS context, in XML
  13. // context 0 means not in tag, 1 means in tag, and 2 means in tag
  14. // and js block comment.
  15. function Context(state, mode, depth, prev) {
  16. this.state = state; this.mode = mode; this.depth = depth; this.prev = prev
  17. }
  18. function copyContext(context) {
  19. return new Context(CodeMirror.copyState(context.mode, context.state),
  20. context.mode,
  21. context.depth,
  22. context.prev && copyContext(context.prev))
  23. }
  24. CodeMirror.defineMode("jsx", function(config, modeConfig) {
  25. var xmlMode = CodeMirror.getMode(config, {name: "xml", allowMissing: true, multilineTagIndentPastTag: false, allowMissingTagName: true})
  26. var jsMode = CodeMirror.getMode(config, modeConfig && modeConfig.base || "javascript")
  27. function flatXMLIndent(state) {
  28. var tagName = state.tagName
  29. state.tagName = null
  30. var result = xmlMode.indent(state, "", "")
  31. state.tagName = tagName
  32. return result
  33. }
  34. function token(stream, state) {
  35. if (state.context.mode == xmlMode)
  36. return xmlToken(stream, state, state.context)
  37. else
  38. return jsToken(stream, state, state.context)
  39. }
  40. function xmlToken(stream, state, cx) {
  41. if (cx.depth == 2) { // Inside a JS /* */ comment
  42. if (stream.match(/^.*?\*\//)) cx.depth = 1
  43. else stream.skipToEnd()
  44. return "comment"
  45. }
  46. if (stream.peek() == "{") {
  47. xmlMode.skipAttribute(cx.state)
  48. var indent = flatXMLIndent(cx.state), xmlContext = cx.state.context
  49. // If JS starts on same line as tag
  50. if (xmlContext && stream.match(/^[^>]*>\s*$/, false)) {
  51. while (xmlContext.prev && !xmlContext.startOfLine)
  52. xmlContext = xmlContext.prev
  53. // If tag starts the line, use XML indentation level
  54. if (xmlContext.startOfLine) indent -= config.indentUnit
  55. // Else use JS indentation level
  56. else if (cx.prev.state.lexical) indent = cx.prev.state.lexical.indented
  57. // Else if inside of tag
  58. } else if (cx.depth == 1) {
  59. indent += config.indentUnit
  60. }
  61. state.context = new Context(CodeMirror.startState(jsMode, indent),
  62. jsMode, 0, state.context)
  63. return null
  64. }
  65. if (cx.depth == 1) { // Inside of tag
  66. if (stream.peek() == "<") { // Tag inside of tag
  67. xmlMode.skipAttribute(cx.state)
  68. state.context = new Context(CodeMirror.startState(xmlMode, flatXMLIndent(cx.state)),
  69. xmlMode, 0, state.context)
  70. return null
  71. } else if (stream.match("//")) {
  72. stream.skipToEnd()
  73. return "comment"
  74. } else if (stream.match("/*")) {
  75. cx.depth = 2
  76. return token(stream, state)
  77. }
  78. }
  79. var style = xmlMode.token(stream, cx.state), cur = stream.current(), stop
  80. if (/\btag\b/.test(style)) {
  81. if (/>$/.test(cur)) {
  82. if (cx.state.context) cx.depth = 0
  83. else state.context = state.context.prev
  84. } else if (/^</.test(cur)) {
  85. cx.depth = 1
  86. }
  87. } else if (!style && (stop = cur.indexOf("{")) > -1) {
  88. stream.backUp(cur.length - stop)
  89. }
  90. return style
  91. }
  92. function jsToken(stream, state, cx) {
  93. if (stream.peek() == "<" && !stream.match(/^<([^<>]|<[^>]*>)+,\s*>/, false) &&
  94. jsMode.expressionAllowed(stream, cx.state)) {
  95. state.context = new Context(CodeMirror.startState(xmlMode, jsMode.indent(cx.state, "", "")),
  96. xmlMode, 0, state.context)
  97. jsMode.skipExpression(cx.state)
  98. return null
  99. }
  100. var style = jsMode.token(stream, cx.state)
  101. if (!style && cx.depth != null) {
  102. var cur = stream.current()
  103. if (cur == "{") {
  104. cx.depth++
  105. } else if (cur == "}") {
  106. if (--cx.depth == 0) state.context = state.context.prev
  107. }
  108. }
  109. return style
  110. }
  111. return {
  112. startState: function() {
  113. return {context: new Context(CodeMirror.startState(jsMode), jsMode)}
  114. },
  115. copyState: function(state) {
  116. return {context: copyContext(state.context)}
  117. },
  118. token: token,
  119. indent: function(state, textAfter, fullLine) {
  120. return state.context.mode.indent(state.context.state, textAfter, fullLine)
  121. },
  122. innerMode: function(state) {
  123. return state.context
  124. }
  125. }
  126. }, "xml", "javascript")
  127. CodeMirror.defineMIME("text/jsx", "jsx")
  128. CodeMirror.defineMIME("text/typescript-jsx", {name: "jsx", base: {name: "javascript", typescript: true}})
  129. });