MediaWiki:Gadget-Edittools-delh.js
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
- Opera:按 Ctrl-F5。
/**
* SPDX-License-Identifier: CC-BY-SA-4.0
* _addText: '{{Gadget Header|license=CC-BY-SA-4.0}}'
*
* @base {@link https://zh.wikipedia.org/wiki/MediaWiki:Gadget-Edittools-delh.js}
* @source {@link https://git.qiuwen.net.cn/InterfaceAdmin/QiuwenGadgets/src/branch/master/src/Edittools-delh}
* @license CC-BY-SA-4.0 {@link https://www.qiuwenbaike.cn/wiki/H:CC-BY-SA-4.0}
*/
/**
* +------------------------------------------------------------+
* | === WARNING: GLOBAL GADGET FILE === |
* +------------------------------------------------------------+
* | All changes should be made in the repository, |
* | otherwise they will be lost. |
* +------------------------------------------------------------+
* | Changes to this page may affect many users. |
* | Please discuss changes by opening an issue before editing. |
* +------------------------------------------------------------+
*/
/* <nowiki> */
(() => {
"use strict";
// dist/Edittools-delh/Edittools-delh.js
//! src/Edittools-delh/modules/core.ts
var import_ext_gadget = require("ext.gadget.Edittools-customizeToolbar");
//! src/Edittools-delh/modules/getList.ts
var getVfdText = (code, comment) => {
return {
label: comment,
action: {
type: "encapsulate",
options: {
pre: "{{delh|".concat(code, "}}\n"),
post: "\n----\n: ".concat(comment, "。--~~").concat("~~\n{", "{delf}}")
}
}
};
};
var getList = (list) => {
const object = {};
for (var _i = 0, _Object$entries = Object.entries(list); _i < _Object$entries.length; _i++) {
const [code, comment] = _Object$entries[_i];
object[code] = getVfdText(code, comment);
}
return object;
};
//! src/Edittools-delh/modules/core.ts
var edittoolsDelh = () => {
(0, import_ext_gadget.customizeToolbar)(function() {
const self = this;
self.wikiEditor("addToToolbar", {
sections: {
delh: {
type: "toolbar",
label: window.wgULS("结束讨论", "結束討論")
}
}
});
self.wikiEditor("addToToolbar", {
section: "delh",
groups: {
vfd: {}
}
});
self.wikiEditor("addToToolbar", {
section: "delh",
group: "vfd",
tools: {
invalid: {
label: window.wgULS("请求无效", "請求無效"),
type: "select",
list: getList({
ir: window.wgULS("请求无效", "請求無效"),
rep: window.wgULS("重复提出,无效", "重複提出,無效"),
commons: window.wgULS("应在维基共享资源提请", "應在維基共享資源提請"),
ne: window.wgULS("目标页面或文件不存在,无效", "目標頁面或檔案不存在,無效"),
nq: window.wgULS("提删者未取得提删资格,无效", "提刪者未取得提刪資格,無效")
})
},
keep: {
label: "保留",
type: "select",
list: getList({
k: "保留",
sk: "快速保留",
tk: window.wgULS("暂时保留", "暫時保留"),
rr: window.wgULS("请求理由消失", "請求理由消失"),
dan: window.wgULS("删后重建", "刪後重建")
})
},
del: {
label: window.wgULS("删除", "刪除"),
type: "select",
list: getList({
d: window.wgULS("删除", "刪除"),
ifd: window.wgULS("图像因侵权被删", "圖像因侵權被刪")
})
},
speedyDel: {
label: window.wgULS("快速删除", "快速刪除"),
type: "select",
list: getList({
sd: window.wgULS("快速删除", "快速刪除"),
lssd: window.wgULS("无来源或版权资讯,快速删除", "無來源或版權資訊,快速刪除"),
svg: window.wgULS("已改用SVG图形,删除", "已改用SVG圖形,刪除"),
drep: window.wgULS("多次被删除,条目锁定", "多次被刪除,條目鎖定")
})
},
others: {
label: window.wgULS("其他处理方法", "其他處理方法"),
type: "select",
list: getList({
c: window.wgULS("转交侵权", "轉交侵權"),
r: window.wgULS("重定向", "重定向"),
cr: window.wgULS("分类重定向", "分類重定向"),
m: window.wgULS("移动", "移動"),
merge: window.wgULS("并入", "併入"),
nc: window.wgULS("无共识", "無共識")
})
}
}
});
});
};
//! src/Edittools-delh/Edittools-delh.ts
var {
wgPageName
} = mw.config.get();
if (/^qiuwen(?:[_ ]talk)?:存废讨论\//i.test(wgPageName)) {
edittoolsDelh();
}
})();