* Move the invocation into the parens that contain the function. * unescaped regex * Do not wrap function literals in parens unless they are to be immediately invoked. Change-Id: Ib3360f88fb7674af0e857d8a84a91fdac1fd8487
260 lines
7.9 KiB
JavaScript
260 lines
7.9 KiB
JavaScript
/**
|
|
* Universal Language Selector
|
|
* Language category display component - Used for showing the search results,
|
|
* grouped by regions, scripts
|
|
*
|
|
* Copyright (C) 2012 Alolita Sharma, Amir Aharoni, Arun Ganesh, Brandon Harris,
|
|
* Niklas Laxström, Pau Giner, Santhosh Thottingal, Siebrand Mazeland and other
|
|
* contributors. See CREDITS for a list.
|
|
*
|
|
* UniversalLanguageSelector is dual licensed GPLv2 or later and MIT. You don't
|
|
* have to do anything special to choose one license or the other and you don't
|
|
* have to notify anyone which license you are using. You are free to use
|
|
* UniversalLanguageSelector in commercial projects as long as the copyright
|
|
* header is left intact. See files GPL-LICENSE and MIT-LICENSE for details.
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @licence GNU General Public Licence 2.0 or later
|
|
* @licence MIT License
|
|
*/
|
|
|
|
(function( $ ) {
|
|
"use strict";
|
|
|
|
|
|
var noResultsTemplate = '\
|
|
<div class="twelve columns uls-no-results-view">\
|
|
<h2 class="eleven columns end offset-by-one">\
|
|
No results found\
|
|
</h2>\
|
|
<div id="uls-no-found-more">\
|
|
<div class="ten columns end offset-by-one">\
|
|
<p>\
|
|
You can search by language name, script name, ISO code of language or \
|
|
you can browse by region:\
|
|
<a class="uls-region-link" data-region="NA" href="#">America</a>,\
|
|
<a class="uls-region-link" data-region="EU" href="#">Europe</a>,\
|
|
<a class="uls-region-link" data-region="ME" href="#">Middle East</a>, \
|
|
<a class="uls-region-link" data-region="AF" href="#">Africa</a>,\
|
|
<a class="uls-region-link" data-region="AS" href="#">Asia</a>,\
|
|
<a class="uls-region-link" data-region="PA" href="#">Pacific</a> or \
|
|
<a class="uls-region-link" data-region="WW" href="#">Worldwide languages</a>.\
|
|
</p>\
|
|
</div>\
|
|
</div>\
|
|
</div>';
|
|
|
|
var LanguageCategoryDisplay = function( element, options ) {
|
|
this.$element = $( element );
|
|
this.options = $.extend( {}, $.fn.lcd.defaults, options );
|
|
this.$element.addClass( 'lcd' );
|
|
this.regionDivs = {};
|
|
this.$element.append( $(noResultsTemplate) );
|
|
this.$noResults = this.$element.find( 'div.uls-no-results-view' );
|
|
this.render();
|
|
this.listen();
|
|
};
|
|
|
|
LanguageCategoryDisplay.prototype = {
|
|
constructor: LanguageCategoryDisplay,
|
|
|
|
append: function( langCode, regionCode ) {
|
|
this.addToRegion( langCode, regionCode );
|
|
this.$noResults.hide();
|
|
},
|
|
|
|
/**
|
|
* Add the language to a region.
|
|
* If the region parameter is given, add to that region alone
|
|
* Otherwise to all regions that this language belongs.
|
|
* @param langCode
|
|
* @param region Optional region
|
|
*/
|
|
addToRegion: function( langCode, region ) {
|
|
var that = this;
|
|
var language = that.options.languages[langCode],
|
|
langName = $.uls.data.autonym( langCode ) || language || langCode,
|
|
regions = [];
|
|
|
|
if ( region ) {
|
|
regions.push( region );
|
|
} else {
|
|
regions = $.uls.data.regions( langCode );
|
|
}
|
|
|
|
// World wide languages need not be repeated in all regions.
|
|
if ( $.inArray( 'WW', regions ) > -1 ) {
|
|
regions = [ 'WW' ];
|
|
}
|
|
|
|
for ( var i = 0; i < regions.length; i++ ) {
|
|
var regionCode = regions[i];
|
|
|
|
var $li = $( '<li>' )
|
|
.data( 'code', langCode )
|
|
.append(
|
|
$( '<a>' ).prop( 'href', '#' ).prop( 'title', language ).html( langName )
|
|
);
|
|
|
|
// Append the element to the column in the list
|
|
var $column = that.getColumn( regionCode );
|
|
var lastLanguage = $column.find( 'li:last' ).data( 'code' );
|
|
|
|
if ( lastLanguage ) {
|
|
var lastScriptGroup = $.uls.data.scriptGroupOfLanguage( lastLanguage ),
|
|
currentScriptGroup = $.uls.data.scriptGroupOfLanguage( langCode );
|
|
|
|
if ( lastScriptGroup !== currentScriptGroup ) {
|
|
if ( $column.find( 'li' ).length > 2 ) {
|
|
// If column already has 2 or more languages, add a new column
|
|
$column = that.getColumn( regionCode, true );
|
|
}
|
|
}
|
|
}
|
|
|
|
$column.append( $li );
|
|
}
|
|
},
|
|
/**
|
|
* Get a column to add language.
|
|
* @param String regionCode The region code
|
|
* @param boolean forceNew whether a new column must be created or not
|
|
*/
|
|
getColumn: function( regionCode, forceNew ) {
|
|
var $divRegionCode, $rowDiv, $ul;
|
|
|
|
forceNew = forceNew || false;
|
|
$divRegionCode = this.regionDivs[regionCode];
|
|
$rowDiv = $divRegionCode.find( 'div.row:last' );
|
|
$ul = $rowDiv.find( 'ul:last' );
|
|
|
|
// Each column can have maximum 8 languages.
|
|
if ( $ul.length === 0 || $ul.find( 'li' ).length >= 8 || forceNew ) {
|
|
$ul = $( '<ul>' ).addClass( 'three columns end' );
|
|
|
|
if ( $rowDiv.length === 0 || $rowDiv.find( 'ul' ).length >= 4 ) {
|
|
$rowDiv = $( '<div>' ).addClass( 'row uls-language-block' );
|
|
$divRegionCode.append( $rowDiv );
|
|
$ul.addClass( 'offset-by-one' );
|
|
}
|
|
|
|
$rowDiv.append( $ul );
|
|
}
|
|
|
|
$divRegionCode.show();
|
|
|
|
return $ul;
|
|
},
|
|
|
|
render: function() {
|
|
var that = this;
|
|
var $section;
|
|
$.each( $.uls.data.regiongroups, function( regionCode, regionIndex ) {
|
|
$section = $( '<div>' ).addClass( 'twelve columns uls-lcd-region-section' ).prop( 'id', regionCode );
|
|
$section.append( $( '<h3>' ).addClass( 'eleven columns uls-lcd-region-section offset-by-one' ).html( regionCode ) );
|
|
// FIXME this is regioncode(NA, EU etc). Should be proper localized region name.
|
|
that.$element.append( $section );
|
|
$section.hide();
|
|
that.regionDivs[regionCode] = $section;
|
|
} );
|
|
this.$noResults.hide();
|
|
},
|
|
|
|
quicklist: function() {
|
|
if ( $.isFunction( this.options.quickList ) ) {
|
|
this.options.quickList = this.options.quickList();
|
|
}
|
|
|
|
if ( !this.options.quickList ) {
|
|
return;
|
|
}
|
|
|
|
// Pick only the first elements, because we don't have room for more
|
|
var quickList = this.options.quickList;
|
|
quickList = quickList.slice( 0, 16 );
|
|
quickList.sort( $.uls.data.sortByAutonym );
|
|
var $quickListsection = $( '<div>' ).addClass( 'twelve columns uls-lcd-region-section' ).prop( 'id', 'uls-lcd-quicklist' );
|
|
$quickListsection.append( $( '<h3>' ).addClass( 'eleven columns uls-lcd-region-section offset-by-one' ).text( 'Common languages' ) );
|
|
this.$element.prepend( $quickListsection );
|
|
this.regionDivs[ 'quick' ] = $quickListsection;
|
|
for ( var i = 0; i < quickList.length; i++) {
|
|
var $column = this.getColumn( 'quick', i % 4 === 0 );
|
|
var langCode = quickList[i];
|
|
var language = this.options.languages[langCode];
|
|
var langName = $.uls.data.autonym( langCode ) || language || langCode;
|
|
var $li = $( '<li>' )
|
|
.data( 'code', langCode )
|
|
.append(
|
|
$( '<a>' ).prop( 'href', '#' ).prop( 'title', language ).html( langName )
|
|
);
|
|
$column.append( $li );
|
|
}
|
|
$quickListsection.show();
|
|
return $quickListsection;
|
|
},
|
|
|
|
show: function() {
|
|
if ( !this.regionDivs ) {
|
|
this.render();
|
|
}
|
|
},
|
|
|
|
empty: function() {
|
|
this.$element.find( 'div.uls-language-block' ).remove();
|
|
this.$element.find( 'div.uls-lcd-region-section' ).hide();
|
|
},
|
|
|
|
focus: function() {
|
|
this.$element.focus();
|
|
},
|
|
|
|
noResults: function() {
|
|
this.$noResults.show();
|
|
var $suggestions = this.quicklist();
|
|
$suggestions.find( 'h3' ).text( 'You may be interested in' );
|
|
this.$noResults.find( 'h2' ).after( $suggestions );
|
|
},
|
|
|
|
listen: function() {
|
|
var that = this;
|
|
if ( this.options.clickhandler ) {
|
|
this.$element.on( 'click', 'div.row li', function() {
|
|
that.options.clickhandler.call( this, $( this ).data( 'code' ) );
|
|
} );
|
|
}
|
|
|
|
// The region section need to be in sync with the map filter.
|
|
that.$element.scroll( function () {
|
|
if ( this.offsetHeight + this.scrollTop >= this.scrollHeight ) {
|
|
that.$element.trigger( 'scrollend' );
|
|
}
|
|
|
|
} );
|
|
}
|
|
|
|
};
|
|
|
|
$.fn.lcd = function( option ) {
|
|
return this.each( function() {
|
|
var $this = $( this ),
|
|
data = $this.data( 'lcd' ),
|
|
options = typeof option === 'object' && option;
|
|
|
|
if ( !data ) {
|
|
$this.data( 'lcd', ( data = new LanguageCategoryDisplay( this, options ) ) );
|
|
}
|
|
if ( typeof option === 'string') {
|
|
data[option]();
|
|
}
|
|
} );
|
|
};
|
|
|
|
$.fn.lcd.defaults = {
|
|
languages: null
|
|
};
|
|
|
|
$.fn.lcd.Constructor = LanguageCategoryDisplay;
|
|
|
|
} ( jQuery ) );
|