mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-13 17:27:42 +00:00
7d3482f89e
CodeMirror 6 requires the use of NPM, but we can still bundle all CM packages into one file, and then everything else (i.e. our code) is managed by ResourceLoader as per usual. This makes contribution considerably easier as we no longer need a build step for each change. CM5 files are now under resources/legacy, and the CM6 files are moved to the root of the resources/ directory. Only one file, codemirror.bundle.js, is managed by Rollup, while everything else is RL. The Rollup output for now is put under resources/lib/ alongside the CM5 upstream files. This patch is *mostly* renames of files, along with changing ECMAScript Module (ESM) syntax into the CommonJS style that ResourceLoader prefers. We also remove more modern JS syntax (i.e. private class methods) that we were able to use before because we had a build step with Babel. This patch should effectively make no user-facing changes, or to the ResourceLoader modules we offer in Extension:CodeMirror. Finally, bump version in extension.json to 6, to match the upstream lib, and add Bhsd as an author :-) Bug: T368053 Change-Id: Ie258e49f5df8db23a7344ac3c4c9300aaa991042
128 lines
2.9 KiB
JavaScript
128 lines
2.9 KiB
JavaScript
const {
|
|
Decoration,
|
|
DecorationSet,
|
|
Direction,
|
|
EditorView,
|
|
PluginSpec,
|
|
Prec,
|
|
RangeSet,
|
|
RangeSetBuilder,
|
|
ViewPlugin,
|
|
ViewUpdate,
|
|
syntaxTree
|
|
} = require( 'ext.CodeMirror.v6.lib' );
|
|
const mwModeConfig = require( './codemirror.mediawiki.config.js' );
|
|
|
|
/**
|
|
* @type {Decoration}
|
|
* @private
|
|
*/
|
|
const isolate = Decoration.mark( {
|
|
class: 'cm-bidi-isolate',
|
|
bidiIsolate: Direction.LTR
|
|
} );
|
|
|
|
/**
|
|
* @param {EditorView} view
|
|
* @return {RangeSet}
|
|
* @private
|
|
*/
|
|
function computeIsolates( view ) {
|
|
const set = new RangeSetBuilder();
|
|
|
|
if ( view.editorAttrs.dir === 'rtl' ) {
|
|
for ( const { from, to } of view.visibleRanges ) {
|
|
let startPos = null;
|
|
syntaxTree( view.state ).iterate( {
|
|
from,
|
|
to,
|
|
enter( node ) {
|
|
// Determine if this is a bracket node (start or end of a tag).
|
|
const isBracket = node.name.split( '_' )
|
|
.some( ( tag ) => [
|
|
mwModeConfig.tags.htmlTagBracket,
|
|
mwModeConfig.tags.extTagBracket
|
|
].includes( tag ) );
|
|
|
|
if ( startPos === null && isBracket ) {
|
|
// If we find a bracket node, we keep track of the start position.
|
|
startPos = node.from;
|
|
} else if ( isBracket ) {
|
|
// When we find the closing bracket, add the isolate.
|
|
set.add( startPos, node.to, isolate );
|
|
startPos = null;
|
|
}
|
|
}
|
|
} );
|
|
}
|
|
}
|
|
|
|
return set.finish();
|
|
}
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
class CodeMirrorBidiIsolation {
|
|
/**
|
|
* @constructor
|
|
* @param {EditorView} view The editor view.
|
|
*/
|
|
constructor( view ) {
|
|
/** @type {DecorationSet} */
|
|
this.isolates = computeIsolates( view );
|
|
/** @type {Tree} */
|
|
this.tree = syntaxTree( view.state );
|
|
/** @type {Direction} */
|
|
this.dir = view.textDirection;
|
|
}
|
|
|
|
/**
|
|
* @param {ViewUpdate} update
|
|
*/
|
|
update( update ) {
|
|
if ( update.docChanged || update.viewportChanged ||
|
|
syntaxTree( update.state ) !== this.tree ||
|
|
update.view.textDirection !== this.dir
|
|
) {
|
|
this.isolates = computeIsolates( update.view );
|
|
this.tree = syntaxTree( update.state );
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @type {PluginSpec}
|
|
* @private
|
|
*/
|
|
const bidiIsolationSpec = {
|
|
provide: ( plugin ) => {
|
|
/**
|
|
* @param {EditorView} view
|
|
* @return {DecorationSet}
|
|
*/
|
|
const access = ( view ) => view.plugin( plugin ) ?
|
|
( view.plugin( plugin ).isolates || Decoration.none ) :
|
|
Decoration.none;
|
|
|
|
// Use the lowest precedence to ensure that other decorations
|
|
// don't break up the isolating decorations.
|
|
return Prec.lowest( [
|
|
EditorView.decorations.of( access ),
|
|
EditorView.bidiIsolatedRanges.of( access )
|
|
] );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Bidirectional isolation plugin for CodeMirror for use on RTL pages.
|
|
* This ensures HTML and MediaWiki tags are always displayed left-to-right.
|
|
*
|
|
* Use this plugin by passing in `bidiIsolation: true` when instantiating
|
|
* a [CodeMirrorModeMediaWiki]{@link CodeMirrorModeMediaWiki} object.
|
|
*
|
|
* @module CodeMirrorBidiIsolation
|
|
* @see https://codemirror.net/examples/bidi/
|
|
*/
|
|
module.exports = ViewPlugin.fromClass( CodeMirrorBidiIsolation, bidiIsolationSpec );
|