MediaWiki:Gadget-watchlist.js: различия между версиями
Перейти к навигации
Перейти к поиску
Содержимое удалено Содержимое добавлено
при сортировке страница и обсуждение группируются вместе; теперь автономный скрипт, без вызова en:user:Alex Smotrov/wlunwatch.js |
Используем контекст из аргумента хука "wikipage.content" для поиска списка изменений |
||
(не показана 71 промежуточная версия 4 участников) | |||
Строка 1: | Строка 1: | ||
(function () { |
|||
var wList = new function(){ //wrapper object |
|||
var firstRun = true; |
|||
var whenPageLoaded = +(new Date()) - 30000 //add 30 sec just in case |
|||
var namespace, content, mw |
|||
if (mw.config.get('wgCanonicalSpecialPageName') === 'Watchlist') { |
|||
mw = { |
|||
// Polyfill |
|||
sort:'Сортировать...', |
|||
if (!String.prototype.includes) { |
|||
sortTitle:'Сортировать изменения по чётному пространству, затем по названию страницы', |
|||
String.prototype.includes = function (search, start) { |
|||
sortDone:'Изменения уже отсортированы', |
|||
'use strict'; |
|||
unwatchTitle:'Добавить (x) ссылки для уборки страниц из списка наблюдения', |
|||
if (typeof start !== 'number') { |
|||
unwatchDone:'Для удаления страниц из списка наблюдения используйте появившиеся ссылки (x)', |
|||
start = 0; |
|||
onlynew:'Только новые', |
|||
} |
|||
onlynewTitle: 'Показать изменения с момента загрузки этой страницы' |
|||
} |
|||
if (start + search.length > this.length) { |
|||
return false; |
|||
} else { |
|||
return this.indexOf(search, start) !== -1; |
|||
} |
|||
}; |
|||
} |
|||
var SECONDS_IN_A_DAY = 1000 * 60 * 60 * 24; |
|||
var whenPageLoadedOrUpdated; |
|||
var hideInterfaceCSS, rvOffCSS; |
|||
var sortingDone, allStarsShown, hoverOnTitlesDone; |
|||
// ruwiki strings |
|||
var strings = { |
|||
watch: 'Следить', |
|||
unwatch: 'Не следить', |
|||
sortTip: 'Сортировать изменения по пространствам имён', |
|||
sortDone: 'Изменения уже отсортированы', |
|||
unwatchTip: 'Добавить/убрать звёздочки для вычёркивания страниц из списка наблюдения', |
|||
newOnly: 'Только новые', |
|||
newOnlyTip: 'Изменения с момента загрузки этой страницы', |
|||
watchlistTabNewOnlyTip: 'По клику откроются изменения с момента загрузки этой страницы', |
|||
all: 'Все', |
|||
allTip: 'Все изменения', |
|||
expandAll: 'Показать/спрятать все свёрнутые правки', |
|||
switchRevert: 'Спрятать/показать ссылки «откатить»', |
|||
fullPage: 'Спрятать/показать элементы интерфейса', |
|||
error: 'Ошибка', |
|||
unrecognizedReponse: 'ответ не распознан' |
|||
}; |
|||
mw.hook('wikipage.content').add(function ($content) { |
|||
function main() { |
|||
/* FUNCTIONS */ |
|||
function addLink(contents, tip, classes, href) { |
|||
return $('<a>') |
|||
.attr('href', href || 'javascript:') |
|||
.attr('title', tip) |
|||
.addClass(classes) |
|||
.append(contents) |
|||
.appendTo($linksIn); |
|||
} |
|||
function generateNewEntriesOnlyUrl() { |
|||
var uri = new mw.Uri(); |
|||
uri.query.from = whenPageLoadedOrUpdated; |
|||
delete uri.query.days; |
|||
return uri.toString(); |
|||
} |
|||
function generateAllEntriesUrl() { |
|||
var uri = new mw.Uri(); |
|||
delete uri.query.from; |
|||
return uri.toString(); |
|||
} |
|||
function newEntriesOnly(e) { |
|||
e.target.href = generateNewEntriesOnlyUrl(); |
|||
} |
|||
function allEntries(e) { |
|||
e.target.href = generateAllEntriesUrl(); |
|||
} |
|||
function showAllStars(e) { |
|||
if (e) { |
|||
e.preventDefault(); |
|||
} |
|||
// cookie set = stars are on |
|||
if (!allStarsShown) { |
|||
$changeslist.find('.mw-title') |
|||
.each(function (i, link) { |
|||
updateStar(getRow($(this))); |
|||
}); |
|||
if (e) { |
|||
var cookieDate = new Date($.now() + SECONDS_IN_A_DAY * 90).toGMTString(); |
|||
document.cookie = 'wlunw=1; expires=' + cookieDate + '; path=/'; |
|||
} |
|||
allStarsShown = true; |
|||
} else { // otherwise remove |
|||
$changeslist.find('.gadgetWatchlist-unwatchLink').remove(); |
|||
document.cookie = 'wlunw=0; expires=' + (new Date()).toGMTString() + '; path=/'; |
|||
if (!hoverOnTitlesDone) { |
|||
bindHoverOnTitles(); |
|||
} |
|||
allStarsShown = false; |
|||
} |
|||
} |
|||
function sortWatchlist(e) { |
|||
e.preventDefault(); |
|||
if (sortingDone) { |
|||
alert(strings.sortDone); |
|||
return; |
|||
} |
|||
$changeslist.find('h4').each(function () { // sort all days separately |
|||
var $container = $(this).next('div, ul'); |
|||
var $rows = $container.children('li, table'); |
|||
// create sorting keys |
|||
var key; |
|||
$rows.each(function (i) { |
|||
// use built-in class: either li.watchlist-5-<title> or |
|||
// table.mw-changeslist-ns100-<title> in enhanced recent changes |
|||
key = /(\d+)-(\S+)/.exec(this.className) || ['', 0, ' ']; // logs might not have this class |
|||
if (key[1] % 2) { |
|||
key[1]--; // sort talk page as if it was a base page |
|||
} |
|||
if (window.watchlistSortNamespaceOnly) { |
|||
key[2] = zzz(i); // keep timestamp order within each NS block |
|||
} |
|||
this.skey = zzz(key[1]) + ':' + key[2]; |
|||
}); |
|||
// sort array and then HTML |
|||
$rows.sort(function (a, b) { |
|||
return a.skey > b.skey ? 1 : (a.skey < b.skey ? -1 : 0); |
|||
}); |
|||
for (i = 0; i < $rows.length; i++) { |
|||
$container.append($rows.eq(i)); |
|||
} |
|||
}); |
|||
$('.mw-rcfilters-ui-changesListWrapperWidget-previousChangesIndicator').remove(); |
|||
sortingDone = true; |
|||
} |
|||
function expandMultipleEdits(e) { |
|||
e.preventDefault(); |
|||
var $collapsibles = $('.mw-changeslist .mw-collapsible:not(.mw-changeslist-legend)'); |
|||
// If at lease one branch is collapsed, we expand everything. |
|||
$collapsibles |
|||
[$collapsibles.hasClass('mw-collapsed') ? 'filter' : 'not']('.mw-collapsed') |
|||
.find('.mw-enhancedchanges-arrow') |
|||
.click(); |
|||
} |
|||
function switchRevert(e) { |
|||
if (e) { |
|||
e.preventDefault(); |
|||
} |
|||
if (!rvOffCSS) { |
|||
rvOffCSS = mw.util.addCSS('\ |
|||
.mw-rollback-link {\ |
|||
display: none;\ |
|||
}\ |
|||
'); |
|||
} else { |
|||
rvOffCSS.disabled = !rvOffCSS.disabled; |
|||
} |
|||
if (rvOffCSS.disabled) { |
|||
document.cookie = 'wlrvoff=0; expires=' + (new Date()).toGMTString() + '; path=/'; |
|||
} else if (e) { |
|||
var cookieDate = (new Date($.now() + SECONDS_IN_A_DAY * 90)).toGMTString(); |
|||
document.cookie = 'wlrvoff=1; expires=' + cookieDate + '; path=/'; |
|||
} |
|||
} |
|||
function bindHoverOnTitles() { // find all title links and assign hover event |
|||
if (hoverOnTitlesDone) return; |
|||
$changeslist.find('.mw-title') |
|||
.each(function () { |
|||
getRow($(this)) |
|||
.find('.mw-title') |
|||
.children('a') |
|||
.hover(hoverOnTitle); |
|||
}); |
|||
hoverOnTitlesDone = true; |
|||
} |
|||
function hoverOnTitle(e) { // on hover: add "unwatch" star after 1 second |
|||
var $link = $(this); |
|||
if (e.type === 'mouseenter') { |
|||
$link.data('unwatchTimeout', setTimeout(function () { |
|||
showStarOnHover($link); |
|||
}, 1000)); |
|||
} else { |
|||
clearTimeout($link.data('unwatchTimeout')); |
|||
} |
|||
} |
|||
function showStarOnHover($link) { |
|||
var $row = getRow($link); |
|||
updateStar($row); |
|||
// attach mouseleave to remove the star |
|||
if ($row.data('leaveAssigned')) return; |
|||
$row.data('leaveAssigned', true); |
|||
$row.mouseleave(function (e) { |
|||
var $unwatchLink = $(this).find('.gadgetWatchlist-unwatchLink'); |
|||
if ($unwatchLink.length && |
|||
!($unwatchLink.hasClass('gadgetWatchlist-failure') || |
|||
$unwatchLink.hasClass('gadgetWatchlist-waiting') |
|||
) && |
|||
!allStarsShown |
|||
) { |
|||
$unwatchLink.remove(); |
|||
} |
|||
}); |
|||
} |
|||
function updateStar($row) { |
|||
var action = $row.hasClass('gadgetWatchlist-unwatchedRow') ? 'watch' : 'unwatch'; |
|||
var $star = $row.find('.gadgetWatchlist-unwatchLink, .gadgetWatchlist-watchLink'); |
|||
if (!$star.length) { // create |
|||
var $link = $row.find('.mw-title').children('a'); |
|||
if (!$link.length) return; |
|||
$star = $('<a>') |
|||
.attr('href', $link.attr('href').replace(/\/wiki\//, '/ruwiki/w/index.php?title=') + '&action=' + |
|||
action) |
|||
.addClass('gadgetWatchlist-' + action + 'Link gadgetWatchlist-icon') |
|||
.click(changeWatchState) |
|||
.insertBefore($link); |
|||
} else { // update |
|||
$star |
|||
.attr('href', $star |
|||
.attr('href') |
|||
.replace(/&action=\w+/, '&action=' + action)) |
|||
.removeClass('gadgetWatchlist-' + (action === 'unwatch' ? 'watch' : 'unwatch') + 'Link') |
|||
.addClass('gadgetWatchlist-' + action + 'Link'); |
|||
} |
|||
$star.attr('title', mw.messages.get(action) || strings[action]); |
|||
} |
|||
function getRow($el) { |
|||
return $el.closest(isEnhanced ? 'tr' : 'li'); |
|||
} |
|||
function changeWatchState(e) { |
|||
var $star = $(this), errorMsg = ''; |
|||
var action; |
|||
var unwatch; |
|||
if ($star.attr('href').includes('&action=unwatch')) { |
|||
unwatch = ''; |
|||
action = 'unwatch'; |
|||
} else { |
|||
action = 'watch'; |
|||
} |
|||
var titles = getLinkTitle($star); |
|||
$star |
|||
.removeClass('gadgetWatchlist-failure') |
|||
.addClass('gadgetWatchlist-waiting'); |
|||
new mw.Api().postWithToken('watch', { |
|||
action: 'watch', |
|||
titles: titles, |
|||
unwatch: unwatch, |
|||
formatversion: 2, |
|||
}).then( |
|||
function (resp) { |
|||
if (!resp.watch || !resp.watch[0]) { |
|||
errorMsg = 'empty response'; |
|||
} else if (typeof resp.watch[0].unwatched === 'boolean') { |
|||
changeWatchStateSuccess(titles, true); |
|||
} else if (typeof resp.watch[0].watched === 'boolean') { |
|||
changeWatchStateSuccess(titles, false); |
|||
} else { |
|||
errorMsg = strings.unrecognizedReponse; |
|||
} |
|||
}, |
|||
function (code, data) { |
|||
var errorMsg = ( |
|||
// HTTP error |
|||
data.textStatus || |
|||
// API error |
|||
if (wgUserLanguage!='ru') |
|||
(data.error && data.error.info) |
|||
mw = { |
|||
); |
|||
sort:'Sort...', |
|||
if (errorMsg) { |
|||
sortTitle:'Sort titles by even namespace number, then by page title', |
|||
errorMsg += ' (' + code + ')'; |
|||
sortDone:'Watchlist changes already sorted', |
|||
} else { |
|||
unwatchTitle:'Add (x) quick unwatch links', |
|||
errorMsg = code; |
|||
unwatchDone:'Use (x) links to quickly unwatch pages', |
|||
} |
|||
onlynew: 'Only new', |
|||
} |
|||
onlynewTitle: 'Show changes since this page was loaded' |
|||
).always(function () { // update unwatch link |
|||
$star.removeClass('gadgetWatchlist-waiting'); |
|||
if (errorMsg) { |
|||
$star |
|||
.attr('title', strings.error + ': ' + errorMsg) |
|||
.addClass('gadgetWatchlist-failure gadgetWatchlist-' + action + 'Link'); |
|||
} |
|||
}); |
|||
e.preventDefault(); |
|||
} |
|||
function changeWatchStateSuccess(name, isUnwatched) { |
|||
// find full name of associated talk page (or vice versa) |
|||
var ns = getTitleNamespace(name); |
|||
var name2 = name; |
|||
if (ns > 0) { |
|||
name2 = name2.replace(/^.+?:/, ''); // remove old prefix |
|||
} |
|||
ns = ns % 2 ? ns - 1 : ns + 1; // switch to associated namespace |
|||
if (ns > 0) { |
|||
name2 = mw.config.get('wgFormattedNamespaces')[ns] + ':' + name2; // add new prefix |
|||
} |
|||
// mark all rows that are either name or name2 |
|||
$changeslist.find('.mw-changeslist-title').each(function () { |
|||
var title = getLinkTitle($(this)); |
|||
if (title !== name && title !== name2) return; |
|||
var $row = getRow($(this)); |
|||
$row.toggleClass('gadgetWatchlist-unwatchedRow', isUnwatched); |
|||
if (!isUnwatched && !allStarsShown) { |
|||
$row.find('.gadgetWatchlist-watchLink').remove(); |
|||
} else { |
|||
updateStar($row); |
|||
} |
|||
}); |
|||
} |
|||
function hideInterface(e) { |
|||
if (e) { |
|||
e.preventDefault(); |
|||
} |
|||
var hideInterfaceCSSCode = '\ |
|||
#firstHeading,\ |
|||
div#siteNotice,\ |
|||
#contentSub,\ |
|||
.mw-wlheader-showupdated,\ |
|||
fieldset#mw-watchlist-options,\ |
|||
div.mw-rc-label-legend,\ |
|||
#mw-fr-watchlist-pending-notice,\ |
|||
.mw-indicators,\ |
|||
.mw-rcfilters-ui-filterTagMultiselectWidget,\ |
|||
.mw-rcfilters-ui-watchlistTopSectionWidget-savedLinksTable,\ |
|||
.mw-rcfilters-ui-watchlistTopSectionWidget-editWatchlistButton,\ |
|||
.mw-rcfilters-ui-watchlistTopSectionWidget-separator {\ |
|||
display: none;\ |
|||
}\ |
|||
\ |
|||
.client-js .mw-special-Watchlist .rcfilters-head.rcfilters-head {\ |
|||
min-height: auto;\ |
|||
}\ |
|||
'; |
|||
if (!hideInterfaceCSS) { |
|||
// If the new filters are on, wait until the interface is initialized. |
|||
if (!mw.user.options.get('wlenhancedfilters-disable')) { |
|||
hideInterfaceCSS = mw.util.addCSS(hideInterfaceCSSCode); |
|||
$('.mw-rcfilters-ui-markSeenButtonWidget') |
|||
.wrap('<div>') |
|||
.parent() |
|||
.addClass('mw-rcfilters-ui-markSeenButtonWidget-container') |
|||
.appendTo('.mw-rcfilters-ui-watchlistTopSectionWidget-watchlistDetails'); |
|||
} else { |
|||
hideInterfaceCSS = mw.util.addCSS(hideInterfaceCSSCode); |
|||
} |
|||
} else { |
|||
hideInterfaceCSS.disabled = !hideInterfaceCSS.disabled; |
|||
if (!mw.user.options.get('wlenhancedfilters-disable')) { |
|||
$('.mw-rcfilters-ui-markSeenButtonWidget-container') |
|||
.appendTo(hideInterfaceCSS.disabled ? |
|||
'.mw-rcfilters-ui-watchlistTopSectionWidget-savedLinksTable .mw-rcfilters-ui-cell:first-child' : |
|||
'.mw-rcfilters-ui-watchlistTopSectionWidget-watchlistDetails'); |
|||
} |
|||
} |
|||
if (e) { |
|||
if (!hideInterfaceCSS.disabled) { |
|||
var cookieDate = new Date($.now() + SECONDS_IN_A_DAY * 90).toGMTString(); |
|||
document.cookie = 'wlmax=1; expires=' + cookieDate + '; path=/'; |
|||
} else { |
|||
document.cookie = 'wlmax=0; expires=' + (new Date()).toGMTString() + '; path=/'; |
|||
} |
|||
} |
|||
} |
|||
function getTitleNamespace(title) { // returns namespace number |
|||
var prefix = /^(.+?):/.exec(title); |
|||
if (!prefix) { |
|||
return 0; // no prefix means article |
|||
} |
|||
return mw.config.get('wgNamespaceIds')[ prefix[1].toLowerCase().replace(/ /g, '_') ] || 0; |
|||
} |
|||
function getLinkTitle($link) { // gets title for unwatch/watch links & common page links |
|||
// Titles can be absent for .mw-changeslist-title elements because of Popups extension. |
|||
var title = $link.filter('.mw-changeslist-title').attr('title'); |
|||
if (!title) { |
|||
title = mw.util.getParamValue('title', $link.attr('href')); |
|||
title = title && title.replace(/_/g, ' '); |
|||
} |
|||
if (!title) { |
|||
title = $link.filter('.mw-changeslist-title').text(); |
|||
} |
|||
return title; |
|||
} |
|||
function zzz(s) { // 5 -> 005 |
|||
s = s.toString(); |
|||
if (s.length === 1) { |
|||
return '00' + s; |
|||
} else if (s.length === 2) { |
|||
return '0' + s; |
|||
} else { |
|||
return s; |
|||
} |
|||
} |
|||
function zeroPad(n, p) { |
|||
return ('0000' + n).slice(-p); |
|||
} |
|||
function generateTimestamp(date) { |
|||
return ( |
|||
zeroPad(date.getUTCFullYear(), 4) + |
|||
zeroPad(date.getUTCMonth() + 1, 2) + |
|||
zeroPad(date.getUTCDate(), 2) + |
|||
zeroPad(date.getUTCHours(), 2) + |
|||
zeroPad(date.getUTCMinutes(), 2) + |
|||
zeroPad(date.getUTCSeconds(), 2) |
|||
); |
|||
} |
|||
/* MAIN BLOCK */ |
|||
// add 5–20 seconds just in case (for example, the scripting could take too much) |
|||
whenPageLoadedOrUpdated = generateTimestamp(new Date(new Date().getTime() - (firstRun ? 20000 : 5000))); |
|||
sortingDone = false; |
|||
allStarsShown = false; |
|||
hoverOnTitlesDone = false; |
|||
// UNWATCH LINKS |
|||
// on every line |
|||
if (document.cookie.includes('wlunw=1')) { |
|||
showAllStars(); |
|||
} else { |
|||
bindHoverOnTitles(); // mouseover on title |
|||
} |
|||
if (firstRun) { |
|||
if (document.cookie.includes('wlrvoff=1')) { |
|||
switchRevert(); |
|||
} |
|||
// find insertion point for links |
|||
$linksIn = $('<div>') |
|||
.addClass('mw-rcfilters-ui-cell gadgetWatchlist-linksContainer') |
|||
.insertBefore($( |
|||
!mw.user.options.get('wlenhancedfilters-disable') ? |
|||
'.mw-rcfilters-ui-watchlistTopSectionWidget-savedLinks' : |
|||
'.wlinfo' |
|||
)); |
|||
// "show all stars" link |
|||
addLink('', strings.unwatchTip, 'gadgetWatchlist-icon gadgetWatchlist-icon-unwatched') |
|||
.click(showAllStars); |
|||
// FUNCTION LINKS |
|||
// "sort" link |
|||
addLink('↑↓', strings.sortTip).click(sortWatchlist); |
|||
// "expand all" link |
|||
// Auto-update could be used, so even if there is no $('.mw-enhancedchanges-arrow') elements, we keep |
|||
// the button. |
|||
if (isEnhanced) { |
|||
addLink('±', strings.expandAll).click(expandMultipleEdits); |
|||
} |
|||
// "switch revert" link |
|||
if (mw.config.get('wgUserGroups').indexOf('rollbacker') !== -1 || |
|||
mw.config.get('wgUserGroups').indexOf('sysop') !== -1 |
|||
) { |
|||
addLink('⎌', strings.switchRevert).click(switchRevert); |
|||
} |
|||
// "new only" link |
|||
addLink(strings.newOnly, strings.newOnlyTip, undefined, generateNewEntriesOnlyUrl()) |
|||
.mousedown(newEntriesOnly); |
|||
if (mw.util.getParamValue('from') !== null) { |
|||
// "all" link |
|||
addLink(strings.all, strings.allTip, undefined, generateAllEntriesUrl()).mousedown(allEntries); |
|||
} |
|||
// TABS |
|||
if (!window.wlNoTabs) { |
|||
var $mainTab = $('#ca-nstab-special').first(); // "Special" tab |
|||
// change main tab into "watchlist Δ" |
|||
var watchlistTitle = $.trim($('#firstHeading').text()); |
|||
$mainTab |
|||
.find('a') // replace "Special" with "Watchlist" as tab text |
|||
.text(watchlistTitle + ' △') // Δ is good but monobook makes is lowercase |
|||
.attr('title', strings.watchlistTabNewOnlyTip) |
|||
.attr('href', generateNewEntriesOnlyUrl()) |
|||
.on('mousedown keydown', newEntriesOnly); |
|||
// add "hideInterface" tab |
|||
$mainTab |
|||
.clone(true) |
|||
.attr('id', '') |
|||
.attr('href', '') |
|||
.removeClass('selected') |
|||
.click(hideInterface) |
|||
.appendTo($mainTab.parent()) |
|||
.find('a') |
|||
.text('↸') |
|||
.attr('title', strings.fullPage) |
|||
.attr('accesskey', ''); |
|||
} |
|||
// OTHER TASKS |
|||
if (document.cookie.includes('wlmax=1')) { |
|||
hideInterface(); |
|||
} |
|||
mw.util.addCSS('\ |
|||
.mw-special-Watchlist .mw-changeslist .mw-rollback-link.mw-rollback-link {\ |
|||
visibility: visible;\ |
|||
}\ |
|||
'); |
|||
firstRun = false; |
|||
} |
|||
return; |
|||
} |
|||
// Occurs in watchlist when mediawiki.rcfilters.filters.ui module for some reason fires |
|||
// wikipage.content for the second time with an element that is not in the DOM, |
|||
// fieldset#mw-watchlist-options (in mw.rcfilters.ui.FormWrapperWidget.prototype.onChangesModelUpdate |
|||
// function). |
|||
if (!$content.parent().length) return; |
|||
var $changeslist = $content.find('.mw-changeslist'); |
|||
// Recent changes type in preferences. Don't confuse enhanced recent changes with enhanced filters. |
|||
// mw.user.options.get('usenewrc') shouldn't be used here: RC mode could be set from URL. |
|||
var isEnhanced = !$changeslist.find('ul.special').length; |
|||
if (mw.util.getParamValue('from') !== null) { |
|||
$('#mw-watchlist-form input[name="from"]').remove(); |
|||
} |
|||
if (!mw.user.options.get('wlenhancedfilters-disable')) { |
|||
mw.hook('structuredChangeFilters.ui.initialized').add(main); |
|||
} else { |
|||
if (!navigator.userAgent.toLowerCase().includes('firefox')) { |
|||
main(); |
|||
} else { |
|||
// Cure for Firefox |
|||
setTimeout(main, 0); |
|||
} |
|||
} |
|||
}); |
|||
} |
} |
||
})(); |
|||
mw.unwatch = (window.wgAjaxWatch ? wgAjaxWatch.unwatchMsg : 'Unwatch' ) |
|||
mw.watch = (window.wgAjaxWatch ? wgAjaxWatch.watchMsg : 'Watch') |
|||
this.onLoad = function() { |
|||
PngFixDisabled = true |
|||
init() |
|||
if (!namespace) return |
|||
//Sort and Unwatch links |
|||
var insert = namespace.form |
|||
addLink('javascript:wList.sortWatchlist()', mw.sort, mw.sortTitle) |
|||
addLink('javascript:wList.addUnwatchLinks()', mw.unwatch+'…', mw.unwatchTitle) |
|||
//Only new link |
|||
while (insert.previousSibling && insert.nodeName != 'BR') insert=insert.previousSibling |
|||
var lnk = addLink('#', mw.onlynew, mw.onlynewTitle) |
|||
lnk.id = 'listSince' |
|||
lnk.onclick = lnk.onmousedown = onlyNewEntries // react to middle clicks too |
|||
// adds " | link" just before (insert) element |
|||
function addLink(url, text, tooltip){ |
|||
var lnk = document.createElement('a') |
|||
lnk.href = url |
|||
lnk.appendChild(document.createTextNode(text)) |
|||
lnk.title = tooltip || '' |
|||
insert.parentNode.insertBefore(document.createTextNode(' | '), insert) |
|||
insert.parentNode.insertBefore(lnk, insert) |
|||
return lnk |
|||
} |
|||
} |
|||
function init(){ |
|||
namespace = document.getElementById('namespace') |
|||
content = document.getElementById('bodyContent') || document.body |
|||
} |
|||
this.init = init |
|||
function onlyNewEntries() { |
|||
var url = window.location.href.split('#')[0] |
|||
var days = ( +(new Date()) - whenPageLoaded)/(1000 * 3600 * 24) |
|||
if (url.match(/[?&]days=/)) |
|||
this.href = url.replace(/([?&]days=)[^&]*/, '$1'+days) |
|||
else |
|||
this.href = url + (url.indexOf('?') < 0 ? '?':'&') + 'days=' + days |
|||
return true |
|||
} |
|||
var alreadySorted |
|||
this.sortWatchlist = function(){ |
|||
if (alreadySorted) return alert(mw.sortDone) |
|||
//get namespaces |
|||
var NSs = [], select = document.getElementById('namespace') |
|||
for (i=1; i<select.options.length; i++) |
|||
NSs[NSs.length] = select.options[i].text + ':' |
|||
NSs[0] = '' |
|||
//sort all days separately |
|||
var H4s = content.getElementsByTagName('h4'), dayDiv, rows, h, i, j, pgname, el, step, end |
|||
for (var h=0; h<H4s.length; h++){ |
|||
dayDiv = H4s[h] |
|||
while ((dayDiv=dayDiv.nextSibling) && (dayDiv.nodeName != 'DIV') && (dayDiv.nodeName != 'UL')); |
|||
//get WL rows and find their namespaces |
|||
rows = getWatchlistRows(dayDiv) |
|||
if (!rows) return |
|||
for (i = 0; i < rows.length; i++){ |
|||
pgname = rows[i].title; ns = 0 |
|||
for (j=1; j<NSs.length; j++) if (pgname.indexOf(NSs[j]) == 0){ ns = j; break } |
|||
pgname = rows[i].title.substring(NSs[ns].length) |
|||
if (ns%2) ns-- //sort talk page as if it was a base page |
|||
rows[i].sortkey = ns + pgname //assign custom tag attribute |
|||
} |
|||
//sort rows array |
|||
rows.sort(function(a,b){ |
|||
if (a.sortkey > b.sortkey) return 1 |
|||
else if (a.sortkey < b.sortkey) return -1 |
|||
else return 0 |
|||
}) |
|||
//sort rows in HTML |
|||
for (i=0; i<rows.length; i++){ //move rows to the dayDiv bottom |
|||
el = end = rows[i] |
|||
if (el.parentNode.nodeName == 'LI') //non-enhanced watchlist |
|||
el.parentNode.parentNode.appendChild(el.parentNode) |
|||
else{ |
|||
//find element just after the last row element (could be null) |
|||
while ((end=end.nextSibling) && end.nodeName!='IMG' && (end.nodeName!='SPAN' || !end.id.match(/^RCM/))); |
|||
//get to the 1st element, stopping just before <br> or <div> |
|||
while ((step=el.previousSibling) && step.nodeName!='BR' && step.nodeName!='DIV') el = step |
|||
//move all row elements to the bottom of the day |
|||
do{ step=el.nextSibling; dayDiv.appendChild(el); el=step} while (el!=end) |
|||
//if (el.style) el.style.backgroundColor = '#F0F0F0' |
|||
} |
|||
} |
|||
}//for (in days) |
|||
alreadySorted = true |
|||
} |
|||
var uwLinks = [], inProgress = null, timeoutID = null, addedUnwatchLinks |
|||
this.addUnwatchLinks = function() { |
|||
if (addedUnwatchLinks) return alert(mw.unwatchDone) |
|||
var rows = getWatchlistRows(content), x, insAt, el |
|||
for (var i = 0; i < rows.length; i++){ |
|||
x = document.createElement('a') |
|||
x.href = wgServer+wgScript+'?action=unwatch&title='+encodeURIComponent(rows[i].title) //non-Ajax unwatch |
|||
x.onclick = ajaxUnwatch |
|||
uwLinks.push(x) |
|||
insAt = rows[i] |
|||
if (insAt.parentNode.nodeName == 'LI') |
|||
insAt = insAt.nextSibling.nextSibling //non-enhanced WL: insert before ) after history |
|||
else |
|||
while ((el=insAt.previousSibling) && el.nodeName != 'TT') insAt = el //insert after TT (with time) |
|||
insAt.parentNode.insertBefore(document.createTextNode(' ('), insAt) |
|||
insAt.parentNode.insertBefore(x, insAt) |
|||
insAt.parentNode.insertBefore(document.createTextNode(') '), insAt) |
|||
setUnwatchLink(x, false) |
|||
} |
|||
addedUnwatchLinks = true |
|||
} |
|||
function setUnwatchLink (unwatchLink, state) { |
|||
unwatchLink.innerHTML = state ? '+' : 'x' |
|||
unwatchLink.title = state ? mw.watch : mw.unwatch |
|||
} |
|||
function getPgName (unwatchLink){ |
|||
return decodeURIComponent(unwatchLink.href.match(/&title=(.+)/)[1]) |
|||
} |
|||
function ajaxUnwatch(e) { |
|||
if (inProgress) return false |
|||
e = e || window.event |
|||
var targ = e.target || e.srcElement |
|||
inProgress = getPgName(targ) |
|||
timeoutID = window.setTimeout( function() {inProgress = null}, 10000 ) |
|||
//call server |
|||
var action = (targ.innerHTML == 'x') ? 'u' : 'w' |
|||
sajax_do_call('wfAjaxWatch', [inProgress, action], showResult) |
|||
return false |
|||
} |
|||
function showResult (request) { |
|||
if (timeoutID) window.clearTimeout(timeoutID) |
|||
var response = request.responseText |
|||
if (window.wlUnwatchShowMsg) jsMsg (response.substr(4), 'watch') |
|||
var name = inProgress, name2 = name, state, prefix, idx, ns = 0, pg, i, el |
|||
inProgress = null |
|||
if (/^<u#>/.test(response)) state = true |
|||
else if (/^<w#>/.test(response)) state = false |
|||
else return //unrecognized response |
|||
//find the name of "other page" |
|||
if ((idx = name.indexOf(':')) != -1){ //not main namespace |
|||
prefix = name.substring(0,idx) |
|||
name2 = name.substring(idx + 1) |
|||
for (i=2; i < namespace.options.length; i++) |
|||
if (namespace.options[i].text == prefix) |
|||
ns = i - 1 |
|||
if (ns == 0) name2 = name // guess : was a part of the page name |
|||
} |
|||
if (ns % 2) ns--; else ns++ //switch to "other" namespace |
|||
if (ns > 0) name2 = namespace.options[ns+1].text + ':' + name2 |
|||
//now mark all titles that are either name or name2 |
|||
for (i=0; i<uwLinks.length; i++) |
|||
if ((pg = getPgName(uwLinks[i])) && (pg==name || pg==name2)) { |
|||
setUnwatchLink (uwLinks[i], state) |
|||
el = uwLinks[i] //now mark the whole line |
|||
while ((el=el.nextSibling) && (el.nodeName!='DIV') && (el.nodeName!='BR')) |
|||
if (el.style) el.style.textDecoration = state ? 'line-through' : '' |
|||
} |
|||
} |
|||
function getWatchlistRows(parent){ |
|||
var histLinks = [] |
|||
var allLinks = parent.getElementsByTagName('a') |
|||
for (var i = 0; i < allLinks.length; i++) |
|||
if (/[?&]action=history(&|$)/.test(allLinks[i].href)){ |
|||
histLinks[histLinks.length] = allLinks[i] |
|||
i += 5 //move counter to speed things up a bit |
|||
} |
|||
return histLinks |
|||
} |
|||
}//obj |
|||
if (wgCanonicalSpecialPageName && wgCanonicalSpecialPageName == 'Watchlist') |
|||
addOnloadHook(wList.onLoad) |
Текущая версия от 04:06, 15 августа 2021
(function () {
var firstRun = true;
if (mw.config.get('wgCanonicalSpecialPageName') === 'Watchlist') {
// Polyfill
if (!String.prototype.includes) {
String.prototype.includes = function (search, start) {
'use strict';
if (typeof start !== 'number') {
start = 0;
}
if (start + search.length > this.length) {
return false;
} else {
return this.indexOf(search, start) !== -1;
}
};
}
var SECONDS_IN_A_DAY = 1000 * 60 * 60 * 24;
var whenPageLoadedOrUpdated;
var hideInterfaceCSS, rvOffCSS;
var sortingDone, allStarsShown, hoverOnTitlesDone;
// ruwiki strings
var strings = {
watch: 'Следить',
unwatch: 'Не следить',
sortTip: 'Сортировать изменения по пространствам имён',
sortDone: 'Изменения уже отсортированы',
unwatchTip: 'Добавить/убрать звёздочки для вычёркивания страниц из списка наблюдения',
newOnly: 'Только новые',
newOnlyTip: 'Изменения с момента загрузки этой страницы',
watchlistTabNewOnlyTip: 'По клику откроются изменения с момента загрузки этой страницы',
all: 'Все',
allTip: 'Все изменения',
expandAll: 'Показать/спрятать все свёрнутые правки',
switchRevert: 'Спрятать/показать ссылки «откатить»',
fullPage: 'Спрятать/показать элементы интерфейса',
error: 'Ошибка',
unrecognizedReponse: 'ответ не распознан'
};
mw.hook('wikipage.content').add(function ($content) {
function main() {
/* FUNCTIONS */
function addLink(contents, tip, classes, href) {
return $('<a>')
.attr('href', href || 'javascript:')
.attr('title', tip)
.addClass(classes)
.append(contents)
.appendTo($linksIn);
}
function generateNewEntriesOnlyUrl() {
var uri = new mw.Uri();
uri.query.from = whenPageLoadedOrUpdated;
delete uri.query.days;
return uri.toString();
}
function generateAllEntriesUrl() {
var uri = new mw.Uri();
delete uri.query.from;
return uri.toString();
}
function newEntriesOnly(e) {
e.target.href = generateNewEntriesOnlyUrl();
}
function allEntries(e) {
e.target.href = generateAllEntriesUrl();
}
function showAllStars(e) {
if (e) {
e.preventDefault();
}
// cookie set = stars are on
if (!allStarsShown) {
$changeslist.find('.mw-title')
.each(function (i, link) {
updateStar(getRow($(this)));
});
if (e) {
var cookieDate = new Date($.now() + SECONDS_IN_A_DAY * 90).toGMTString();
document.cookie = 'wlunw=1; expires=' + cookieDate + '; path=/';
}
allStarsShown = true;
} else { // otherwise remove
$changeslist.find('.gadgetWatchlist-unwatchLink').remove();
document.cookie = 'wlunw=0; expires=' + (new Date()).toGMTString() + '; path=/';
if (!hoverOnTitlesDone) {
bindHoverOnTitles();
}
allStarsShown = false;
}
}
function sortWatchlist(e) {
e.preventDefault();
if (sortingDone) {
alert(strings.sortDone);
return;
}
$changeslist.find('h4').each(function () { // sort all days separately
var $container = $(this).next('div, ul');
var $rows = $container.children('li, table');
// create sorting keys
var key;
$rows.each(function (i) {
// use built-in class: either li.watchlist-5-<title> or
// table.mw-changeslist-ns100-<title> in enhanced recent changes
key = /(\d+)-(\S+)/.exec(this.className) || ['', 0, ' ']; // logs might not have this class
if (key[1] % 2) {
key[1]--; // sort talk page as if it was a base page
}
if (window.watchlistSortNamespaceOnly) {
key[2] = zzz(i); // keep timestamp order within each NS block
}
this.skey = zzz(key[1]) + ':' + key[2];
});
// sort array and then HTML
$rows.sort(function (a, b) {
return a.skey > b.skey ? 1 : (a.skey < b.skey ? -1 : 0);
});
for (i = 0; i < $rows.length; i++) {
$container.append($rows.eq(i));
}
});
$('.mw-rcfilters-ui-changesListWrapperWidget-previousChangesIndicator').remove();
sortingDone = true;
}
function expandMultipleEdits(e) {
e.preventDefault();
var $collapsibles = $('.mw-changeslist .mw-collapsible:not(.mw-changeslist-legend)');
// If at lease one branch is collapsed, we expand everything.
$collapsibles
[$collapsibles.hasClass('mw-collapsed') ? 'filter' : 'not']('.mw-collapsed')
.find('.mw-enhancedchanges-arrow')
.click();
}
function switchRevert(e) {
if (e) {
e.preventDefault();
}
if (!rvOffCSS) {
rvOffCSS = mw.util.addCSS('\
.mw-rollback-link {\
display: none;\
}\
');
} else {
rvOffCSS.disabled = !rvOffCSS.disabled;
}
if (rvOffCSS.disabled) {
document.cookie = 'wlrvoff=0; expires=' + (new Date()).toGMTString() + '; path=/';
} else if (e) {
var cookieDate = (new Date($.now() + SECONDS_IN_A_DAY * 90)).toGMTString();
document.cookie = 'wlrvoff=1; expires=' + cookieDate + '; path=/';
}
}
function bindHoverOnTitles() { // find all title links and assign hover event
if (hoverOnTitlesDone) return;
$changeslist.find('.mw-title')
.each(function () {
getRow($(this))
.find('.mw-title')
.children('a')
.hover(hoverOnTitle);
});
hoverOnTitlesDone = true;
}
function hoverOnTitle(e) { // on hover: add "unwatch" star after 1 second
var $link = $(this);
if (e.type === 'mouseenter') {
$link.data('unwatchTimeout', setTimeout(function () {
showStarOnHover($link);
}, 1000));
} else {
clearTimeout($link.data('unwatchTimeout'));
}
}
function showStarOnHover($link) {
var $row = getRow($link);
updateStar($row);
// attach mouseleave to remove the star
if ($row.data('leaveAssigned')) return;
$row.data('leaveAssigned', true);
$row.mouseleave(function (e) {
var $unwatchLink = $(this).find('.gadgetWatchlist-unwatchLink');
if ($unwatchLink.length &&
!($unwatchLink.hasClass('gadgetWatchlist-failure') ||
$unwatchLink.hasClass('gadgetWatchlist-waiting')
) &&
!allStarsShown
) {
$unwatchLink.remove();
}
});
}
function updateStar($row) {
var action = $row.hasClass('gadgetWatchlist-unwatchedRow') ? 'watch' : 'unwatch';
var $star = $row.find('.gadgetWatchlist-unwatchLink, .gadgetWatchlist-watchLink');
if (!$star.length) { // create
var $link = $row.find('.mw-title').children('a');
if (!$link.length) return;
$star = $('<a>')
.attr('href', $link.attr('href').replace(/\/wiki\//, '/ruwiki/w/index.php?title=') + '&action=' +
action)
.addClass('gadgetWatchlist-' + action + 'Link gadgetWatchlist-icon')
.click(changeWatchState)
.insertBefore($link);
} else { // update
$star
.attr('href', $star
.attr('href')
.replace(/&action=\w+/, '&action=' + action))
.removeClass('gadgetWatchlist-' + (action === 'unwatch' ? 'watch' : 'unwatch') + 'Link')
.addClass('gadgetWatchlist-' + action + 'Link');
}
$star.attr('title', mw.messages.get(action) || strings[action]);
}
function getRow($el) {
return $el.closest(isEnhanced ? 'tr' : 'li');
}
function changeWatchState(e) {
var $star = $(this), errorMsg = '';
var action;
var unwatch;
if ($star.attr('href').includes('&action=unwatch')) {
unwatch = '';
action = 'unwatch';
} else {
action = 'watch';
}
var titles = getLinkTitle($star);
$star
.removeClass('gadgetWatchlist-failure')
.addClass('gadgetWatchlist-waiting');
new mw.Api().postWithToken('watch', {
action: 'watch',
titles: titles,
unwatch: unwatch,
formatversion: 2,
}).then(
function (resp) {
if (!resp.watch || !resp.watch[0]) {
errorMsg = 'empty response';
} else if (typeof resp.watch[0].unwatched === 'boolean') {
changeWatchStateSuccess(titles, true);
} else if (typeof resp.watch[0].watched === 'boolean') {
changeWatchStateSuccess(titles, false);
} else {
errorMsg = strings.unrecognizedReponse;
}
},
function (code, data) {
var errorMsg = (
// HTTP error
data.textStatus ||
// API error
(data.error && data.error.info)
);
if (errorMsg) {
errorMsg += ' (' + code + ')';
} else {
errorMsg = code;
}
}
).always(function () { // update unwatch link
$star.removeClass('gadgetWatchlist-waiting');
if (errorMsg) {
$star
.attr('title', strings.error + ': ' + errorMsg)
.addClass('gadgetWatchlist-failure gadgetWatchlist-' + action + 'Link');
}
});
e.preventDefault();
}
function changeWatchStateSuccess(name, isUnwatched) {
// find full name of associated talk page (or vice versa)
var ns = getTitleNamespace(name);
var name2 = name;
if (ns > 0) {
name2 = name2.replace(/^.+?:/, ''); // remove old prefix
}
ns = ns % 2 ? ns - 1 : ns + 1; // switch to associated namespace
if (ns > 0) {
name2 = mw.config.get('wgFormattedNamespaces')[ns] + ':' + name2; // add new prefix
}
// mark all rows that are either name or name2
$changeslist.find('.mw-changeslist-title').each(function () {
var title = getLinkTitle($(this));
if (title !== name && title !== name2) return;
var $row = getRow($(this));
$row.toggleClass('gadgetWatchlist-unwatchedRow', isUnwatched);
if (!isUnwatched && !allStarsShown) {
$row.find('.gadgetWatchlist-watchLink').remove();
} else {
updateStar($row);
}
});
}
function hideInterface(e) {
if (e) {
e.preventDefault();
}
var hideInterfaceCSSCode = '\
#firstHeading,\
div#siteNotice,\
#contentSub,\
.mw-wlheader-showupdated,\
fieldset#mw-watchlist-options,\
div.mw-rc-label-legend,\
#mw-fr-watchlist-pending-notice,\
.mw-indicators,\
.mw-rcfilters-ui-filterTagMultiselectWidget,\
.mw-rcfilters-ui-watchlistTopSectionWidget-savedLinksTable,\
.mw-rcfilters-ui-watchlistTopSectionWidget-editWatchlistButton,\
.mw-rcfilters-ui-watchlistTopSectionWidget-separator {\
display: none;\
}\
\
.client-js .mw-special-Watchlist .rcfilters-head.rcfilters-head {\
min-height: auto;\
}\
';
if (!hideInterfaceCSS) {
// If the new filters are on, wait until the interface is initialized.
if (!mw.user.options.get('wlenhancedfilters-disable')) {
hideInterfaceCSS = mw.util.addCSS(hideInterfaceCSSCode);
$('.mw-rcfilters-ui-markSeenButtonWidget')
.wrap('<div>')
.parent()
.addClass('mw-rcfilters-ui-markSeenButtonWidget-container')
.appendTo('.mw-rcfilters-ui-watchlistTopSectionWidget-watchlistDetails');
} else {
hideInterfaceCSS = mw.util.addCSS(hideInterfaceCSSCode);
}
} else {
hideInterfaceCSS.disabled = !hideInterfaceCSS.disabled;
if (!mw.user.options.get('wlenhancedfilters-disable')) {
$('.mw-rcfilters-ui-markSeenButtonWidget-container')
.appendTo(hideInterfaceCSS.disabled ?
'.mw-rcfilters-ui-watchlistTopSectionWidget-savedLinksTable .mw-rcfilters-ui-cell:first-child' :
'.mw-rcfilters-ui-watchlistTopSectionWidget-watchlistDetails');
}
}
if (e) {
if (!hideInterfaceCSS.disabled) {
var cookieDate = new Date($.now() + SECONDS_IN_A_DAY * 90).toGMTString();
document.cookie = 'wlmax=1; expires=' + cookieDate + '; path=/';
} else {
document.cookie = 'wlmax=0; expires=' + (new Date()).toGMTString() + '; path=/';
}
}
}
function getTitleNamespace(title) { // returns namespace number
var prefix = /^(.+?):/.exec(title);
if (!prefix) {
return 0; // no prefix means article
}
return mw.config.get('wgNamespaceIds')[ prefix[1].toLowerCase().replace(/ /g, '_') ] || 0;
}
function getLinkTitle($link) { // gets title for unwatch/watch links & common page links
// Titles can be absent for .mw-changeslist-title elements because of Popups extension.
var title = $link.filter('.mw-changeslist-title').attr('title');
if (!title) {
title = mw.util.getParamValue('title', $link.attr('href'));
title = title && title.replace(/_/g, ' ');
}
if (!title) {
title = $link.filter('.mw-changeslist-title').text();
}
return title;
}
function zzz(s) { // 5 -> 005
s = s.toString();
if (s.length === 1) {
return '00' + s;
} else if (s.length === 2) {
return '0' + s;
} else {
return s;
}
}
function zeroPad(n, p) {
return ('0000' + n).slice(-p);
}
function generateTimestamp(date) {
return (
zeroPad(date.getUTCFullYear(), 4) +
zeroPad(date.getUTCMonth() + 1, 2) +
zeroPad(date.getUTCDate(), 2) +
zeroPad(date.getUTCHours(), 2) +
zeroPad(date.getUTCMinutes(), 2) +
zeroPad(date.getUTCSeconds(), 2)
);
}
/* MAIN BLOCK */
// add 5–20 seconds just in case (for example, the scripting could take too much)
whenPageLoadedOrUpdated = generateTimestamp(new Date(new Date().getTime() - (firstRun ? 20000 : 5000)));
sortingDone = false;
allStarsShown = false;
hoverOnTitlesDone = false;
// UNWATCH LINKS
// on every line
if (document.cookie.includes('wlunw=1')) {
showAllStars();
} else {
bindHoverOnTitles(); // mouseover on title
}
if (firstRun) {
if (document.cookie.includes('wlrvoff=1')) {
switchRevert();
}
// find insertion point for links
$linksIn = $('<div>')
.addClass('mw-rcfilters-ui-cell gadgetWatchlist-linksContainer')
.insertBefore($(
!mw.user.options.get('wlenhancedfilters-disable') ?
'.mw-rcfilters-ui-watchlistTopSectionWidget-savedLinks' :
'.wlinfo'
));
// "show all stars" link
addLink('', strings.unwatchTip, 'gadgetWatchlist-icon gadgetWatchlist-icon-unwatched')
.click(showAllStars);
// FUNCTION LINKS
// "sort" link
addLink('↑↓', strings.sortTip).click(sortWatchlist);
// "expand all" link
// Auto-update could be used, so even if there is no $('.mw-enhancedchanges-arrow') elements, we keep
// the button.
if (isEnhanced) {
addLink('±', strings.expandAll).click(expandMultipleEdits);
}
// "switch revert" link
if (mw.config.get('wgUserGroups').indexOf('rollbacker') !== -1 ||
mw.config.get('wgUserGroups').indexOf('sysop') !== -1
) {
addLink('⎌', strings.switchRevert).click(switchRevert);
}
// "new only" link
addLink(strings.newOnly, strings.newOnlyTip, undefined, generateNewEntriesOnlyUrl())
.mousedown(newEntriesOnly);
if (mw.util.getParamValue('from') !== null) {
// "all" link
addLink(strings.all, strings.allTip, undefined, generateAllEntriesUrl()).mousedown(allEntries);
}
// TABS
if (!window.wlNoTabs) {
var $mainTab = $('#ca-nstab-special').first(); // "Special" tab
// change main tab into "watchlist Δ"
var watchlistTitle = $.trim($('#firstHeading').text());
$mainTab
.find('a') // replace "Special" with "Watchlist" as tab text
.text(watchlistTitle + ' △') // Δ is good but monobook makes is lowercase
.attr('title', strings.watchlistTabNewOnlyTip)
.attr('href', generateNewEntriesOnlyUrl())
.on('mousedown keydown', newEntriesOnly);
// add "hideInterface" tab
$mainTab
.clone(true)
.attr('id', '')
.attr('href', '')
.removeClass('selected')
.click(hideInterface)
.appendTo($mainTab.parent())
.find('a')
.text('↸')
.attr('title', strings.fullPage)
.attr('accesskey', '');
}
// OTHER TASKS
if (document.cookie.includes('wlmax=1')) {
hideInterface();
}
mw.util.addCSS('\
.mw-special-Watchlist .mw-changeslist .mw-rollback-link.mw-rollback-link {\
visibility: visible;\
}\
');
firstRun = false;
}
return;
}
// Occurs in watchlist when mediawiki.rcfilters.filters.ui module for some reason fires
// wikipage.content for the second time with an element that is not in the DOM,
// fieldset#mw-watchlist-options (in mw.rcfilters.ui.FormWrapperWidget.prototype.onChangesModelUpdate
// function).
if (!$content.parent().length) return;
var $changeslist = $content.find('.mw-changeslist');
// Recent changes type in preferences. Don't confuse enhanced recent changes with enhanced filters.
// mw.user.options.get('usenewrc') shouldn't be used here: RC mode could be set from URL.
var isEnhanced = !$changeslist.find('ul.special').length;
if (mw.util.getParamValue('from') !== null) {
$('#mw-watchlist-form input[name="from"]').remove();
}
if (!mw.user.options.get('wlenhancedfilters-disable')) {
mw.hook('structuredChangeFilters.ui.initialized').add(main);
} else {
if (!navigator.userAgent.toLowerCase().includes('firefox')) {
main();
} else {
// Cure for Firefox
setTimeout(main, 0);
}
}
});
}
})();