mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 14:33:59 +00:00
36d15222bf
Change-Id: I4dc5225ae691a9f8b11d2c7c4a980a2bbc169fd4
150 lines
3.8 KiB
PHP
150 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* CollabPad special page
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license MIT
|
|
*/
|
|
|
|
class SpecialCollabPad extends SpecialPage {
|
|
private $prefixes = [];
|
|
|
|
/**
|
|
* @var null|Title
|
|
*/
|
|
private $title = null;
|
|
|
|
/**
|
|
* @var null|ParserOutput
|
|
*/
|
|
private $output = null;
|
|
|
|
public function __construct() {
|
|
parent::__construct( 'CollabPad' );
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function getGroupName() {
|
|
return 'wiki';
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function userCanExecute( User $user ) {
|
|
global $wgVisualEditorRebaserURL;
|
|
return !!$wgVisualEditorRebaserURL && parent::userCanExecute( $user );
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function isListed() {
|
|
global $wgVisualEditorRebaserURL;
|
|
return !!$wgVisualEditorRebaserURL;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function execute( $subPage ) {
|
|
$this->setHeaders();
|
|
$this->checkPermissions();
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$output = $this->getOutput();
|
|
|
|
$output->addJsConfigVars( 'collabPadPageName', $subPage );
|
|
$output->addModuleStyles( 'ext.visualEditor.collabTarget.init.styles' );
|
|
$output->addModuleStyles( 'oojs-ui.styles.icons-editing-core' );
|
|
$output->addModuleStyles( 'oojs-ui.styles.icons-content' );
|
|
|
|
$output->addModules( 'ext.visualEditor.collabTarget.init' );
|
|
|
|
$output->enableOOUI();
|
|
|
|
$documentNameFieldset = new OOUI\FieldsetLayout( [
|
|
'label' => $this->msg( 'visualeditor-rebase-client-document-create-edit' )->text(),
|
|
'icon' => 'edit',
|
|
'items' => [
|
|
new OOUI\ActionFieldLayout(
|
|
new OOUI\TextInputWidget( [
|
|
'classes' => [ 've-init-mw-collabTarget-nameInput' ],
|
|
'placeholder' => $this->msg( 'visualeditor-rebase-client-document-name' )->text(),
|
|
'autofocus' => true,
|
|
'infusable' => true
|
|
] ),
|
|
new OOUI\ButtonWidget( [
|
|
'classes' => [ 've-init-mw-collabTarget-nameButton' ],
|
|
'label' => $this->msg( 'visualeditor-rebase-client-document-create-edit' )->text(),
|
|
'flags' => [ 'primary', 'progressive' ],
|
|
// Only enable once JS has loaded
|
|
'disabled' => true,
|
|
'infusable' => true
|
|
] ),
|
|
[
|
|
'align' => 'top',
|
|
'classes' => [ 've-init-mw-collabTarget-nameField' ],
|
|
'infusable' => true
|
|
]
|
|
)
|
|
]
|
|
] );
|
|
$importFieldset = new OOUI\FieldsetLayout( [
|
|
'label' => $this->msg( 'visualeditor-rebase-client-import' )->text(),
|
|
'icon' => 'download',
|
|
'items' => [
|
|
new OOUI\ActionFieldLayout(
|
|
new MediaWiki\Widget\TitleInputWidget( [
|
|
'classes' => [ 've-init-mw-collabTarget-importInput' ],
|
|
'placeholder' => $this->msg( 'visualeditor-rebase-client-import-name' )->text(),
|
|
'infusable' => true,
|
|
] ),
|
|
new OOUI\ButtonWidget( [
|
|
'classes' => [ 've-init-mw-collabTarget-importButton' ],
|
|
'label' => $this->msg( 'visualeditor-rebase-client-import' )->text(),
|
|
// Only enable once JS has loaded
|
|
'disabled' => true,
|
|
'infusable' => true
|
|
] ),
|
|
[
|
|
'align' => 'top',
|
|
'classes' => [ 've-init-mw-collabTarget-importField' ],
|
|
'infusable' => true
|
|
]
|
|
)
|
|
]
|
|
] );
|
|
|
|
$form = new OOUI\FormLayout( [
|
|
'classes' => [ 've-init-mw-collabTarget-form' ],
|
|
'items' => [
|
|
$documentNameFieldset,
|
|
$importFieldset
|
|
],
|
|
'infusable' => true
|
|
] );
|
|
|
|
$progressBar = new OOUI\ProgressBarWidget( [
|
|
'classes' => [ 've-init-mw-collabTarget-loading' ],
|
|
'infusable' => true
|
|
] );
|
|
|
|
if ( $subPage ) {
|
|
$title = Title::newFromText( $subPage );
|
|
$output->setPageTitle( $this->msg( 'collabpad-doctitle', $title->getPrefixedText() ) );
|
|
$form->addClasses( [ 'oo-ui-element-hidden' ] );
|
|
} else {
|
|
// Scripts only, styles already added above
|
|
$output->addModules( 'ext.visualEditor.collabTarget' );
|
|
$progressBar->addClasses( [ 'oo-ui-element-hidden' ] );
|
|
}
|
|
$output->addHTML( $progressBar . $form );
|
|
}
|
|
}
|