User:Euphoria/common.js: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
fix Tag: Reverted |
fix Tag: Reverted |
||
| Line 36: | Line 36: | ||
function handleAction(targetPage, actionName) { |
function handleAction(targetPage, actionName) { |
||
apiHelper.fetch(currentPage, discussionContent => { |
apiHelper.fetch(currentPage, discussionContent => { |
||
// Prompt user for an optional comment |
|||
const userComment = prompt('Add an additional comment (optional):', ''); |
const userComment = prompt('Add an additional comment (optional):', ''); |
||
const commentText = userComment ? ` ${userComment}` : ''; |
const commentText = userComment ? ` ${userComment}` : ''; |
||
const newDiscussion = `{{subst:vt|${actionName}.${commentText} --~~~~}}\n${discussionContent}\n{{subst:vb}}`; |
const newDiscussion = `{{subst:vt|${actionName}.${commentText} --~~~~}}\n${discussionContent}\n{{subst:vb}}`; |
||
| Line 94: | Line 92: | ||
let targetPage = null; |
let targetPage = null; |
||
// If we're on the main VfD page, always close the subpage link |
|||
if (currentPage === pagePrefix) { |
if (currentPage === pagePrefix) { |
||
// On main page: extract the subpage from transclusion text |
|||
const link = $(heading).find('a').first().attr('title'); |
|||
const headingText = $(heading).text().trim(); |
|||
const match = headingText.match(/Wikiquote:Votes for deletion\/.+/); |
|||
| ⚫ | |||
if (match) { |
|||
| ⚫ | |||
} |
} |
||
} else { |
} else { |
||
// On subpage: close itself |
|||
targetPage = defaultTargetPage; |
|||
} |
} |
||
| Line 157: | Line 157: | ||
if (!confirm(`Are you sure you want to close as ${actionObj.name}?`)) return; |
if (!confirm(`Are you sure you want to close as ${actionObj.name}?`)) return; |
||
// Disable all buttons under this heading |
|||
$(heading).find('.vfd-action-link').each((i, b) => { |
$(heading).find('.vfd-action-link').each((i, b) => { |
||
b.style.opacity = '0.5'; |
b.style.opacity = '0.5'; |
||
Revision as of 16:48, 2 October 2025
//<nowiki>
mw.loader.using(['mediawiki.util', 'mediawiki.api'], function () {
const pagePrefix = 'User:Euphoria/Test VfD';
const currentPage = mw.config.get('wgPageName').replace(/_/g, ' ');
// Allow main VfD page AND subpages, block everything else
if (!(currentPage === pagePrefix || currentPage.startsWith(pagePrefix + '/'))
|| mw.config.get('wgAction') !== 'view') return;
const api = new mw.Api();
// API helper functions
const apiHelper = {
edit(title, content, summary, callback) {
api.postWithToken('csrf', { action: 'edit', title, text: content, summary, minor: true })
.done(callback)
.fail(err => mw.notify(`Error editing "${title}": ${JSON.stringify(err)}`, { title: 'VfDcloser', type: 'error', timeout: 1500 }));
},
delete(title, reason, callback) {
api.postWithToken('csrf', { action: 'delete', title, reason })
.done(callback)
.fail(err => mw.notify(`Error deleting "${title}": ${JSON.stringify(err)}`, { title: 'VfDcloser', type: 'error', timeout: 1500 }));
},
fetch(title, callback) {
api.get({ action: 'query', prop: 'revisions', titles: title, rvslots: 'main', rvprop: 'content', format: 'json' })
.done(data => {
const pages = data.query.pages;
const pageId = Object.keys(pages)[0];
const content = (pageId !== '-1' && pages[pageId].revisions) ? pages[pageId].revisions[0].slots.main['*'] : '';
callback(content.trim());
});
}
};
// Handle VfD action for a target page
function handleAction(targetPage, actionName) {
apiHelper.fetch(currentPage, discussionContent => {
const userComment = prompt('Add an additional comment (optional):', '');
const commentText = userComment ? ` ${userComment}` : '';
const newDiscussion = `{{subst:vt|${actionName}.${commentText} --~~~~}}\n${discussionContent}\n{{subst:vb}}`;
apiHelper.edit(currentPage, newDiscussion, `Closed as ${actionName} ([[User:Euphoria/VfDcloser|VfDcloser]])`, () => {
if (actionName === 'delete') {
deletePageAndTalk(targetPage);
} else {
keepOrNoConsensus(targetPage, actionName);
}
});
});
}
function deletePageAndTalk(title) {
apiHelper.delete(title, `[[${currentPage}]] ([[User:Euphoria/VfDcloser|VfDcloser]])`, () => {
apiHelper.fetch('Talk:' + title, talkContent => {
if (talkContent) {
apiHelper.delete('Talk:' + title, 'Parent page deleted via VfD ([[User:Euphoria/VfDcloser|VfDcloser]])', () => {
notifyAndReload('Discussion closed. Page and talk page deleted.');
});
} else {
notifyAndReload('Discussion closed. Page deleted.');
}
});
});
}
function keepOrNoConsensus(title, actionName) {
apiHelper.fetch(title, content => {
const updatedContent = content.replace(/\{\{vfd-new\}\}/gi, '').trim();
apiHelper.edit(title, updatedContent, `VFD closed as ${actionName} ([[User:Euphoria/VfDcloser|VfDcloser]])`, () => {
updateTalkPage(title, actionName);
});
});
}
function updateTalkPage(title, actionName) {
const talkTemplate = '{{vfd-kept-new}}';
apiHelper.fetch('Talk:' + title, talkContent => {
const updatedTalk = talkContent ? `${talkTemplate}\n${talkContent}` : talkTemplate;
apiHelper.edit('Talk:' + title, updatedTalk, `VFD closed as ${actionName} ([[User:Euphoria/VfDcloser|VfDcloser]])`, () => {
notifyAndReload('Discussion closed. Page and talk page updated.');
});
});
}
function notifyAndReload(message) {
mw.notify(message, { title: 'VfDcloser', type: 'success', timeout: 1500 });
setTimeout(() => location.reload(), 1500);
}
// Create UI buttons for each heading
function createButtonsForHeading(heading, defaultTargetPage) {
let targetPage = null;
if (currentPage === pagePrefix) {
// On main page: extract the subpage from transclusion text
const headingText = $(heading).text().trim();
const match = headingText.match(/Wikiquote:Votes for deletion\/.+/);
if (match) {
targetPage = match[0]; // close this subpage
}
} else {
// On subpage: close itself
targetPage = defaultTargetPage;
}
if (!targetPage) return;
const container = document.createElement('span');
container.style.marginLeft = '6px';
const actions = [
{ name: 'delete', color: '#e74c3c', symbol: '✖' },
{ name: 'keep', color: '#27ae60', symbol: '✔' },
{ name: 'no consensus', color: '#f1c40f', symbol: '⚖' }
];
actions.forEach(actionObj => {
const btn = document.createElement('a');
btn.href = '#';
btn.textContent = actionObj.symbol;
btn.title = 'Close as ' + actionObj.name;
btn.className = 'vfd-action-link';
btn.dataset.disabled = 'false';
Object.assign(btn.style, {
display: 'inline-block',
width: '18px',
height: '18px',
textAlign: 'center',
lineHeight: '18px',
fontSize: '12px',
fontWeight: 'bold',
borderRadius: '2px',
backgroundColor: actionObj.color,
color: '#fff',
marginRight: '4px',
textDecoration: 'none',
cursor: 'pointer',
transition: '0.15s'
});
btn.addEventListener('mouseenter', () => {
if (btn.dataset.disabled === 'true') return;
btn.style.filter = 'brightness(1.3)';
btn.style.transform = 'scale(1.2)';
});
btn.addEventListener('mouseleave', () => {
if (btn.dataset.disabled === 'true') return;
btn.style.filter = 'brightness(1)';
btn.style.transform = 'scale(1)';
});
btn.addEventListener('click', e => {
e.preventDefault();
if (btn.dataset.disabled === 'true') return;
if (!confirm(`Are you sure you want to close as ${actionObj.name}?`)) return;
$(heading).find('.vfd-action-link').each((i, b) => {
b.style.opacity = '0.5';
b.style.cursor = 'not-allowed';
b.dataset.disabled = 'true';
b.style.filter = 'brightness(1)';
b.style.transform = 'scale(1)';
});
handleAction(targetPage, actionObj.name);
});
container.appendChild(btn);
});
heading.appendChild(container);
}
// Initialize buttons on page load
$(function () {
const categories = mw.config.get('wgCategories') || [];
if (categories.includes('VfD archive entries')) return;
$('#mw-content-text').find('h2').each(function () {
const headingText = $(this).text().trim();
if (!headingText) return;
createButtonsForHeading(this, headingText);
});
});
});
//</nowiki>