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

H萌娘,万物皆可H的百科全书!
跳到导航 跳到搜索
imported>=海豚=
无编辑摘要
imported>=海豚=
(以“mw.loader.load('//cdn.jsdelivr.net/gh/bhsd-harry/[email protected]/otherwiki/gadget-mobileEdit.min.js');”替换内容)
(未显示同一用户的1个中间版本)
第1行: 第1行:
//<nowiki>
mw.loader.load('//cdn.jsdelivr.net/gh/bhsd-harry/LLWiki@2.7/otherwiki/gadget-mobileEdit.min.js');
/**
* @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();
     $( '#ca-edit > a' ).off( 'click' ).on('click', function(e) {
       e.stopImmediatePropagation();
       location.href = '/index.php?action=submit&title=' + mw.util.wikiUrlencode( mw.config.get( 'wgPageName' ) ) + '&oldid=' + mw.config.get( 'wgRevisionId' );
     }).removeAttr('href');
     $( '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>

2021年6月15日 (二) 11:13的版本

mw.loader.load('//cdn.jsdelivr.net/gh/bhsd-harry/[email protected]/otherwiki/gadget-mobileEdit.min.js');