MediaWiki:Common.js — различия между версиями

Материал из Н.Ф. Федоров
Перейти к: навигация, поиск
 
(не показано 6 промежуточных версий этого же участника)
Строка 1: Строка 1:
importMW = function (name) { importScript('MediaWiki:'+name+'.js') }
+
var expandCaption, collapseCaption, zeroSectionTip;
+
if ( mw.config.get( 'wgUserLanguage' ) === 'en' ) {
importScript_ = importScript
+
expandCaption = 'show';
importScript = function (page, proj){
+
collapseCaption = 'hide';
if (!proj) importScript_(page)
+
zeroSectionTip = 'Edit lead section';
else {
+
} else {
  if (proj.indexOf('.')==-1) proj += '.wikipedia.org'
+
expandCaption = 'показать';
  importScriptURI('//'+proj+'/w/index.php?action=raw&ctype=text/javascript&title='+encodeURIComponent(page.replace(/ /g,'_')))
+
collapseCaption = 'скрыть';
}
+
zeroSectionTip = 'Править преамбулу';
 
}
 
}
+
 
+
/**
//Messages
+
  * [[ВП:Сворачиваемые блоки]]
var listFA = {
+
  */
  fa:'Эта статья является избранной',
+
// Число раскрытых по умолчанию навигационных (и не только) шаблонов, если им задан параметр
fl:'Этот список или портал является избранным',
+
// autocollapse. Участники могут переопределять это значение в личных JS.
ga:'Эта статья является хорошей'}
+
var NavigationBarShowDefault;
var textFA = ' в другом языковом разделе'
+
if ( typeof NavigationBarShowDefault === 'undefined' ) {
+
NavigationBarShowDefault = 1;
var zeroSectionTip = 'Править введение'
 
 
var NavigationBarHide = '[скрыть]'
 
var NavigationBarShow = '[показать]'
 
var NavigationBarShowDefault = 2
 
   
 
if( /^en$/.test(wgUserLanguage) ) importMW('Common-' + wgUserLanguage)
 
 
 
 
function LinkFA(){
 
var ll, s
 
$('#p-lang li').each( function(i, iw){
 
  ll = iw.className.split(' ')[0] + '-'
 
  for( var s in listFA )
 
    if( document.getElementById(ll + s) )
 
      $( iw )
 
        .addClass( s.toUpperCase() )
 
        .attr( 'title',  listFA[s] + textFA )
 
})
 
 
}
 
}
+
 
+
// table.collapsible
function editZeroSection(){
+
function collapsibleTables( $content ) {
if( !wgArticleId ) return
+
var $btn,
mw.util.$content.find('h2')
+
$a,
.children('span.editsection').first()
+
tblIdx = 0,
.clone().prependTo(mw.util.$content)
+
navboxCount = 0,
.find('a')
+
notNavboxCount = 0,
.attr('title', zeroSectionTip)
+
colTables = [],
.attr('href', wgScript + '?title='+encodeURIComponent(wgPageName) + '&action=edit&section=0' )
+
$Tables = $content.find( 'table' );
}
+
 
+
$Tables.each( function ( i, table ) {
+
if ( $( table ).hasClass( 'collapsible' ) ) {
//Collapsiblе: [[ВП:СБ]]
+
var $table = $( this ),
+
$row = $table.find( 'tr' ).first(),
var hasClass = (function (){
+
$cell = $row.find( 'th' ).first();
var reCache = {}
+
if ( !$cell.length ) {
return function (element, className){
+
return;
  return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className)
+
}
  }
+
$table.attr( 'id', 'collapsibleTable' + tblIdx );
})()
+
$btn = $( '<span>' ).addClass( 'collapseButton' );
+
$a = $( '<a>' )
function collapsibleTables(){
+
.attr( 'id', 'collapseButton' + tblIdx )
var Table, HRow,  HCell, btn, a, tblIdx = 0, colTables = []
+
.attr( 'href', 'javascript:collapseTable(' + tblIdx + ');' )
var allTables = document.getElementsByTagName('table')
+
// Изменяем цвет ссылки, только если цвет текста в навбоксе нестандартный
for (var i=0; Table = allTables[i]; i++){
+
.css( 'color', $cell.css( 'color' ) === $( '.mw-body' ).css( 'color' ) ? 'auto' :
  if (!hasClass(Table, 'collapsible')) continue
+
$cell.css( 'color' ) )
  if (!(HRow=Table.rows[0])) continue
+
.text( collapseCaption );
  if (!(HCell=HRow.getElementsByTagName('th')[0])) continue
+
$btn
  Table.id = 'collapsibleTable' + tblIdx
+
.append( '[' )
  btn = document.createElement('span')
+
.append( $a )
  btn.style.cssText = 'float:right; font-weight:normal; font-size:smaller'
+
.append( ']' );
  a = document.createElement('a')
+
if ( $cell.contents().length ) {
  a.id = 'collapseButton' + tblIdx
+
$btn.insertBefore( $cell.contents().first() );
  a.href = 'javascript:collapseTable(' + tblIdx + ');'
+
} else {
  a.style.color = HCell.style.color
+
$btn.appendTo( $cell );
  a.appendChild(document.createTextNode(NavigationBarHide))
+
}
  btn.appendChild(a)
+
// hasClass( 'navbox' ) — временное решение для навшаблонов, ещё не переведённых
  HCell.insertBefore(btn, HCell.childNodes[0])
+
// на {{Навигационная таблица}} (также ниже)
  colTables[tblIdx++] = Table
+
if ( $table.hasClass( 'navbox-inner' ) || $table.hasClass( 'navbox' ) ) {
}
+
navboxCount++;
for (var i=0; i < tblIdx; i++)
+
} else {
  if ((tblIdx > NavigationBarShowDefault && hasClass(colTables[i], 'autocollapse')) || hasClass(colTables[i], 'collapsed'))
+
notNavboxCount++;
    collapseTable(i)
+
}
 +
colTables[tblIdx++] = $table;
 +
}
 +
} );
 +
for ( var i = 0; i < tblIdx; i++ ) {
 +
if ( colTables[i].hasClass( 'collapsed' ) ||
 +
( colTables[i].hasClass( 'autocollapse' ) &&
 +
( ( ( colTables[i].hasClass( 'navbox-inner' ) || colTables[i].hasClass( 'navbox' ) ) &&
 +
navboxCount > NavigationBarShowDefault ) ||
 +
( !( colTables[i].hasClass( 'navbox-inner' ) || colTables[i].hasClass( 'navbox' ) ) &&
 +
notNavboxCount > NavigationBarShowDefault ) ) ) )
 +
{
 +
collapseTable( i );
 +
}
 +
}
 
}
 
}
+
 
function collapseTable (idx){
+
mw.hook( 'wikipage.content' ).add( collapsibleTables );
var Table = document.getElementById('collapsibleTable' + idx)
+
 
var btn = document.getElementById('collapseButton' + idx)
+
function collapseTable( idx ) {
if (!Table || !btn) return false
+
var $table = $( '#collapsibleTable' + idx ),
var Rows = Table.rows
+
$rows = $table.children().children( 'tr' ),
var isShown = (btn.firstChild.data == NavigationBarHide)
+
$btn = $( '#collapseButton' + idx );
btn.firstChild.data = isShown ?  NavigationBarShow : NavigationBarHide
+
if ( !$table.length || !$rows.length || !$btn.length ) {
var disp = isShown ? 'none' : Rows[0].style.display
+
return false;
for (var i=1; i < Rows.length; i++)
+
}
    Rows[i].style.display = disp
+
 
 +
var isExpanded = ( $btn.text() === collapseCaption ),
 +
cssDisplay = isExpanded ? 'none' : $rows.first().css( 'display' );
 +
 
 +
$btn.text( isExpanded ? expandCaption : collapseCaption );
 +
$rows.slice( 1 ).each( function () {
 +
$( this ).css( 'display', cssDisplay );
 +
} );
 
}
 
}
+
 
function collapsibleDivs(){
+
// div.NavFrame
var navIdx = 0, colNavs = [], i, NavFrame
+
var navFrameExpandCaption = '[' + expandCaption + ']',
var divs = document.getElementById('content').getElementsByTagName('div')
+
navFrameCollapseCaption = '[' + collapseCaption + ']';
for (i=0; NavFrame = divs[i]; i++) {
+
 
  if (!hasClass(NavFrame, 'NavFrame')) continue
+
function collapsibleDivs( $content ) {
  NavFrame.id = 'NavFrame' + navIdx
+
var navIdx = 0,
  var a = document.createElement('a')
+
colNavs = [],
  a.className = 'NavToggle'
+
i,
  a.id = 'NavToggle' + navIdx
+
$Divs = $content.find( 'div' );
  a.href = 'javascript:collapseDiv(' + navIdx + ');'
+
 
  a.appendChild(document.createTextNode(NavigationBarHide))
+
$Divs.each( function ( i, div ) {
  for (var j=0; j < NavFrame.childNodes.length; j++)
+
if ( $( div ).hasClass( 'NavFrame' ) ) {
    if (hasClass(NavFrame.childNodes[j], 'NavHead'))
+
var $navFrame = $( this );
      NavFrame.childNodes[j].appendChild(a)
+
$navFrame.attr( 'id', 'NavFrame' + navIdx );
  colNavs[navIdx++] = NavFrame
+
var $a = $( '<a>' )
}
+
.addClass( 'NavToggle' )
for (i=0; i < navIdx; i++)
+
.attr( 'id', 'NavToggle' + navIdx )
  if ((navIdx > NavigationBarShowDefault && !hasClass(colNavs[i], 'expanded')) || hasClass(colNavs[i], 'collapsed'))
+
.attr( 'href', 'javascript:collapseDiv(' + navIdx + ');' )
    collapseDiv(i)
+
.text( navFrameCollapseCaption );
 +
$navFrame.children( '.NavHead' ).append( $a );
 +
colNavs[navIdx++] = $navFrame;
 +
}
 +
} );
 +
for ( i = 0; i < navIdx; i++ ) {
 +
if ( colNavs[i].hasClass( 'collapsed' ) ||
 +
( navIdx > NavigationBarShowDefault &&
 +
!colNavs[i].hasClass( 'expanded' )
 +
)
 +
) {
 +
collapseDiv( i );
 +
}
 +
}
 
}
 
}
+
 
function collapseDiv(idx) {
+
mw.hook( 'wikipage.content' ).add( collapsibleDivs );
var div = document.getElementById('NavFrame' + idx)
+
 
var btn = document.getElementById('NavToggle' + idx)
+
function collapseDiv( idx ) {
if (!div || !btn) return false
+
var $div = $( '#NavFrame' + idx ),
var isShown = (btn.firstChild.data == NavigationBarHide)
+
$btn = $( '#NavToggle' + idx );
btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide
+
if ( !$div.length || !$btn.length ) {
var disp = isShown ? 'none' : 'block'
+
return false;
for (var child = div.firstChild;  child != null;  child = child.nextSibling)
+
}
  if (hasClass(child, 'NavPic') || hasClass(child, 'NavContent'))
+
var isExpanded = ( $btn.text() === navFrameCollapseCaption );
      child.style.display = disp
+
$btn.text( isExpanded ? navFrameExpandCaption : navFrameCollapseCaption );
 +
$div.children( '.NavContent, .NavPic' ).each( function () {
 +
$( this ).css( 'display', isExpanded ? 'none' : 'block' );
 +
} );
 
}
 
}
 
 
 
//Execution
 
 
if (wgCanonicalNamespace == 'Special'){
 
 
if (/^(Uplo|Sear|Stat|Spec|Abus|Prefe|Move|Watch|Newp)/i.test(wgCanonicalSpecialPageName))
 
  importMW(wgCanonicalSpecialPageName)
 
 
}else switch (wgAction){
 
 
case 'history': importMW('History'); break
 
 
case 'delete': importMW('Deletepage'); break
 
 
case 'edit': case 'submit': importMW('Editpage') //and continue with the default: view, purge
 
 
default:
 
 
  $(editZeroSection)
 
  addOnloadHook(collapsibleDivs)
 
  addOnloadHook(collapsibleTables)
 
  mw.loader.load('//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400')
 
  if( wgServer == 'https://secure.wikimedia.org' )
 
    importScript('MediaWiki:Common.js/secure.js','en')
 
  else if( document.location && document.location.protocol == 'https:' )
 
    importScript('MediaWiki:Common.js/secure new.js', 'en')
 
  if (navigator.platform.indexOf('Win') != -1)
 
    importStylesheetURI('//en.wikipedia.org/w/index.php?title=MediaWiki:Common.css/WinFixes.css&action=raw&ctype=text/css')
 
 
  switch( wgNamespaceNumber ){
 
    case 0: case 100:
 
      $(LinkFA)
 
      importMW('Osm')
 
      importMW('Collapserefs')
 
      if( wgArticleId==4401 ) importMW('Mainpage')
 
      break
 
    case 6:
 
      importMW('Filepage')
 
      break
 
  }   
 
 
}
 
 
 
if( wgUserName ){
 
  if( wgNamespaceNumber==2 && wgTitle.indexOf(wgUserName)==0 && wgArticleId==0 && /\/skin\.(js|css)$/.test(wgTitle) )
 
    window.location.href = window.location.href.replace(/skin\.(css|js)$/, skin+'.$1')
 
}else{ //hide FlaggedRevs
 
  mw.util.addCSS('#mw-fr-revisiontag {display:none}')
 
}
 
 
 
// ВП:СО, кроме статей  В Контакте, Одноклассники и Facebook
 
if (wgArticleId!=639373 && wgArticleId!=932117 && wgArticleId!=1297302 && wgArticleId!=25133866)
 
importMW('Wikibugs')
 
 
 
// iwiki sorting
 
if (!wgUserName
 
    || (wgUserName
 
        && (((typeof wgLangPrefs == 'undefined') ? false : true)
 
            || ((typeof wgAddLangHints == 'undefined') ? false : wgAddLangHints)
 
            || ((typeof wgUseUserLanguage == 'undefined') ? false : wgUseUserLanguage))))
 
    importMW('Interwiki-links');
 
 
 
//extra scripts
 
 
var withJS = document.URL.match(/[&?]withjs=((mediawiki:)?([^&#]+))/i)
 
if( withJS ) importScript_('MediaWiki:'+withJS[3])
 
 
var execJS = document.getElementById('executeJS')
 
if( execJS )
 
$.each( execJS.className.split(' '), function(i, sc){
 
    sc = $.trim( sc.replace(/[^\w ]/g,'') )
 
    if( sc ) importMW('Script/' + sc)
 
  })
 

Текущая версия на 23:10, 10 апреля 2018

var expandCaption, collapseCaption, zeroSectionTip;
if ( mw.config.get( 'wgUserLanguage' ) === 'en' ) {
	expandCaption = 'show';
	collapseCaption = 'hide';
	zeroSectionTip = 'Edit lead section';
} else {
	expandCaption = 'показать';
	collapseCaption = 'скрыть';
	zeroSectionTip = 'Править преамбулу';
}

/**
 * [[ВП:Сворачиваемые блоки]]
 */
// Число раскрытых по умолчанию навигационных (и не только) шаблонов, если им задан параметр
// autocollapse. Участники могут переопределять это значение в личных JS.
var NavigationBarShowDefault;
if ( typeof NavigationBarShowDefault === 'undefined' ) {
	NavigationBarShowDefault = 1;
}

// table.collapsible
function collapsibleTables( $content ) {
	var $btn,
		$a,
		tblIdx = 0,
		navboxCount = 0,
		notNavboxCount = 0,
		colTables = [],
		$Tables = $content.find( 'table' );

	$Tables.each( function ( i, table ) {
		if ( $( table ).hasClass( 'collapsible' ) ) {
			var $table = $( this ),
				$row = $table.find( 'tr' ).first(),
				$cell = $row.find( 'th' ).first();
			if ( !$cell.length ) {
				return;
			}
			$table.attr( 'id', 'collapsibleTable' + tblIdx );
			$btn = $( '<span>' ).addClass( 'collapseButton' );
			$a = $( '<a>' )
				.attr( 'id', 'collapseButton' + tblIdx )
				.attr( 'href', 'javascript:collapseTable(' + tblIdx + ');' )
				// Изменяем цвет ссылки, только если цвет текста в навбоксе нестандартный
				.css( 'color', $cell.css( 'color' ) === $( '.mw-body' ).css( 'color' ) ? 'auto' :
					$cell.css( 'color' ) )
				.text( collapseCaption );
			$btn
				.append( '[' )
				.append( $a )
				.append( ']' );
			if ( $cell.contents().length ) {
				$btn.insertBefore( $cell.contents().first() );
			} else {
				$btn.appendTo( $cell );
			}
			// hasClass( 'navbox' ) — временное решение для навшаблонов, ещё не переведённых
			// на {{Навигационная таблица}} (также ниже)
			if ( $table.hasClass( 'navbox-inner' ) || $table.hasClass( 'navbox' ) ) {
				navboxCount++;
			} else {
				notNavboxCount++;
			}
			colTables[tblIdx++] = $table;
		}
	} );
	for ( var i = 0; i < tblIdx; i++ ) {
		if ( colTables[i].hasClass( 'collapsed' ) ||
			( colTables[i].hasClass( 'autocollapse' ) &&
				( ( ( colTables[i].hasClass( 'navbox-inner' ) || colTables[i].hasClass( 'navbox' ) ) &&
						navboxCount > NavigationBarShowDefault ) ||
					( !( colTables[i].hasClass( 'navbox-inner' ) || colTables[i].hasClass( 'navbox' ) ) &&
						notNavboxCount > NavigationBarShowDefault ) ) ) )
		{
			collapseTable( i );
		}
	}
}

mw.hook( 'wikipage.content' ).add( collapsibleTables );

function collapseTable( idx ) {
	var $table = $( '#collapsibleTable' + idx ),
		$rows = $table.children().children( 'tr' ),
		$btn = $( '#collapseButton' + idx );
	if ( !$table.length || !$rows.length || !$btn.length ) {
		return false;
	}

	var isExpanded = ( $btn.text() === collapseCaption ),
		cssDisplay = isExpanded ? 'none' : $rows.first().css( 'display' );

	$btn.text( isExpanded ? expandCaption : collapseCaption );
	$rows.slice( 1 ).each( function () {
		$( this ).css( 'display', cssDisplay );
	} );
}

// div.NavFrame
var navFrameExpandCaption = '[' + expandCaption + ']',
	navFrameCollapseCaption = '[' + collapseCaption + ']';

function collapsibleDivs( $content ) {
	var navIdx = 0,
		colNavs = [],
		i,
		$Divs = $content.find( 'div' );

	$Divs.each( function ( i, div ) {
		if ( $( div ).hasClass( 'NavFrame' ) ) {
			var $navFrame = $( this );
			$navFrame.attr( 'id', 'NavFrame' + navIdx );
			var $a = $( '<a>' )
				.addClass( 'NavToggle' )
				.attr( 'id', 'NavToggle' + navIdx )
				.attr( 'href', 'javascript:collapseDiv(' + navIdx + ');' )
				.text( navFrameCollapseCaption );
			$navFrame.children( '.NavHead' ).append( $a );
			colNavs[navIdx++] = $navFrame;
		}
	} );
	for ( i = 0; i < navIdx; i++ ) {
		if ( colNavs[i].hasClass( 'collapsed' ) ||
			( navIdx > NavigationBarShowDefault &&
				!colNavs[i].hasClass( 'expanded' )
			)
		) {
			collapseDiv( i );
		}
	}
}

mw.hook( 'wikipage.content' ).add( collapsibleDivs );

function collapseDiv( idx ) {
	var $div = $( '#NavFrame' + idx ),
		$btn = $( '#NavToggle' + idx );
	if ( !$div.length || !$btn.length ) {
		return false;
	}
	var isExpanded = ( $btn.text() === navFrameCollapseCaption );
	$btn.text( isExpanded ? navFrameExpandCaption : navFrameCollapseCaption );
	$div.children( '.NavContent, .NavPic' ).each( function () {
		$( this ).css( 'display', isExpanded ? 'none' : 'block' );
	} );
}