Content deleted Content added
Polygnotus (talk | contribs) No edit summary |
Polygnotus (talk | contribs) No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1:
//https://en.wikipedia.org/wiki/Wikipedia_talk:Twinkle#Twinkle_feature_request_--_look_for_previous_XfDs
// Add AfD search functionality to Wikipedia
$(document).ready(function() {
Line 50 ⟶ 52:
aplimit: 50,
format: 'json'
}).
var exactMatches = data.query.allpages || [];
Line 61 ⟶ 63:
srlimit: 50,
format: 'json'
}).
var searchMatches = searchData.query.search || [];
Line 84 ⟶ 86:
});
// Get creation dates for all found pages
getAfDDates(allMatches, articleTitle);
} else {
displayAfDResults(allMatches, articleTitle);
}
}).catch(function() {
// If search fails, just show exact matches
displayAfDResults(exactMatches, articleTitle);
});
}).
$('#afd-search-btn').text('Search AfD').css('color', '#0645ad');
mw.notify('Error searching for AfD discussions', { type: 'error' });
Line 95 ⟶ 102:
}
function
var api = new mw.Api();
var pagesWithDates = [];
var mostRecentDate = null;
var mostRecentTimestamp = 0;
var completedRequests = 0;
console.log('Fetching dates for:', pages.map(function(p) { return p.title; }));
// If no pages, just display empty results
if (pages.length === 0) {
displayAfDResults(pages, articleTitle);
return;
}
// Fetch date for each page individually
pages.forEach(function(page) {
api.get({
action: 'query',
format: 'json',
prop: 'revisions',
titles: page.title,
rvlimit: 1,
rvdir: 'newer',
rvprop: 'timestamp'
}).then(function(data) {
var pageData = null;
var hasDate = false;
if (data.query && data.query.pages) {
var pageId = Object.keys(data.query.pages)[0];
pageData = data.query.pages[pageId];
if (pageData && !pageData.missing && pageData.revisions && pageData.revisions.length > 0) {
var timestamp = pageData.revisions[0].timestamp;
var date = new Date(timestamp);
var timestampMs = date.getTime();
console.log('Page:', pageData.title, 'Date:', date.toDateString());
pagesWithDates.push({
title: pageData.title,
date: date,
timestamp: timestampMs
});
// Track most recent
if (timestampMs > mostRecentTimestamp) {
mostRecentTimestamp = timestampMs;
mostRecentDate = date;
}
hasDate = true;
}
}
// If no date found, add page without date
if (!hasDate) {
console.log('No date found for:', page.title);
pagesWithDates.push({
title: page.title,
date: null,
timestamp: 0
});
}
completedRequests++;
// When all requests are complete, display results
if (completedRequests === pages.length) {
// Sort by date (most recent first, pages without dates last)
pagesWithDates.sort(function(a, b) {
if (!a.timestamp && !b.timestamp) return 0;
if (!a.timestamp) return 1;
if (!b.timestamp) return -1;
return b.timestamp - a.timestamp;
});
// Check if most recent is within 3 months
var threeMonthsAgo = new Date();
threeMonthsAgo.setMonth(threeMonthsAgo.getMonth() - 3);
var isRecent = mostRecentDate && mostRecentDate > threeMonthsAgo;
console.log('Most recent date:', mostRecentDate ? mostRecentDate.toDateString() : 'none', 'Is recent:', isRecent);
displayAfDResults(pagesWithDates, articleTitle, mostRecentDate, isRecent);
}
}).catch(function(error) {
console.log('API error for', page.title, ':', error);
// Add page without date on error
pagesWithDates.push({
title: page.title,
date: null,
timestamp: 0
});
completedRequests++;
// When all requests are complete (including errors), display results
if (completedRequests === pages.length) {
displayAfDResults(pagesWithDates, articleTitle, mostRecentDate, false);
}
});
});
}
function displayAfDResults(pages, articleTitle, mostRecentDate, isRecent) {
// Reset button
$('#afd-search-btn').text('Search AfD').css('color', '#0645ad');
Line 116 ⟶ 229:
} else {
var $title = $('<strong>').text('Previous AfD discussions for "' + articleTitle + '":');
// Add warning if recent AfD
if (isRecent && mostRecentDate) {
var $warning = $('<div>')
.css({
'color': '#d33',
'font-weight': 'bold',
'margin': '5px 0',
'padding': '5px',
'background-color': '#fee',
'border': '1px solid #fcc',
'border-radius': '3px'
})
.html('⚠️ <strong>Warning:</strong> Most recent AfD was on ' +
mostRecentDate.toLocaleDateString() + ' (within last 3 months)');
$resultsDiv.append($warning);
}
var $list = $('<ul>').css('margin', '10px 0');
Line 123 ⟶ 254:
.text(page.title);
var $
// Add date if available
if (page.date) {
var dateStr = page.date.toLocaleDateString() + ' (' + getTimeAgo(page.date) + ')';
$listItem.append($('<span>').css('color', '#666').text(' - ' + dateStr));
}
$list.append($listItem);
});
Line 145 ⟶ 284:
// Insert results after the button
$('#afd-search-btn').parent().after($resultsDiv);
}
function getTimeAgo(date) {
var now = new Date();
var diffMs = now - date;
var diffDays = Math.floor(diffMs / (1000 * 60 * 60 * 24));
var diffMonths = Math.floor(diffDays / 30);
var diffYears = Math.floor(diffDays / 365);
if (diffDays < 1) {
return 'today';
} else if (diffDays < 30) {
return diffDays + ' day' + (diffDays === 1 ? '' : 's') + ' ago';
} else if (diffMonths < 12) {
return diffMonths + ' month' + (diffMonths === 1 ? '' : 's') + ' ago';
} else {
return diffYears + ' year' + (diffYears === 1 ? '' : 's') + ' ago';
}
}
|