mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-12 08:50:57 +00:00
Respect beta feature in new wikitext editor
Bug: T173480 Change-Id: I2ca5a33f09aefe0c3d31082270869a13cee14fc4
This commit is contained in:
parent
3af36ed329
commit
f5210867ba
|
@ -3,7 +3,7 @@
|
|||
class CodeMirrorHooks {
|
||||
|
||||
/**
|
||||
* Checks, if CodeMirror should be loaded on this page or not.
|
||||
* Checks if CodeMirror is enabled for this user
|
||||
*
|
||||
* @param IContextSource $context The current ContextSource object
|
||||
* @staticvar null|boolean $isEnabled Saves, if CodeMirror should be loaded on this page or not
|
||||
|
@ -16,10 +16,9 @@ class CodeMirrorHooks {
|
|||
// Check, if we already checked, if page action is editing, if not, do it now
|
||||
if ( $isEnabled === null ) {
|
||||
if ( !$wgCodeMirrorBetaFeature ) {
|
||||
$isEnabled = in_array( Action::getActionName( $context ), [ 'edit', 'submit' ] );
|
||||
$isEnabled = true;
|
||||
} else {
|
||||
$isEnabled = in_array( Action::getActionName( $context ), [ 'edit', 'submit' ] ) &&
|
||||
$wgCodeMirrorBetaFeature &&
|
||||
$isEnabled = $wgCodeMirrorBetaFeature &&
|
||||
ExtensionRegistry::getInstance()->isLoaded( 'BetaFeatures' ) &&
|
||||
BetaFeatures::isFeatureEnabled(
|
||||
$context->getUser(), 'codemirror-syntax-highlight' );
|
||||
|
@ -29,6 +28,18 @@ class CodeMirrorHooks {
|
|||
return $isEnabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if CodeMirror for textarea wikitext editor should be loaded on this page or not.
|
||||
*
|
||||
* @param IContextSource $context The current ContextSource object
|
||||
* @staticvar null|boolean $isEnabled Saves, if CodeMirror should be loaded on this page or not
|
||||
* @return bool
|
||||
*/
|
||||
private static function isCodeMirrorOnPage( IContextSource $context ) {
|
||||
return in_array( Action::getActionName( $context ), [ 'edit', 'submit' ] ) &&
|
||||
self::isCodeMirrorEnabled( $context );
|
||||
}
|
||||
|
||||
/**
|
||||
* BeforePageDisplay hook handler
|
||||
*
|
||||
|
@ -38,9 +49,10 @@ class CodeMirrorHooks {
|
|||
* @param Skin $skin
|
||||
*/
|
||||
public static function onBeforePageDisplay( OutputPage &$out, Skin &$skin ) {
|
||||
if ( self::isCodeMirrorEnabled( $out->getContext() ) ) {
|
||||
if ( self::isCodeMirrorOnPage( $out->getContext() ) ) {
|
||||
$out->addModules( 'ext.CodeMirror' );
|
||||
}
|
||||
$out->addJsConfigVars( 'wgCodeMirrorEnabled', self::isCodeMirrorEnabled( $out->getContext() ) );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
( function ( ve, mw ) {
|
||||
mw.libs.ve.targetLoader.addPlugin( function () {
|
||||
var i, target, index;
|
||||
for ( i in ve.init.mw ) {
|
||||
target = ve.init.mw[ i ];
|
||||
if ( target === ve.init.mw.DesktopArticleTarget ) {
|
||||
index = target.static.actionGroups[ 1 ].include.indexOf( 'changeDirectionality' );
|
||||
target.static.actionGroups[ 1 ].include.splice( index, 0, 'codeMirror' );
|
||||
if ( mw.config.get( 'wgCodeMirrorEnabled' ) ) {
|
||||
mw.libs.ve.targetLoader.addPlugin( function () {
|
||||
var i, target, index;
|
||||
for ( i in ve.init.mw ) {
|
||||
target = ve.init.mw[ i ];
|
||||
if ( target === ve.init.mw.DesktopArticleTarget ) {
|
||||
index = target.static.actionGroups[ 1 ].include.indexOf( 'changeDirectionality' );
|
||||
target.static.actionGroups[ 1 ].include.splice( index, 0, 'codeMirror' );
|
||||
}
|
||||
}
|
||||
}
|
||||
} );
|
||||
} );
|
||||
}
|
||||
}( ve, mediaWiki ) );
|
||||
|
|
Loading…
Reference in a new issue