MediaWiki:Gadget-mobileEdit.js:修订间差异

H萌娘,万物皆可H的百科全书!
跳到导航 跳到搜索
imported>=海豚=
无编辑摘要
imported>=海豚=
无编辑摘要
第19行: 第19行:
    if (action == 'view' || mw.config.get( 'wgNamespaceNumber') >= 0) {
    if (action == 'view' || mw.config.get( 'wgNamespaceNumber') >= 0) {
      $( 'a.edit-page' ).filter(function() { return /^T-/.test( $(this).data('section') ); }).remove();
      $( 'a.edit-page' ).filter(function() { return /^T-/.test( $(this).data('section') ); }).remove();
      $( '#ca-edit > a' ).off( 'click' ).on('click', function(e) {
      const editBtn = $('#ca-edit')[0];
       e.stopImmediatePropagation();
     if (editBtn) {
       location.href = '/index.php?action=submit&title=' + mw.util.wikiUrlencode( mw.config.get( 'wgPageName' ) ) + '&oldid=' + mw.config.get( 'wgRevisionId' );
       editBtn.addEventListener('click', function(e) {
      }).removeAttr('href');
         e.stopPropagation();
         location.href = '/index.php?title=' + pagename + '&action=submit&oldid=' + id;
       }, true);
      }
      $( 'a.edit-page' ).off( 'click' ).on('click', function(e) {
      $( 'a.edit-page' ).off( 'click' ).on('click', function(e) {
        e.stopImmediatePropagation();
        e.stopImmediatePropagation();

2021年5月9日 (日) 20:53的版本

//<nowiki>
/**
 * @Source: https://llwiki.org/zh/mediawiki:gadget-mobileEdit.js
 * @Author: User:Bhsd
 * @License: CC BY-NC-SA 4.0
 * @Dependencies: ext.gadget.site-lib, mediawiki.util, oojs-ui-windows, user.options
 */
"use strict";
const script = mw.config.get( 'wgScript' ),
    pagename = mw.util.wikiUrlencode( mw.config.get( 'wgPageName' ) ),
    id = mw.config.get( 'wgRevisionId' ),
    action = mw.config.get( 'wgAction' );

$('body').on('click', 'a.new', function() {
    $(this).attr('href', function(i, val) { return val.replace('&action=edit', '&action=submit'); });
});

$(function() {
    if (action == 'view' || mw.config.get( 'wgNamespaceNumber') >= 0) {
        $( 'a.edit-page' ).filter(function() { return /^T-/.test( $(this).data('section') ); }).remove();
        const editBtn = $('#ca-edit')[0];
        if (editBtn) {
            editBtn.addEventListener('click', function(e) {
                e.stopPropagation();
                location.href = '/index.php?title=' + pagename + '&action=submit&oldid=' + id;
            }, true);
        }
        $( 'a.edit-page' ).off( 'click' ).on('click', function(e) {
            e.stopImmediatePropagation();
            const section = $(this).data('section'),
                param = section ? '&section=' + section : '';
            location.href = script + '?action=submit&title=' + pagename + '&oldid=' + id + param;
        }).removeAttr('href');
    }

    if (["edit", "submit"].includes( action )) {
        const warning = mw.user.options.get( 'useeditwarning' ),
            id = mw.util.getParamValue( 'oldid' ),
            cid = mw.config.get( 'wgCurRevisionId' ),
            href = script + (id && id < cid ? '?oldid=' + id : '/' + pagename),
            cancelBtn = new OO.ui.ButtonWidget( {label: wgULS("取消编辑", "取消編輯"),
            flags: ['primary', 'destructive'], href: href} );
        cancelBtn.$element.appendTo( '.editButtons' );
        if (warning) {
            cancelBtn.$element.on('click', 'a', function(e) {
                e.preventDefault();
                OO.ui.confirm( wgULS("您要放弃这次更改吗?", "您要放棄這次更改嗎?"), {actions: [{label: "取消"},
                    {label: wgULS("确定", "確認"), flags: ['primary', 'destructive'], action: 'accept'}]} )
                    .then(function(confirm) {
                    if (confirm) { location.href = href; }
                });
            });
        }
    }
});
//</nowiki>