মিডিয়াউইকি:Gadget-watchlist-notice-core.js
লক্ষ্য করুন: প্রকাশ করার পর, পরিবর্তনগুলো দেখতে আপনাকে আপনার ব্রাউজারের ক্যাশে পরিষ্কার করার প্রয়োজন হতে পারে।
- ফায়ারফক্স / সাফারি: পুনরায় লোড-এ ক্লিক করার সময় শিফট টিপে ধরে রাখুন, অথবা হয় Ctrl-F5 বা Ctrl-R টিপুন (ম্যাকে ⌘-R টিপুন)
- গুগল ক্রোম: Ctrl-Shift-R (ম্যাকে ⌘-Shift-R) টিপুন
- এজ: Ctrl ধরে রাখা অবস্থায় Refresh-এ ক্লিক করুন, অথবা Ctrl-F5 টিপুন।
- অপেরা: Ctrl-F5 টিপুন।
/** নজরতালিকার বার্তায় বন্ধ করুন বোতাম যুক্ত করে *************************************
*
* Description: Allows multiple dismiss buttons on [[MediaWiki:Watchlist-details]] with bump-able cookie IDs.
* Note: HTML is backwards compatible with old version, new version ignores old syntax, except for dismissed IDs.
* রক্ষণাবেক্ষণকারী: [[:en:User:Ruud Koot|Ruud Koot]], [[:en:User:MZMcBride|MZMcBride]]
*/
/*jslint white: true, regexp: true */
/*global jQuery, mediaWiki */
( function ( mw, $ ) {
'use strict';
var storageKey = 'hidewatchlistmessages';
function getDismissedNotices () {
var hiddenNotices = mw.storage.get( storageKey )
|| mw.storage.session.get( storageKey );
try {
return JSON.parse( hiddenNotices ) || [];
} catch (e) {
return [];
}
}
function saveDismissedNotices ( notices ) {
notices = JSON.stringify( notices );
mw.storage.set( storageKey, notices )
|| mw.storage.session.set( storageKey, notices );
}
// Remove ids which are no longer defined
function expungeOldNotices ( currentList ) {
var dismissedNotices = getDismissedNotices(),
originalLength = dismissedNotices.length;
for ( var i = dismissedNotices.length - 1; i >= 0; i--) {
if( !( dismissedNotices[i] in currentList ) ) {
dismissedNotices.splice( i, 0 );
}
}
if( originalLength !== dismissedNotices.length ) {
saveDismissedNotices( dismissedNotices );
}
}
function dismissWatchlistMessage( event ) {
var $message = $( this ).closest( '.watchlist-message' );
var cid = $( this ).data( 'watchlistMessage' ).cid;
var notices = getDismissedNotices();
$message.hide();
notices.push( cid );
saveDismissedNotices( notices );
event.preventDefault();
}
function addDismissButton() {
var watchItems = $( 'div.watchlist-message' );
var watchItemIds = [];
var dismissedNotices = getDismissedNotices();
var dismissedNoticesLength = dismissedNotices.length;
if ( watchItems.length === 0) {
watchItems = $( 'li.watchlist-message' );
}
if ( watchItems.length === 0) {
return;
}
for ( var i = 0; i < watchItems.length; i++ ) {
var watchlistCookieID = parseInt( watchItems[i].className.replace( /.*cookie\-ID\_(\d*).*/ig, '$1' ) );
if ( isNaN( watchlistCookieID ) ) {
continue;
}
watchItemIds.push( watchlistCookieID );
if ( dismissedNotices.indexOf( watchlistCookieID ) !== -1 ) {
watchItems[i].style.display = 'none';
continue;
}
var Button = document.createElement( 'span' );
var ButtonLink = document.createElement( 'a' );
var ButtonText = document.createTextNode( 'বন্ধ করুন' );
ButtonLink.className = 'dismissButton';
ButtonLink.setAttribute( 'href', '#' );
ButtonLink.setAttribute( 'title', 'এই বার্তাটি বন্ধ করুন' );
ButtonLink.appendChild( ButtonText );
$( ButtonLink ).data( 'watchlistMessage', {
index: i,
cid: watchlistCookieID
} );
$( ButtonLink ).click( dismissWatchlistMessage );
Button.appendChild( document.createTextNode(' [' ) );
Button.appendChild( ButtonLink );
Button.appendChild( document.createTextNode( ']' ) );
watchItems[i].appendChild( Button );
}
expungeOldNotices( watchItemIds );
$( '#watchlist-message' ).show();
}
$( addDismissButton );
}( mediaWiki, jQuery ) );