MCBBS Wiki欢迎您共同参与编辑!在参与编辑之前请先阅读Wiki方针

如果在编辑的过程中遇到了什么问题,可以去讨论板提问。

为了您能够无阻碍地参与编辑 未验证/绑定过邮箱的用户,请尽快绑定/验证

MCBBS Wiki GitHub群组已上线!

您可以在回声洞中发表吐槽!

服务器状态监控。点击进入

本站由MCBBS用户自行搭建,与MCBBS及东银河系漫游指南(北京)科技有限公司没有从属关系。点此了解 MCBBS Wiki 不是什么>>

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

跳到导航 跳到搜索
(// Edit via Wikiplus)
"use strict";
 
(() => {
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
 
(function () {
// src/utils/resource.ts
function addStyleUrl(url, key) {
letvar style = void 0;
if (key && document.getElementById(key) instanceof HTMLLinkElement) {
style = document.getElementById(key);
style.rel = "stylesheet";
style.type = "text/css";
if (key) style.id = key;
style.id = key;
}
if (style.href === url) return;
return;
style.href = url;
document.head.appendChild(style);
}
function addStyle(css) {
constvar style = document.createElement("style");
style.textContent = css;
document.head.appendChild(style);
}
function loadWikiStyle(page, key) {
addStyleUrl(`"https://mcbbs.wiki/index.php?title=${" + page} + "&action=raw&ctype=text/css`", key);
}
 
try {
return JSON.parse(str);
} catch (e) {}
}
}
return null;
}
function unsafeRead(key) {
constvar storage = localStorage.getItem(key);
return parse(storage);
}
function listen(listener, options = { passive: true }) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : { passive: true };
 
window.addEventListener("storage", listener, options);
return function () {
return () => window.removeEventListener("storage", listener, options);
return window.removeEventListener("storage", listener, options);
};
}
function readAndListen(props) {
var key = props.key,
const {
defaultValue = props.defaultValue,
key,
defaultValue listener = props.listener,
_props$callOnChange = props.callOnChange,
listener,
callOnChange = _props$callOnChange === undefined ? true : _props$callOnChange,
_props$options = { passive: true }props.options,
options = _props$options === undefined ? { passive: true } : _props$options;
} = props;
 
let v = unsafeRead(key);
var v = unsafeRead(key);
if (defaultValue !== void 0 && v === null) {
write(key, defaultValue);
v = defaultValue;
}
constvar fn = function fn(ev) => {
if (ev.key !== key || ev.storageArea !== localStorage) return;
var newValue return= parse(ev.newValue);
constvar newValueoldValue = parse(ev.newValueoldValue);
constif oldValue(callOnChange && newValue === parse(ev.oldValue) return;
var encapsulatedEvent = {
if (callOnChange && newValue === oldValue)
return;key: key,
newValue: newValue,
const encapsulatedEvent = {
keyoldValue: oldValue,
newValue,
oldValue,
storageArea: ev.storageArea,
url: ev.url
listener(encapsulatedEvent);
};
constvar off = listen(fn, options);
return [v, off];
}
// src/utils/utils.ts
function clickOutside(el, callback) {
constvar cb = function cb(ev) => {
const {var target } = ev.target;
 
if (!(target instanceof Element))
if (!(target instanceof Element)) return;
if (target === el) return;
var obj return= target.parentElement;
let obj = target.parentElement;
while (obj && obj !== el && obj.parentElement) {
obj = obj.parentElement;
}
if (obj !== el) callback();
callback();
};
window.addEventListener("click", cb, true);
return function () => window.removeEventListener("click", cb);{
return window.removeEventListener("click", cb);
};
}
 
// widget/VectorThemeLoader/SwitchPanel.ts
function createPanel(props, ...innerElements) {
var className = props.className,
const {
_props$position = props.position,
className,
position: { x, y= }_props$position.x,
} y = props_props$position.y;
 
const panel = document.createElement("div");
var panel.className = `salt-panel ${className || document.createElement("div"}`);
panel.className = "salt-panel " + (className || "");
panel.style.position = "absolute";
 
for (const el of innerElements)
for (var _len = arguments.length, innerElements = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
panel.appendChild(el);
innerElements[_key - 1] = arguments[_key];
}
 
var _iteratorNormalCompletion = true;
var _didIteratorError = false;
var _iteratorError = undefined;
 
try {
for (var _iterator = innerElements[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
var el = _step.value;
 
panel.appendChild(el);
}
} catch (err) {
_didIteratorError = true;
_iteratorError = err;
} finally {
try {
if (!_iteratorNormalCompletion && _iterator.return) {
_iterator.return();
}
} finally {
if (_didIteratorError) {
throw _iteratorError;
}
}
}
 
document.body.appendChild(panel);
const {var offsetWidth, offsetHeight } = panel;.offsetWidth,
offsetHeight = panel.offsetHeight;
panel.style.left = `${Math.max(x - offsetWidth / 2, 0)}px`;
 
panel.style.top = `${y + 2}px`;
panel.style.left = Math.max(x - offsetWidth / 2, 0) + "px";
const cancel = clickOutside(panel, () => {
panel.style.top = y + 2 + "px";
var cancel = clickOutside(panel, function () {
console.log("awa");
panel.remove();
 
// widget/VectorThemeLoader/widget.t.scss
var widget_t_default = "\n.salt-panel.style-list {\n padding: 8px 12px;\n border-radius: 4px;\n background-color: var(--lightcolor, #f9f9f9);\n box-shadow: 1px 2px 5px 0 rgba(153, 153, 153, 0.4);\n font-size: 1rem;\n z-index: 9999;\n}\n.salt-panel.style-list, .salt-panel.style-list * {\n box-sizing: border-box;\n}\n.salt-panel.style-list .style-list-item {\n display: block;\n min-width: 196px;\n margin: 4px 0;\n list-style: none;\n overflow: hidden;\n}\n.salt-panel.style-list .style-list-item .theme-list {\n padding: 2px 4px;\n margin: 0;\n overflow: hidden;\n}\n.salt-panel.style-list .style-list-item .theme-list .theme-list-item {\n padding: 4px 8px;\n list-style: none;\n overflow: hidden;\n user-select: none;\n cursor: pointer;\n}\n.salt-panel.style-list .style-list-item .theme-list .theme-list-item:hover {\n background-color: rgba(153, 153, 153, 0.0666666667);\n}\n.salt-panel.style-list .style-list-item .theme-list .theme-list-item:active {\n background-color: rgba(153, 153, 153, 0.2);\n}\n.salt-panel.style-list .style-list-item .theme-list .theme-list-item .theme-list-item-img {\n display: inline-block;\n width: 1rem;\n height: 1rem;\n vertical-align: middle;\n margin-right: 4px;\n}\n.salt-panel.style-list .style-list-item .theme-list .theme-list-item .theme-list-item-name {\n display: inline;\n}";
var widget_t_default = `
.salt-panel.style-list {
padding: 8px 12px;
border-radius: 4px;
background-color: var(--lightcolor, #f9f9f9);
box-shadow: 1px 2px 5px 0 rgba(153, 153, 153, 0.4);
font-size: 1rem;
z-index: 9999;
}
.salt-panel.style-list, .salt-panel.style-list * {
box-sizing: border-box;
}
.salt-panel.style-list .style-list-item {
display: block;
min-width: 196px;
margin: 4px 0;
list-style: none;
overflow: hidden;
}
.salt-panel.style-list .style-list-item .theme-list {
padding: 2px 4px;
margin: 0;
overflow: hidden;
}
.salt-panel.style-list .style-list-item .theme-list .theme-list-item {
padding: 4px 8px;
list-style: none;
overflow: hidden;
user-select: none;
cursor: pointer;
}
.salt-panel.style-list .style-list-item .theme-list .theme-list-item:hover {
background-color: rgba(153, 153, 153, 0.0666666667);
}
.salt-panel.style-list .style-list-item .theme-list .theme-list-item:active {
background-color: rgba(153, 153, 153, 0.2);
}
.salt-panel.style-list .style-list-item .theme-list .theme-list-item .theme-list-item-img {
display: inline-block;
width: 1rem;
height: 1rem;
vertical-align: middle;
margin-right: 4px;
}
.salt-panel.style-list .style-list-item .theme-list .theme-list-item .theme-list-item-name {
display: inline;
}`;
 
// widget/VectorThemeLoader/widget.ts
var styleKey = isLegacy ? "mcbbs-wiki-skin-vector-legacy-style" : "mcbbs-wiki-skin-vector-style";
var themeKey = isLegacy ? "mcbbs-wiki-skin-vector-legacy-theme" : "mcbbs-wiki-skin-vector-theme";
var loadThemeStyle = function loadThemeStyle(style, theme) => {
constvar styleMap = themeMap[style] || themeMap[defaultStyle];
constvar currentCommonStyle = styleMap.common;
if (currentCommonStyle) loadWikiStyle(currentCommonStyle, "salt-wiki-style-common");
var currentTheme = theme === "default" || !styleMap.other[theme] ? styleMap.default : styleMap.other[theme];
loadWikiStyle(currentCommonStyle, "salt-wiki-style-common");
const currentTheme = theme === "default" || !styleMap.other[theme] ? styleMap.default : styleMap.other[theme];
loadWikiStyle(currentTheme.css, "salt-wiki-style-theme");
};
var initTheme = function initTheme() => {
constvar current = { style: defaultStyle, theme: "default" };
 
const [style] = readAndListen({
var _readAndListen = readAndListen({
key: styleKey,
defaultValue: defaultStyle,
listener: function listener(ev) => {
if (ev.newValue) {
current.style = ev.newValue;
}
}
});,
_readAndListen2 = _slicedToArray(_readAndListen, 1),
const [theme] = readAndListen({
style = _readAndListen2[0];
 
var _readAndListen3 = readAndListen({
key: themeKey,
defaultValue: "default",
listener: function listener(ev) => {
if (ev.newValue) {
current.theme = ev.newValue;
}
}
});,
_readAndListen4 = _slicedToArray(_readAndListen3, 1),
theme = _readAndListen4[0];
 
current.style = style;
current.theme = theme;
constvar loadCurrentTheme = function loadCurrentTheme() => {
const { style:var style2, theme: theme2 } = current;.style,
theme2 = current.theme;
 
loadThemeStyle(style2, theme2);
};
};
initTheme();
var handleSwitchBtn = function handleSwitchBtn(ev) => {
constvar { top, left }_$$offset = $(btn).offset();,
top = _$$offset.top,
left = _$$offset.left;
 
console.log(ev);
constvar innerElements = [];
constvar createThemeSwitch = function createThemeSwitch(style, themeCode, theme) => {
const {var name, img: imgSrc } = theme;.name,
const handleClick = () imgSrc => {theme.img;
 
var handleClick = function handleClick() {
write(styleKey, style);
write(themeKey, themeCode);
loadThemeStyle(style, themeCode);
};
constvar li2 = document.createElement("li");
li2.className = "theme-list-item";
li2.addEventListener("click", handleClick);
if (imgSrc) {
constvar img = document.createElement("img");
img.src = imgSrc;
img.className = "theme-list-item-img";
li2.appendChild(img);
}
constvar div = document.createElement("div");
div.textContent = name;
div.className = "theme-list-item-name";
return li2;
};
for (constvar style in themeMap) {
constvar li2 = document.createElement("li");
li2.className = "style-list-item";
constvar title = document.createElement("div");
title.className = "style-list-item-title";
title.textContent = themeMap[style].name;
constvar ul = document.createElement("ul");
ul.className = "theme-list";
constvar themeList = [];
constvar defaultTheme = themeMap[style].default;
themeList.push(createThemeSwitch(style, "default", defaultTheme));
for (constvar themeCode in themeMap[style].other) {
themeList.push(createThemeSwitch(style, themeCode, themeMap[style].other[themeCode]));
}
var _iteratorNormalCompletion2 = true;
for (const el of themeList)
var _didIteratorError2 = false;
ul.appendChild(el);
var _iteratorError2 = undefined;
 
try {
for (var _iterator2 = themeList[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
var el = _step2.value;
 
ul.appendChild(el);
}
} catch (err) {
_didIteratorError2 = true;
_iteratorError2 = err;
} finally {
try {
if (!_iteratorNormalCompletion2 && _iterator2.return) {
_iterator2.return();
}
} finally {
if (_didIteratorError2) {
throw _iteratorError2;
}
}
}
 
li2.appendChild(title);
li2.appendChild(ul);
innerElements.push(li2);
}
createPanel.apply(undefined, [{
className: "style-list",
position: { x: left, y: top + btn.offsetHeight }
}, ..].concat(innerElements));
};
var headLogoutBtn = document.getElementById("pt-logout");
var btn = document.createElement("a");
btn.textContent = "切换主题";
btn.title = "切换主题";
btn.onclick = handleSwitchBtn;
var li = document.createElement("li");