@gravitee/ui-components 3.24.4-migrate-codemirror-999a116 → 3.24.4-migrate-codemirror-6261802

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-components",
3
- "version": "3.24.4-migrate-codemirror-999a116",
3
+ "version": "3.24.4-migrate-codemirror-6261802",
4
4
  "description": "Gravitee.io UI Components library, based on Web Components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -55,6 +55,7 @@
55
55
  "@formatjs/intl-locale": "^2.4.40",
56
56
  "@formatjs/intl-relativetimeformat": "^9.3.2",
57
57
  "clipboard-copy": "^4.0.0",
58
+ "codemirror-asciidoc": "^2.0.0",
58
59
  "date-fns": "^2.26.0",
59
60
  "jdenticon": "^3.1.0",
60
61
  "jsonschema": "^1.4.0",
@@ -66,29 +67,29 @@
66
67
  },
67
68
  "devDependencies": {
68
69
  "@asciidoctor/core": "2.2.5",
69
- "@babel/core": "7.16.0",
70
+ "@babel/core": "7.16.5",
70
71
  "@babel/plugin-syntax-dynamic-import": "7.8.3",
71
- "@babel/preset-env": "7.16.4",
72
+ "@babel/preset-env": "7.16.5",
72
73
  "@commitlint/cli": "15.0.0",
73
74
  "@commitlint/config-conventional": "15.0.0",
74
- "@highcharts/map-collection": "1.1.3",
75
+ "@highcharts/map-collection": "1.1.4",
75
76
  "@semantic-release/changelog": "6.0.1",
76
77
  "@semantic-release/git": "10.0.1",
77
- "@storybook/addon-a11y": "6.4.8",
78
- "@storybook/addon-essentials": "6.4.8",
79
- "@storybook/components": "6.4.8",
80
- "@storybook/theming": "6.4.8",
81
- "@storybook/web-components": "6.4.8",
78
+ "@storybook/addon-a11y": "6.4.9",
79
+ "@storybook/addon-essentials": "6.4.9",
80
+ "@storybook/components": "6.4.9",
81
+ "@storybook/theming": "6.4.9",
82
+ "@storybook/web-components": "6.4.9",
82
83
  "asciidoctor": "2.2.5",
83
84
  "asciidoctor-highlight.js": "0.4.0",
84
- "babel-jest": "27.4.2",
85
+ "babel-jest": "27.4.5",
85
86
  "babel-loader": "8.2.3",
86
87
  "babel-plugin-template-html-minifier": "4.1.0",
87
88
  "bundle-phobia-cli": "0.14.13",
88
- "chromatic": "6.1.0",
89
+ "chromatic": "6.2.3",
89
90
  "danger": "10.7.1",
90
91
  "del": "6.0.0",
91
- "eslint": "8.4.0",
92
+ "eslint": "8.5.0",
92
93
  "eslint-config-prettier": "8.3.0",
93
94
  "eslint-config-standard": "16.0.3",
94
95
  "eslint-plugin-import": "2.25.3",
@@ -108,11 +109,11 @@
108
109
  "i18n-extract": "0.6.7",
109
110
  "ignore-loader": "0.1.2",
110
111
  "is-ci": "3.0.1",
111
- "jest": "27.4.3",
112
+ "jest": "27.4.5",
112
113
  "license-check-and-add": "4.0.3",
113
114
  "lint-staged": "11.2.6",
114
115
  "lit-html": "2.0.2",
115
- "markdown-it": "12.2.0",
116
+ "markdown-it": "12.3.0",
116
117
  "node-static": "0.7.11",
117
118
  "nodemon": "2.0.15",
118
119
  "pascal-case": "3.1.2",
@@ -108,10 +108,6 @@ export class GvCode extends GvInput {
108
108
  dispatchCustomEvent(this, 'ready', { currentTarget: this });
109
109
  }
110
110
 
111
- _onChange() {
112
- dispatchCustomEvent(this, 'input', this.value);
113
- }
114
-
115
111
  get hasInputStyle() {
116
112
  return this.rows === 1;
117
113
  }
@@ -148,6 +144,7 @@ export class GvCode extends GvInput {
148
144
  EditorView.updateListener.of((viewUpdate) => {
149
145
  if (viewUpdate.docChanged) {
150
146
  this.value = this._editorView.state.doc.toString();
147
+ dispatchCustomEvent(this, 'input', this.value);
151
148
  }
152
149
  }),
153
150
  autocompletion({
@@ -168,19 +165,24 @@ export class GvCode extends GvInput {
168
165
 
169
166
  firstUpdated() {
170
167
  super.firstUpdated();
171
-
172
- const parent = this.getInputElement();
173
-
174
168
  this._editorState = EditorState.create({
175
169
  doc: this.value,
176
170
  extensions: this._getExtensions(),
177
171
  });
172
+ const parent = this.getInputElement();
178
173
  this._editorView = new EditorView({
179
174
  root: this.shadowRoot,
180
175
  parent,
181
176
  state: this._editorState,
177
+ dispatch: (transaction) => {
178
+ try {
179
+ this._editorView.update([transaction]);
180
+ } catch (e) {
181
+ // Sometimes the default dispatch fn throws an NS_ERROR_FAILURE at runtime.
182
+ // It's so strange but with this catch everything is okay
183
+ }
184
+ },
182
185
  });
183
-
184
186
  parent.appendChild(this._editorView.dom);
185
187
  }
186
188
 
@@ -227,7 +229,10 @@ export class GvCode extends GvInput {
227
229
  if (mode) {
228
230
  const modeOnly = mode.split('/').pop();
229
231
  if (modeOnly === 'asciidoc') {
230
- const [{ asciidoc }, { StreamLanguage }] = await Promise.all([import('../lib/asciidoc-lang'), import('@codemirror/stream-parser')]);
232
+ const [{ asciidoc }, { StreamLanguage }] = await Promise.all([
233
+ import('codemirror-asciidoc/lib/asciidoc'),
234
+ import('@codemirror/stream-parser'),
235
+ ]);
231
236
  return {
232
237
  name: 'asciidoc',
233
238
  support: {
@@ -67,7 +67,7 @@ export class GvExpressionLanguage extends GvCode {
67
67
  view.dispatch(
68
68
  view.state.changeByRange((range) => ({
69
69
  changes: [{ from: range.from, to: range.to, insert: '{#}' }],
70
- range: EditorSelection.range(range.from + 2, range.to + 2),
70
+ range: EditorSelection.range(range.from + 2, range.from + 2),
71
71
  })),
72
72
  );
73
73
  startCompletion(view);
@@ -1,642 +0,0 @@
1
- /*
2
- * Copyright (C) 2021 The Gravitee team (http://gravitee.io)
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- // Ace highlight rules function imported below.
17
- const HighlightRules = function () {
18
- const identifierRe = '[a-zA-Z\u00a1-\uffff]+\\b';
19
- /* eslint no-useless-escape: "off" */
20
- this.$rules = {
21
- start: [
22
- { token: 'empty', regex: /$/ },
23
- { token: 'literal', regex: /^\.{4,}\s*$/, next: 'listingBlock' },
24
- { token: 'literal', regex: /^-{4,}\s*$/, next: 'literalBlock' },
25
- { token: 'literal', regex: /^\+{4,}\s*$/, next: 'passthroughBlock' },
26
- { token: 'keyword', regex: /^={4,}\s*$/ },
27
- { token: 'text', regex: /^\s*$/ },
28
- // immediately return to the start mode without matching anything
29
- { token: 'empty', regex: '', next: 'dissallowDelimitedBlock' },
30
- ],
31
-
32
- dissallowDelimitedBlock: [
33
- { include: 'paragraphEnd' },
34
- { token: 'comment', regex: '^//.+$' },
35
- { token: 'keyword', regex: '^(?:NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\s' },
36
-
37
- { include: 'listStart' },
38
- { token: 'literal', regex: /^\s+.+$/, next: 'indentedBlock' },
39
- { token: 'empty', regex: '', next: 'text' },
40
- ],
41
-
42
- paragraphEnd: [
43
- { token: 'doc.comment', regex: /^\/{4,}\s*$/, next: 'commentBlock' },
44
- { token: 'tableBlock', regex: /^\s*[|!]=+\s*$/, next: 'tableBlock' },
45
- // open block, ruler
46
- { token: 'keyword', regex: /^(?:--|''')\s*$/, next: 'start' },
47
- { token: 'option', regex: /^\[.*\]\s*$/, next: 'start' },
48
- { token: 'pageBreak', regex: /^>{3,}$/, next: 'start' },
49
- { token: 'literal', regex: /^\.{4,}\s*$/, next: 'listingBlock' },
50
- { token: 'titleUnderline', regex: /^(?:={2,}|-{2,}|~{2,}|\^{2,}|\+{2,})\s*$/, next: 'start' },
51
- { token: 'singleLineTitle', regex: /^={1,6}\s+\S.*$/, next: 'start' },
52
-
53
- { token: 'otherBlock', regex: /^(?:\*{2,}|_{2,})\s*$/, next: 'start' },
54
- // .optional title
55
- { token: 'optionalTitle', regex: /^\.[^.\s].+$/, next: 'start' },
56
- ],
57
-
58
- listStart: [
59
- {
60
- token: 'keyword',
61
- regex: /^\s*(?:\d+\.|[a-zA-Z]\.|[ixvmIXVM]+\)|\*{1,5}|-|\.{1,5})\s/,
62
- next: 'listText',
63
- },
64
- { token: 'meta.tag', regex: /^.+(?::{2,4}|;;)(?: |$)/, next: 'listText' },
65
- // continuation
66
- { token: 'keyword', regex: /^\+\s*$/, next: 'start' },
67
- ],
68
-
69
- text: [
70
- {
71
- token: ['link', 'link'],
72
- regex: /((?:https?:\/\/|ftp:\/\/|file:\/\/|mailto:|callto:)[^\s\[]+)(\[.*?\])/,
73
- },
74
- { token: ['link', 'link'], regex: /(?:https?:\/\/|ftp:\/\/|file:\/\/|mailto:|callto:)[^\s\[]+/ },
75
- { token: 'link', regex: /\b[\w\.\/\-]+@[\w\.\/\-]+\b/ },
76
- { include: 'macros' },
77
- { include: 'paragraphEnd' },
78
- { token: 'literal', regex: /\+{3,}/, next: 'smallPassthrough' },
79
- {
80
- token: 'escape',
81
- regex: /\((?:C|TM|R)\)|\.{3}|->|<-|=>|<=|&#(?:\d+|x[a-fA-F\d]+);|(?: |^)--(?=\s+\S)/,
82
- },
83
- { token: 'escape', regex: /\\[_*'`+#]|\\{2}[_*'`+#]{2}/ },
84
- { token: 'keyword', regex: /\s\+$/ },
85
- // any word
86
- { token: 'text', regex: identifierRe },
87
- {
88
- token: ['keyword', 'string', 'keyword'],
89
- regex: /(<<[\w\d\-$]+,)(.*?)(>>|$)/,
90
- },
91
- { token: 'keyword', regex: /<<[\w\d\-$]+,?|>>/ },
92
- { token: 'constant.character', regex: /\({2,3}.*?\){2,3}/ },
93
- // List of callouts
94
- { token: 'support.function.list.callout', regex: /^(?:<\d+>|\d+>|>) /, next: 'text' },
95
- // Anchor
96
- { token: 'keyword', regex: /\[\[.+?\]\]/ },
97
- // bibliography
98
- { token: 'support', regex: /^\[{3}[\w\d =\-]+\]{3}/ },
99
-
100
- { include: 'quotes' },
101
- // text block end
102
- { token: 'empty', regex: /^\s*$/, next: 'start' },
103
- ],
104
-
105
- listText: [{ include: 'listStart' }, { include: 'text' }],
106
-
107
- indentedBlock: [
108
- { token: 'literal', regex: /^[\s\w].+$/, next: 'indentedBlock' },
109
- { token: 'literal', regex: '', next: 'start' },
110
- ],
111
-
112
- listingBlock: [
113
- { token: 'literal', regex: /^\.{4,}\s*$/, next: 'dissallowDelimitedBlock' },
114
- { token: 'constant.numeric', regex: '<\\d+>' },
115
- { token: 'literal', regex: '[^<]+' },
116
- { token: 'literal', regex: '<' },
117
- ],
118
- literalBlock: [
119
- { token: 'literal', regex: /^-{4,}\s*$/, next: 'dissallowDelimitedBlock' },
120
- { token: 'constant.numeric', regex: '<\\d+>' },
121
- { token: 'literal', regex: '[^<]+' },
122
- { token: 'literal', regex: '<' },
123
- ],
124
- passthroughBlock: [
125
- { token: 'literal', regex: /^\+{4,}\s*$/, next: 'dissallowDelimitedBlock' },
126
- { token: 'literal', regex: identifierRe + '|\\d+' },
127
- { include: 'macros' },
128
- { token: 'literal', regex: '.' },
129
- ],
130
-
131
- smallPassthrough: [
132
- { token: 'literal', regex: /[+]{3,}/, next: 'dissallowDelimitedBlock' },
133
- { token: 'literal', regex: /^\s*$/, next: 'dissallowDelimitedBlock' },
134
- { token: 'literal', regex: identifierRe + '|\\d+' },
135
- { include: 'macros' },
136
- ],
137
-
138
- commentBlock: [
139
- { token: 'doc.comment', regex: /^\/{4,}\s*$/, next: 'dissallowDelimitedBlock' },
140
- { token: 'doc.comment', regex: '^.*$' },
141
- ],
142
- tableBlock: [
143
- { token: 'tableBlock', regex: /^\s*\|={3,}\s*$/, next: 'dissallowDelimitedBlock' },
144
- { token: 'tableBlock', regex: /^\s*!={3,}\s*$/, next: 'innerTableBlock' },
145
- { token: 'tableBlock', regex: /\|/ },
146
- { include: 'text', noEscape: true },
147
- ],
148
- innerTableBlock: [
149
- { token: 'tableBlock', regex: /^\s*!={3,}\s*$/, next: 'tableBlock' },
150
- { token: 'tableBlock', regex: /^\s*|={3,}\s*$/, next: 'dissallowDelimitedBlock' },
151
- { token: 'tableBlock', regex: /\!/ },
152
- ],
153
- macros: [
154
- { token: 'macro', regex: /{[\w\-$]+}/ },
155
- {
156
- token: ['text', 'string', 'text', 'constant.character', 'text'],
157
- regex: /({)([\w\-$]+)(:)?(.+)?(})/,
158
- },
159
- {
160
- token: ['text', 'markup.list.macro', 'keyword', 'string'],
161
- regex: /(\w+)(footnote(?:ref)?::?)([^\s\[]+)?(\[.*?\])?/,
162
- },
163
- {
164
- token: ['markup.list.macro', 'keyword', 'string'],
165
- regex: /([a-zA-Z\-][\w\.\/\-]*::?)([^\s\[]+)(\[.*?\])?/,
166
- },
167
- { token: ['markup.list.macro', 'keyword'], regex: /([a-zA-Z\-][\w\.\/\-]+::?)(\[.*?\])/ },
168
- { token: 'keyword', regex: /^:.+?:(?= |$)/ },
169
- ],
170
-
171
- quotes: [
172
- { token: 'string.italic', regex: /__[^_\s].*?__/ },
173
- { token: 'string.italic', regex: quoteRule('_') },
174
-
175
- { token: 'keyword.bold', regex: /\*\*[^*\s].*?\*\*/ },
176
- { token: 'keyword.bold', regex: quoteRule('\\*') },
177
-
178
- { token: 'literal', regex: /\+\+[^+\s].*?\+\+/ },
179
- { token: 'literal', regex: quoteRule('\\+') },
180
-
181
- { token: 'literal', regex: /\$\$.+?\$\$/ },
182
- { token: 'literal', regex: quoteRule('\\$') },
183
-
184
- { token: 'literal', regex: /``[^`\s].*?``/ },
185
- { token: 'literal', regex: quoteRule('`') },
186
-
187
- { token: 'keyword', regex: /\^[^\^].*?\^/ },
188
- { token: 'keyword', regex: quoteRule('\\^') },
189
- { token: 'keyword', regex: /~[^~].*?~/ },
190
- { token: 'keyword', regex: quoteRule('~') },
191
-
192
- { token: 'keyword', regex: /##?/ },
193
- { token: 'keyword', regex: /(?:\B|^)``|\b''/ },
194
- ],
195
- };
196
-
197
- function quoteRule(ch) {
198
- const prefix = /\w/.test(ch) ? '\\b' : '(?:\\B|^)';
199
- return prefix + ch + '[^' + ch + '].*?' + ch + '(?![\\w*])';
200
- }
201
-
202
- // addQuoteBlock("text")
203
-
204
- const tokenMap = {
205
- macro: 'constant.character',
206
- tableBlock: 'doc.comment',
207
- titleUnderline: 'markup.heading',
208
- singleLineTitle: 'markup.heading',
209
- pageBreak: 'string',
210
- option: 'string.regexp',
211
- otherBlock: 'markup.list',
212
- literal: 'support.function',
213
- optionalTitle: 'constant.numeric',
214
- escape: 'constant.language.escape',
215
- link: 'markup.underline.list',
216
- };
217
-
218
- for (const state in this.$rules) {
219
- const stateRules = this.$rules[state];
220
- for (let i = stateRules.length; i--; ) {
221
- const rule = stateRules[i];
222
- if (rule.include || typeof rule === 'string') {
223
- let args = [i, 1].concat(this.$rules[rule.include || rule]);
224
- if (rule.noEscape) {
225
- args = args.filter(function (x) {
226
- return !x.next;
227
- });
228
- }
229
- stateRules.splice.apply(stateRules, args);
230
- } else if (rule.token in tokenMap) {
231
- rule.token = tokenMap[rule.token];
232
- }
233
- }
234
- }
235
- };
236
-
237
- // Ace's Syntax Tokenizer.
238
-
239
- // tokenizing lines longer than this makes editor very slow
240
- let MAX_TOKEN_COUNT = 1000;
241
- const Tokenizer = function (rules) {
242
- this.states = rules;
243
-
244
- this.regExps = {};
245
- this.matchMappings = {};
246
- for (const key in this.states) {
247
- const state = this.states[key];
248
- const ruleRegExps = [];
249
- let matchTotal = 0;
250
- const mapping = (this.matchMappings[key] = { defaultToken: 'text' });
251
- let flag = 'g';
252
-
253
- const splitterRurles = [];
254
- for (let i = 0; i < state.length; i++) {
255
- const rule = state[i];
256
- if (rule.defaultToken) mapping.defaultToken = rule.defaultToken;
257
- if (rule.caseInsensitive) flag = 'gi';
258
- if (rule.regex == null) continue;
259
-
260
- if (rule.regex instanceof RegExp) rule.regex = rule.regex.toString().slice(1, -1);
261
-
262
- // Count number of matching groups. 2 extra groups from the full match
263
- // And the catch-all on the end (used to force a match);
264
- let adjustedregex = rule.regex;
265
- let matchcount = new RegExp('(?:(' + adjustedregex + ')|(.))').exec('a').length - 2;
266
- if (Array.isArray(rule.token)) {
267
- if (rule.token.length === 1 || matchcount === 1) {
268
- rule.token = rule.token[0];
269
- } else if (matchcount - 1 !== rule.token.length) {
270
- throw new Error(
271
- "number of classes and regexp groups in '" +
272
- rule.token +
273
- "'\n'" +
274
- rule.regex +
275
- "' doesn't match\n" +
276
- (matchcount - 1) +
277
- '!=' +
278
- rule.token.length,
279
- );
280
- } else {
281
- rule.tokenArray = rule.token;
282
- rule.token = null;
283
- rule.onMatch = this.$arrayTokens;
284
- }
285
- } else if (typeof rule.token === 'function' && !rule.onMatch) {
286
- if (matchcount > 1) rule.onMatch = this.$applyToken;
287
- else rule.onMatch = rule.token;
288
- }
289
-
290
- if (matchcount > 1) {
291
- if (/\\\d/.test(rule.regex)) {
292
- // Replace any backreferences and offset appropriately.
293
- adjustedregex = rule.regex.replace(/\\([0-9]+)/g, function (match, digit) {
294
- return '\\' + (parseInt(digit, 10) + matchTotal + 1);
295
- });
296
- } else {
297
- matchcount = 1;
298
- adjustedregex = this.removeCapturingGroups(rule.regex);
299
- }
300
- if (!rule.splitRegex && typeof rule.token !== 'string')
301
- // flag will be known only at the very end
302
- splitterRurles.push(rule);
303
- }
304
-
305
- mapping[matchTotal] = i;
306
- matchTotal += matchcount;
307
-
308
- ruleRegExps.push(adjustedregex);
309
-
310
- // makes property access faster
311
- if (!rule.onMatch) rule.onMatch = null;
312
- }
313
-
314
- splitterRurles.forEach(function (rule) {
315
- rule.splitRegex = this.createSplitterRegexp(rule.regex, flag);
316
- }, this);
317
-
318
- this.regExps[key] = new RegExp('(' + ruleRegExps.join(')|(') + ')|($)', flag);
319
- }
320
- };
321
-
322
- (function () {
323
- this.$setMaxTokenCount = function (m) {
324
- MAX_TOKEN_COUNT = m | 0;
325
- };
326
-
327
- this.$applyToken = function (str) {
328
- const values = this.splitRegex.exec(str).slice(1);
329
- const types = this.token.apply(this, values);
330
-
331
- // required for compatibility with old modes
332
- if (typeof types === 'string') return [{ type: types, value: str }];
333
-
334
- const tokens = [];
335
- for (let i = 0, l = types.length; i < l; i++) {
336
- if (values[i])
337
- tokens[tokens.length] = {
338
- type: types[i],
339
- value: values[i],
340
- };
341
- }
342
- return tokens;
343
- };
344
-
345
- this.$arrayTokens = function (str) {
346
- if (!str) return [];
347
- const values = this.splitRegex.exec(str);
348
- if (!values) return 'text';
349
- const tokens = [];
350
- const types = this.tokenArray;
351
- for (let i = 0, l = types.length; i < l; i++) {
352
- if (values[i + 1])
353
- tokens[tokens.length] = {
354
- type: types[i],
355
- value: values[i + 1],
356
- };
357
- }
358
- return tokens;
359
- };
360
-
361
- this.removeCapturingGroups = function (src) {
362
- const r = src.replace(/\[(?:\\.|[^\]])*?\]|\\.|\(\?[:=!]|(\()/g, function (x, y) {
363
- return y ? '(?:' : x;
364
- });
365
- return r;
366
- };
367
-
368
- this.createSplitterRegexp = function (src, flag) {
369
- if (src.indexOf('(?=') !== -1) {
370
- let stack = 0;
371
- let inChClass = false;
372
- const lastCapture = {};
373
- src.replace(/(\\.)|(\((?:\?[=!])?)|(\))|([\[\]])/g, function (m, esc, parenOpen, parenClose, square, index) {
374
- if (inChClass) {
375
- inChClass = square !== ']';
376
- } else if (square) {
377
- inChClass = true;
378
- } else if (parenClose) {
379
- if (stack === lastCapture.stack) {
380
- lastCapture.end = index + 1;
381
- lastCapture.stack = -1;
382
- }
383
- stack--;
384
- } else if (parenOpen) {
385
- stack++;
386
- if (parenOpen.length !== 1) {
387
- lastCapture.stack = stack;
388
- lastCapture.start = index;
389
- }
390
- }
391
- return m;
392
- });
393
-
394
- if (lastCapture.end != null && /^\)*$/.test(src.substr(lastCapture.end)))
395
- src = src.substring(0, lastCapture.start) + src.substr(lastCapture.end);
396
- }
397
- return new RegExp(src, (flag || '').replace('g', ''));
398
- };
399
-
400
- /**
401
- * Returns an object containing two properties: `tokens`, which contains all the tokens; and `state`, the current state.
402
- * @returns {Object}
403
- **/
404
- this.getLineTokens = function (line, startState) {
405
- let stack = [];
406
- if (startState && typeof startState !== 'string') {
407
- stack = startState.slice(0);
408
- startState = stack[0];
409
- }
410
-
411
- let currentState = startState || 'start';
412
- let state = this.states[currentState];
413
- if (!state) {
414
- currentState = 'start';
415
- state = this.states[currentState];
416
- }
417
- let mapping = this.matchMappings[currentState];
418
- let re = this.regExps[currentState];
419
- re.lastIndex = 0;
420
-
421
- let match;
422
- const tokens = [];
423
- let lastIndex = 0;
424
-
425
- let token = { type: null, value: '' };
426
-
427
- /* eslint no-cond-assign: "off" */
428
- while ((match = re.exec(line))) {
429
- let type = mapping.defaultToken;
430
- let rule = null;
431
- const value = match[0];
432
- const index = re.lastIndex;
433
-
434
- if (index - value.length > lastIndex) {
435
- const skipped = line.substring(lastIndex, index - value.length);
436
- if (token.type === type) {
437
- token.value += skipped;
438
- } else {
439
- if (token.type) tokens.push(token);
440
- token = { type: type, value: skipped };
441
- }
442
- }
443
-
444
- for (let i = 0; i < match.length - 2; i++) {
445
- if (match[i + 1] === undefined) continue;
446
-
447
- rule = state[mapping[i]];
448
-
449
- if (rule.onMatch) type = rule.onMatch(value, currentState, stack);
450
- else type = rule.token;
451
-
452
- if (rule.next) {
453
- if (typeof rule.next === 'string') currentState = rule.next;
454
- else currentState = rule.next(currentState, stack);
455
-
456
- state = this.states[currentState];
457
- if (!state) {
458
- window.console && console.error && console.error(currentState, "doesn't exist");
459
- currentState = 'start';
460
- state = this.states[currentState];
461
- }
462
- mapping = this.matchMappings[currentState];
463
- lastIndex = index;
464
- re = this.regExps[currentState];
465
- re.lastIndex = index;
466
- }
467
- break;
468
- }
469
-
470
- if (value) {
471
- if (typeof type === 'string') {
472
- if ((!rule || rule.merge !== false) && token.type === type) {
473
- token.value += value;
474
- } else {
475
- if (token.type) tokens.push(token);
476
- token = { type: type, value: value };
477
- }
478
- } else if (type) {
479
- if (token.type) tokens.push(token);
480
- token = { type: null, value: '' };
481
- for (let i = 0; i < type.length; i++) tokens.push(type[i]);
482
- }
483
- }
484
-
485
- if (lastIndex === line.length) break;
486
-
487
- lastIndex = index;
488
-
489
- if (tokens.length > MAX_TOKEN_COUNT) {
490
- // chrome doens't show contents of text nodes with very long text
491
- while (lastIndex < line.length) {
492
- if (token.type) tokens.push(token);
493
- token = {
494
- value: line.substring(lastIndex, (lastIndex += 2000)),
495
- type: 'overflow',
496
- };
497
- }
498
- currentState = 'start';
499
- stack = [];
500
- break;
501
- }
502
- }
503
-
504
- if (token.type) tokens.push(token);
505
-
506
- if (stack.length > 1) {
507
- if (stack[0] !== currentState) stack.unshift(currentState);
508
- }
509
- return {
510
- tokens: tokens,
511
- state: stack.length ? stack : currentState,
512
- };
513
- };
514
- }.call(Tokenizer.prototype));
515
-
516
- // Token conversion.
517
- // See <https://github.com/ajaxorg/ace/wiki/Creating-or-Extending-an-Edit-Mode#common-tokens>
518
- // This is not an exact match nor the best match that can be made.
519
- const tokenFromAceToken = {
520
- empty: null,
521
- text: null,
522
-
523
- // Keyword
524
- keyword: 'keyword',
525
- control: 'keyword',
526
- operator: 'operator',
527
-
528
- // Constants
529
- constant: 'atom',
530
- numeric: 'number',
531
- character: 'atom',
532
- escape: 'atom',
533
-
534
- // Variables
535
- variable: 'variable',
536
- parameter: 'variable-3',
537
- // Python's `self` uses that.
538
- language: 'variable-2',
539
-
540
- // Comments
541
- comment: 'comment',
542
- line: 'comment',
543
- 'double-slash': 'comment',
544
- 'double-dash': 'comment',
545
- 'number-sign': 'comment',
546
- percentage: 'comment',
547
- block: 'comment',
548
- doc: 'comment',
549
-
550
- // String
551
- string: 'string',
552
- quoted: 'string',
553
- single: 'string',
554
- double: 'string',
555
- triple: 'string',
556
- unquoted: 'string',
557
- interpolated: 'string',
558
- regexp: 'string-2',
559
-
560
- meta: 'keyword',
561
- literal: 'qualifier',
562
- support: 'builtin',
563
-
564
- // Markup
565
- markup: 'tag',
566
- underline: 'link',
567
- link: 'link',
568
- strong: 'strong',
569
- heading: 'header',
570
- em: 'em',
571
- list: 'variable-2',
572
- numbered: 'variable-2',
573
- unnumbered: 'variable-2',
574
- quote: 'quote',
575
- // Markdown's raw block uses that.
576
- raw: 'variable-2',
577
-
578
- // Invalid
579
- invalid: 'error',
580
- illegal: 'invalidchar',
581
- deprecated: 'error',
582
- };
583
-
584
- // Takes a list of Ace tokens, returns a (string) CodeMirror token.
585
- const cmTokenFromAceTokens = function (tokens) {
586
- let token = null;
587
- for (let i = 0; i < tokens.length; i++) {
588
- // Find the most specific token.
589
- if (tokenFromAceToken[tokens[i]] !== undefined) {
590
- token = tokenFromAceToken[tokens[i]];
591
- }
592
- }
593
- return token;
594
- };
595
-
596
- // Consume a token from plannedTokens.
597
- const consumeToken = function (stream, state) {
598
- const plannedToken = state.plannedTokens.shift();
599
- if (plannedToken === undefined) {
600
- return null;
601
- }
602
- stream.match(plannedToken.value);
603
- const tokens = plannedToken.type.split('.');
604
- return cmTokenFromAceTokens(tokens);
605
- };
606
-
607
- const matchToken = function (stream, state) {
608
- // Anormal start: we already have planned tokens to consume.
609
- if (state.plannedTokens.length > 0) {
610
- return consumeToken(stream, state);
611
- }
612
-
613
- // Normal start.
614
- const currentState = state.current;
615
- const currentLine = stream.match(/.*$/, false)[0];
616
- const tokenized = tokenizer.getLineTokens(currentLine, currentState);
617
- // We got a {tokens, state} object.
618
- // Each token is a {value, type} object.
619
- state.plannedTokens = tokenized.tokens;
620
- state.current = tokenized.state;
621
-
622
- // Consume a token.
623
- return consumeToken(stream, state);
624
- };
625
-
626
- // Initialize all state.
627
- const aceHighlightRules = new HighlightRules();
628
- const tokenizer = new Tokenizer(aceHighlightRules.$rules);
629
-
630
- export const asciidoc = {
631
- startState: function () {
632
- return {
633
- current: 'start',
634
- // List of {value, type}, with type being an Ace token string.
635
- plannedTokens: [],
636
- };
637
- },
638
- blankLine: function (state) {
639
- matchToken('', state);
640
- },
641
- token: matchToken,
642
- };