Участник:Karaby/common.js: различия между версиями

Материал из Буквицы
Перейти к навигации Перейти к поиску
мНет описания правки
мНет описания правки
Строка 5: Строка 5:
     'tools':  {
     'tools':  {
         'blank-user': {
         'blank-user': {
             'label': 'Мои инструменты',
             'label': 'Персональное',
             'type': 'select',
             'type': 'select',
             'list': {
             'list': {
                 'blank-user-1' : { // Вставить ...
                 'blank-user-1' : {
                      'label': 'Просмотрено de visu',
                    'label': 'Вставить: Просмотрено de visu',
                      'action':  {
                    'action':  {
                          'type': 'encapsulate',
                        'type': 'encapsulate',
                          'options': {
                        'options': {
                              'pre': '',
                            'pre': '',
                              'peri': '', // <== сюда курсор (текущее выделение)
                            'peri': '', // <== сюда курсор (текущее выделение)
                              'post': '{{e02|vc|dv}}',
                            'post': '{{e02|vc|dv}}',
                          }       
                        }       
                      }
                    }
                 }
                 }
             }
             }
Строка 24: Строка 24:
   } );
   } );
};
};


/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
/*
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
mw.loader.using( 'user.options' ).then( function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor.toolbar' ), $.ready
).then( customizeToolbar );
}
} );
}
*/
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
        mw.loader.using( 'user.options', function () {
    mw.loader.using( 'user.options', function () {
                if ( mw.user.options.get('usebetatoolbar') ) {
        if ( mw.user.options.get('usebetatoolbar') ) {
                        mw.loader.using( 'ext.wikiEditor.toolbar', function () {
            mw.loader.using( 'ext.wikiEditor.toolbar', function () {
                                $(document).ready( customizeMyToolbar );
                $(document).ready( customizeMyToolbar );
                        } );
            } );
                }
         }
         } );
    } );
}
 
 
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
/*
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
mw.loader.using( 'user.options' ).then( function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor' ), $.ready
).then( customizeToolbar );
}
} );
}
}
*/

Версия от 08:49, 15 сентября 2020

var customizeMyToolbar = function () {
  $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
    'section': 'advanced',
    'group': 'blanks',
    'tools':  {
        'blank-user': {
            'label': 'Персональное',
            'type': 'select',
            'list': {
                'blank-user-1' : {
                    'label': 'Вставить: Просмотрено de visu',
                    'action':   {
                        'type': 'encapsulate',
                        'options': {
                            'pre': '',
                            'peri': '', // <== сюда курсор (текущее выделение)
                            'post': '{{e02|vc|dv}}',
                        }       
                    }
                }
            }
        }
    }
  } );
};

/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
    mw.loader.using( 'user.options', function () {
        if ( mw.user.options.get('usebetatoolbar') ) {
            mw.loader.using( 'ext.wikiEditor.toolbar', function () {
                $(document).ready( customizeMyToolbar );
            } );
        }
    } );
}