LLWiki正在建设中,欢迎加入我们

“User:Bhsd/edit.js”的版本间差异

来自LLWiki
跳转到导航 跳转到搜索
第3行: 第3行:
"use strict";
"use strict";
/*global mw, $*/
/*global mw, $*/
(function() {
(() => {
const action = mw.config.get('wgAction'),
const action = mw.config.get( 'wgAction' ),
contentmodel = mw.config.get( 'wgPageContentModel' ),
contentmodel = mw.config.get( 'wgPageContentModel' ),
skin = mw.config.get('skin');
skin = mw.config.get( 'skin' ),
$body = $(document.body);


// 引自[[moegirl:User:東東君/js/Wikiplus-replace.js]]
// 引自[[moegirl:User:東東君/js/Wikiplus-replace.js]]
第46行: 第47行:
mw.loader.using( 'jquery.ui' ).then(() => { dialog.draggable(); });
mw.loader.using( 'jquery.ui' ).then(() => { dialog.draggable(); });
}).insertAfter( '#Wikiplus-Quickedit-Jump' );
}).insertAfter( '#Wikiplus-Quickedit-Jump' );
});
}
/* JavaScript编辑界面按tab键空4格 */
if (contentmodel == 'javascript' && skin == 'vector' && ['view', 'edit', 'submit'].includes(action)) {
mw.loader.using( 'jquery.textSelection' ).then(() => {
$('body').on('keydown', '#wpTextbox1, #Wikiplus-Quickedit', function(e) {
if (e.keyCode == 9) {
e.preventDefault();
$(this).textSelection( 'encapsulateSelection', {peri:' ', replace:true, selectPeri:false} );
}
});
});
});
}
}
第64行: 第53行:
// 修改WikiEditor的替换文本框
// 修改WikiEditor的替换文本框
if (skin == 'vector') {
if (skin == 'vector') {
$('body').on('click', 'input#wikieditor-toolbar-replace-replace', function() {
$body.on('click', 'input#wikieditor-toolbar-replace-replace', function() {
$(this).replaceWith( $('<textarea>', {id: "wikieditor-toolbar-replace-replace", tabindex:10})
$(this).replaceWith( $('<textarea>', {id: "wikieditor-toolbar-replace-replace", tabindex:10})
.on('keydown keypress', e => { if (e.keyCode == '13') { e.stopPropagation(); } }) );
.keydown(e => { if (e.key == 'Enter') { e.stopPropagation(); } }) );
});
});
}
}


// 修改templateSandbox的默认页面
// 修改templateSandbox的默认页面
$('body').on('click', '#wpTemplateSandboxPreview', () => {
$body.on('click', '#wpTemplateSandboxPreview', () => {
$( 'input[name=wpTemplateSandboxPage]' ).val(function() {
$( 'input[name = wpTemplateSandboxPage]' ).val(function() {
const namespaces = mw.config.get( 'wgFormattedNamespaces' ),
const namespaces = mw.config.get( 'wgFormattedNamespaces' ),
ns = mw.config.get( 'wgNamespaceNumber' );
ns = mw.config.get( 'wgNamespaceNumber' );
return $(this).val() || (namespaces[ns] + (ns === 0 ? '' : ':') + mw.config.get('wgTitle'));
return $(this).val() || namespaces[ns] + (ns === 0 ? '' : ':') + mw.config.get( 'wgTitle' );
});
});
});
});


// JS统一使用4个空格缩进
// 代码统一使用Tab缩进
if (contentmodel == 'javascript') {
if (['javascript', 'css', 'Scribunto'].includes( contentmodel )) {
$('body').on('submit', '#editform', () => {
$body.on('submit', '#editform', () => {
$( '#wpTextbox1' ).val(function() { return $(this).val().replace(/\t/g, " "); });
$( '#wpTextbox1' ).val(function() { return $(this).val().replaceAll(' ', ' '); });
});
});
}
}

2021年9月12日 (日) 05:09的版本

//<nowiki>
// 由[[Special:Mypage/common.js]]调用,可以使用ES6语法
"use strict";
/*global mw, $*/
(() => {
    const action = mw.config.get( 'wgAction' ),
        contentmodel = mw.config.get( 'wgPageContentModel' ),
        skin = mw.config.get( 'skin' ),
        $body = $(document.body);

    // 引自[[moegirl:User:東東君/js/Wikiplus-replace.js]]
    if (action == 'view' && mw.config.get( 'wgIsArticle' ) && mw.config.get( 'wgIsProbablyEditable' ) &&
        (mw.isModule( 'Wikiplus', true ) || mw.isModule( 'mobile-Wikiplus', true ))) {
        mw.hook( 'wikiplus.dialog' ).add(() => {
            if ($( '#Wikiplus-Quickedit-Replace' ).length) { return; }
            console.log('Hook: wikiplus.dialog,开始添加替换按钮');
            $('<span>', {id: "Wikiplus-Quickedit-Replace", class:"Wikiplus-Btn", text:'替换'}).click(() => {
                let dialog = $( '.quickEdit-replace' );
                if (dialog.length) {
                    dialog.show();
                    return;
                }
                let backup = "";
                const textarea = $('#Wikiplus-Quickedit');
                dialog = $('<div class="quickEdit-replace">' +
                    '<label>查找:<input type="text" id="quickEdit-replace-pattern"></label>' +
                    '<label>替换:<textarea id="quickEdit-replace-val"></textarea></label>' +
                    '<label id="quickEdit-replace-regex"><input type="checkbox">正则</label>' +
                    '<button id="quickEdit-replace_replaceBtn">替换</button>' +
                    '<button id="quickEdit-replace_undoBtn" disabled="true">撤销</button>' +
                    '<button id="quickEdit-replace_hideBtn">关闭</button>' +
                '</div>').appendTo( '.Wikiplus-InterBox' )
                    .on('click', '#quickEdit-replace_hideBtn', () => { dialog.hide(); })
                    .on('click', '#quickEdit-replace_undoBtn', () => { textarea.val(backup); })
                    .on('click', '#quickEdit-replace_replaceBtn', () => {
                    const ptn = $( '#quickEdit-replace-pattern' ).val(),
                        value = $( '#quickEdit-replace-val' ).val(),
                        isRegex = $( '#quickEdit-replace-regex > input' ).prop( 'checked' );
                    backup = textarea.val();
                    $( '#quickEdit-replace_undoBtn' ).prop('disabled', false);
                    mw.loader.using( 'mediawiki.util' ).then(() => {
                        const regexp = new RegExp(isRegex ? ptn : mw.util.escapeRegExp(ptn), 'g');
                        textarea.val( backup.replace(regexp, value) );
                    });
                });
                if (skin == 'minerva') { return; }
                mw.loader.using( 'jquery.ui' ).then(() => { dialog.draggable(); });
            }).insertAfter( '#Wikiplus-Quickedit-Jump' );
        });
    }

    if (['edit', 'submit'].includes(action)) {
        // 修改WikiEditor的替换文本框
        if (skin == 'vector') {
            $body.on('click', 'input#wikieditor-toolbar-replace-replace', function() {
                $(this).replaceWith( $('<textarea>', {id: "wikieditor-toolbar-replace-replace", tabindex:10})
                    .keydown(e => { if (e.key == 'Enter') { e.stopPropagation(); } }) );
            });
        }

        // 修改templateSandbox的默认页面
        $body.on('click', '#wpTemplateSandboxPreview', () => {
            $( 'input[name = wpTemplateSandboxPage]' ).val(function() {
                const namespaces = mw.config.get( 'wgFormattedNamespaces' ),
                    ns = mw.config.get( 'wgNamespaceNumber' );
                return $(this).val() || namespaces[ns] + (ns === 0 ? '' : ':') + mw.config.get( 'wgTitle' );
            });
        });

        // 代码统一使用Tab缩进
        if (['javascript', 'css', 'Scribunto'].includes( contentmodel )) {
            $body.on('submit', '#editform', () => {
                $( '#wpTextbox1' ).val(function() { return $(this).val().replaceAll('    ', '    '); });
            });
        }
    }
}) ();
//</nowiki>