Merge pull request #221 from wikimedia/no-regionfilter

Remove the regionfilter module
This commit is contained in:
Niklas Laxström
2016-05-11 09:05:00 +03:00
6 changed files with 132 additions and 257 deletions

17
.jsbeautifyrc Normal file
View File

@@ -0,0 +1,17 @@
{
"preserve_newlines": true,
"jslint_happy": true,
"keep_array_indentation": true,
"space_before_conditional": true,
"max_preserve_newlines": 10,
"brace_style": "collapse",
"keep_function_indentation": false,
"break_chained_methods": false,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"space_in_paren": true,
"space_in_square_bracket": true,
"git_happy": true,
"indent_with_tabs": true
}

View File

@@ -26,7 +26,6 @@
<script src="../src/jquery.uls.data.utils.js"></script> <script src="../src/jquery.uls.data.utils.js"></script>
<script src="../src/jquery.uls.lcd.js"></script> <script src="../src/jquery.uls.lcd.js"></script>
<script src="../src/jquery.uls.languagefilter.js"></script> <script src="../src/jquery.uls.languagefilter.js"></script>
<script src="../src/jquery.uls.regionfilter.js"></script>
<script src="../src/jquery.uls.core.js"></script> <script src="../src/jquery.uls.core.js"></script>
<script> <script>
$( document ).ready( function() { $( document ).ready( function() {

View File

@@ -221,8 +221,7 @@
* Bind the UI elements with their event listeners * Bind the UI elements with their event listeners
*/ */
listen: function () { listen: function () {
var lcd, columnsOptions, languagesCount, var lcd, columnsOptions, languagesCount;
uls = this;
columnsOptions = { columnsOptions = {
wide: 4, wide: 4,
@@ -265,28 +264,6 @@
onSelect: $.proxy( this.select, this ) onSelect: $.proxy( this.select, this )
} ); } );
// Create region selectors, one per region
this.regionFilter = new $.uls.RegionSelector( {
$target: lcd,
languages: this.languages,
success: function ( regionfilter ) {
// Deactivate search filtering
uls.$languageFilter.languagefilter( 'deactivate' );
// If it is the WW region, show the quicklist
if ( regionfilter.regionGroup === 1 ) {
lcd.quicklist();
}
// Show 'results view' if we are in no results mode
uls.success();
},
noresults: function () {
uls.$languageFilter.languagefilter( 'clear' );
}
} );
this.$languageFilter.on( 'searchclear.uls', $.proxy( this.regionFilter.show, this.regionFilter ) );
this.$languageFilter.on( 'noresults.uls', $.proxy( this.noresults, this ) ); this.$languageFilter.on( 'noresults.uls', $.proxy( this.noresults, this ) );
this.$languageFilter.on( 'resultsfound.uls', $.proxy( this.success, this ) ); this.$languageFilter.on( 'resultsfound.uls', $.proxy( this.success, this ) );
@@ -299,7 +276,6 @@
*/ */
select: function ( langCode ) { select: function ( langCode ) {
this.hide(); this.hide();
this.$languageFilter.trigger( 'searchclear' );
if ( this.options.onSelect ) { if ( this.options.onSelect ) {
this.options.onSelect.call( this, langCode ); this.options.onSelect.call( this, langCode );
} }

View File

@@ -22,12 +22,12 @@
* The values for autocompletion is from the options.languages. * The values for autocompletion is from the options.languages.
* The data is in the format of languagecode:languagename. * The data is in the format of languagecode:languagename.
*/ */
(function ( $ ) { ( function ( $ ) {
'use strict'; 'use strict';
var LanguageFilter, delay; var LanguageFilter, delay;
LanguageFilter = function( element, options ) { LanguageFilter = function ( element, options ) {
this.$element = $( element ); this.$element = $( element );
this.options = $.extend( {}, $.fn.languagefilter.defaults, options ); this.options = $.extend( {}, $.fn.languagefilter.defaults, options );
this.$element.addClass( 'languagefilter' ); this.$element.addClass( 'languagefilter' );
@@ -35,21 +35,25 @@
this.$suggestion = this.$element.parents().find( '#' + this.$element.data( 'suggestion' ) ); this.$suggestion = this.$element.parents().find( '#' + this.$element.data( 'suggestion' ) );
this.$clear = this.$element.parents().find( '#' + this.$element.data( 'clear' ) ); this.$clear = this.$element.parents().find( '#' + this.$element.data( 'clear' ) );
this.selectedLanguage = null; this.selectedLanguage = null;
this.init();
this.listen(); this.listen();
}; };
delay = ( function() { delay = ( function () {
var timer = 0; var timer = 0;
return function( callback, milliseconds ) { return function ( callback, milliseconds ) {
clearTimeout( timer ); clearTimeout( timer );
timer = setTimeout( callback, milliseconds ); timer = setTimeout( callback, milliseconds );
}; };
} () ); }() );
LanguageFilter.prototype = { LanguageFilter.prototype = {
listen: function() { init: function () {
this.search();
},
listen: function () {
this.$element.on( 'keypress', $.proxy( this.keyup, this ) ) this.$element.on( 'keypress', $.proxy( this.keyup, this ) )
.on( 'keyup', $.proxy( this.keyup, this ) ); .on( 'keyup', $.proxy( this.keyup, this ) );
@@ -58,68 +62,68 @@
} }
if ( this.$clear.length ) { if ( this.$clear.length ) {
this.$clear.on( 'click' , $.proxy( this.clear, this ) ); this.$clear.on( 'click', $.proxy( this.clear, this ) );
} }
this.toggleClear(); this.toggleClear();
}, },
keyup: function( e ) { keyup: function ( e ) {
var suggestion, query, languageFilter; var suggestion, query, languageFilter;
switch( e.keyCode ) { switch ( e.keyCode ) {
case 9: // Tab -> Autocomplete case 9: // Tab -> Autocomplete
suggestion = this.$suggestion.val(); suggestion = this.$suggestion.val();
if ( suggestion && suggestion !== this.$element.val() ) { if ( suggestion && suggestion !== this.$element.val() ) {
this.$element.val( suggestion ); this.$element.val( suggestion );
e.preventDefault();
e.stopPropagation();
}
break;
case 13: // Enter
if ( !this.options.onSelect ) {
break;
}
// Avoid bubbling this 'enter' to background page elements
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
}
query = $.trim( this.$element.val() ).toLowerCase(); break;
case 13: // Enter
if ( this.selectedLanguage ) { if ( !this.options.onSelect ) {
// this.selectLanguage will be populated from a matching search
this.options.onSelect( this.selectedLanguage );
} else if ( this.options.languages[query] ) {
// Search is yet to happen (in timeout delay),
// but we have a matching language code.
this.options.onSelect( query );
}
break; break;
default: }
languageFilter = this;
if ( e.which < 32 && // Avoid bubbling this 'enter' to background page elements
e.which !== 8 // Backspace e.preventDefault();
) { e.stopPropagation();
// ignore any ASCII control characters
break; query = $.trim( this.$element.val() ).toLowerCase();
if ( this.selectedLanguage ) {
// this.selectLanguage will be populated from a matching search
this.options.onSelect( this.selectedLanguage );
} else if ( this.options.languages[ query ] ) {
// Search is yet to happen (in timeout delay),
// but we have a matching language code.
this.options.onSelect( query );
}
break;
default:
languageFilter = this;
if ( e.which < 32 &&
e.which !== 8 // Backspace
) {
// ignore any ASCII control characters
break;
}
this.selectedLanguage = null;
delay( function () {
if ( !languageFilter.$element.val() ) {
languageFilter.clear();
} else {
languageFilter.options.$target.empty();
languageFilter.search();
} }
}, 300 );
this.selectedLanguage = null; this.toggleClear();
delay( function() {
if ( !languageFilter.$element.val() ) {
languageFilter.clear();
} else {
languageFilter.options.$target.empty();
languageFilter.search();
}
}, 300 );
this.toggleClear();
} }
}, },
@@ -127,7 +131,7 @@
* Clears the current search removing * Clears the current search removing
* clear buttons and suggestions. * clear buttons and suggestions.
*/ */
deactivate: function() { deactivate: function () {
this.$element.val( '' ); this.$element.val( '' );
if ( !$.fn.uls.Constructor.prototype.isMobile() ) { if ( !$.fn.uls.Constructor.prototype.isMobile() ) {
@@ -141,16 +145,16 @@
/** /**
* Clears the search and shows all languages * Clears the search and shows all languages
*/ */
clear: function() { clear: function () {
this.deactivate(); this.deactivate();
this.$element.trigger( 'searchclear.uls' ); this.search();
}, },
/** /**
* Toggles the visibility of clear icon depending * Toggles the visibility of clear icon depending
* on whether there is anything to clear. * on whether there is anything to clear.
*/ */
toggleClear: function() { toggleClear: function () {
if ( !this.$clear.length ) { if ( !this.$clear.length ) {
return; return;
} }
@@ -163,41 +167,48 @@
}, },
search: function () { search: function () {
var langCode, var langCode, scriptGroup, langNum, languagesInScript,
languages = $.uls.data.getLanguagesByScriptGroup( this.options.languages ),
query = $.trim( this.$element.val() ); query = $.trim( this.$element.val() );
this.resultCount = 0; this.resultCount = 0;
for ( scriptGroup in languages ) {
languagesInScript = languages[ scriptGroup ];
languagesInScript.sort( $.uls.data.sortByAutonym );
for ( langNum = 0; langNum < languagesInScript.length; langNum++ ) {
langCode = languagesInScript[ langNum ];
if ( query === '' || this.filter( langCode, query ) ) {
if ( this.resultCount === 0 ) {
// Autofill the first result.
this.autofill( langCode );
}
for ( langCode in this.options.languages ) { if ( query.toLowerCase() === langCode ) {
if ( query === '' || this.filter( langCode, query ) ) { this.selectedLanguage = langCode;
if ( this.resultCount === 0 ) { }
// Autofill the first result.
this.autofill( langCode );
}
if ( query.toLowerCase() === langCode ) { if ( this.render( langCode ) ) {
this.selectedLanguage = langCode; this.resultCount++;
} }
if ( this.render( langCode ) ) {
this.resultCount++;
} }
} }
}
// Also do a search by search API // Also do a search by search API
if( !this.resultCount && this.options.searchAPI && query ) { if ( !this.resultCount && this.options.searchAPI && query ) {
this.searchAPI( query ); this.searchAPI( query );
} else { } else {
this.resultHandler( query ); this.resultHandler( query );
}
} }
}, },
searchAPI: function( query ) { searchAPI: function ( query ) {
var languageFilter = this; var languageFilter = this;
$.get( languageFilter.options.searchAPI, { search: query }, function( result ) { $.get( languageFilter.options.searchAPI, {
$.each( result.languagesearch, function( code, name ) { search: query
}, function ( result ) {
$.each( result.languagesearch, function ( code, name ) {
if ( languageFilter.resultCount === 0 ) { if ( languageFilter.resultCount === 0 ) {
// Autofill the first result. // Autofill the first result.
languageFilter.autofill( code, name ); languageFilter.autofill( code, name );
@@ -219,16 +230,18 @@
* Based on search result triggers resultsfound or noresults events * Based on search result triggers resultsfound or noresults events
* @param query string * @param query string
*/ */
resultHandler: function( query ) { resultHandler: function ( query ) {
if ( this.resultCount === 0 ) { if ( this.resultCount === 0 ) {
this.$suggestion.val( '' ); this.$suggestion.val( '' );
this.$element.trigger( 'noresults.uls', query ); this.$element.trigger( 'noresults.uls', query );
} else { } else {
this.$element.trigger( 'resultsfound.uls', [query, this.resultCount] ); this.$element.trigger( 'resultsfound.uls', [ query, this.resultCount ] );
} }
}, },
autofill: function( langCode, languageName ) { autofill: function ( langCode, languageName ) {
var autonym, userInput, suggestion;
if ( !this.$suggestion.length ) { if ( !this.$suggestion.length ) {
return; return;
} }
@@ -239,15 +252,14 @@
} }
this.selectedLanguage = langCode; this.selectedLanguage = langCode;
languageName = languageName || this.options.languages[langCode]; languageName = languageName || this.options.languages[ langCode ];
if ( !languageName ) { if ( !languageName ) {
return; return;
} }
var autonym, userInput = this.$element.val();
userInput = this.$element.val(), suggestion = userInput + languageName.substring( userInput.length, languageName.length );
suggestion = userInput + languageName.substring( userInput.length, languageName.length );
if ( suggestion.toLowerCase() !== languageName.toLowerCase() ) { if ( suggestion.toLowerCase() !== languageName.toLowerCase() ) {
// see if it was autonym match // see if it was autonym match
@@ -268,7 +280,7 @@
this.$suggestion.val( suggestion ); this.$suggestion.val( suggestion );
}, },
render: function( langCode ) { render: function ( langCode ) {
var $target = this.options.$target; var $target = this.options.$target;
if ( !$target ) { if ( !$target ) {
@@ -278,7 +290,7 @@
return $target.append( langCode ); return $target.append( langCode );
}, },
escapeRegex: function( value ) { escapeRegex: function ( value ) {
return value.replace( /[\-\[\]{}()*+?.,\\\^$\|#\s]/g, '\\$&' ); return value.replace( /[\-\[\]{}()*+?.,\\\^$\|#\s]/g, '\\$&' );
}, },
@@ -290,10 +302,10 @@
* c) ISO 639 code match with search string. * c) ISO 639 code match with search string.
* d) ISO 15924 code for the script match the search string. * d) ISO 15924 code for the script match the search string.
*/ */
filter: function( langCode, searchTerm ) { filter: function ( langCode, searchTerm ) {
// FIXME script is ISO 15924 code. We might need actual name of script. // FIXME script is ISO 15924 code. We might need actual name of script.
var matcher = new RegExp( '^' + this.escapeRegex( searchTerm ), 'i' ), var matcher = new RegExp( '^' + this.escapeRegex( searchTerm ), 'i' ),
languageName = this.options.languages[langCode]; languageName = this.options.languages[ langCode ];
return matcher.test( languageName ) || return matcher.test( languageName ) ||
matcher.test( $.uls.data.getAutonym( langCode ) ) || matcher.test( $.uls.data.getAutonym( langCode ) ) ||
@@ -306,15 +318,15 @@
if ( !isSupported ) { if ( !isSupported ) {
this.$element.setAttribute( eventName, 'return;' ); this.$element.setAttribute( eventName, 'return;' );
isSupported = typeof this.$element[eventName] === 'function'; isSupported = typeof this.$element[ eventName ] === 'function';
} }
return isSupported; return isSupported;
} }
}; };
$.fn.languagefilter = function( option ) { $.fn.languagefilter = function ( option ) {
return this.each( function() { return this.each( function () {
var $this = $( this ), var $this = $( this ),
data = $this.data( 'languagefilter' ), data = $this.data( 'languagefilter' ),
options = typeof option === 'object' && option; options = typeof option === 'object' && option;
@@ -324,7 +336,7 @@
} }
if ( typeof option === 'string' ) { if ( typeof option === 'string' ) {
data[option](); data[ option ]();
} }
} ); } );
}; };
@@ -340,13 +352,14 @@
/** /**
* Check if a prefix is visually prefix of a string * Check if a prefix is visually prefix of a string
* @param prefix string *
* @param string string * @param {string} prefix
* @param {string} string
*/ */
function isVisualPrefix( prefix, string ) { function isVisualPrefix( prefix, string ) {
// Pre-base vowel signs of Indic languages. A vowel sign is called pre-base if // Pre-base vowel signs of Indic languages. A vowel sign is called pre-base if
// consonant + vowel becomes [vowel][consonant] when rendered. Eg: ക + െ => കെ // consonant + vowel becomes [vowel][consonant] when rendered. Eg: ക + െ => കെ
var prebases = 'െേൈൊോൌெேைொோௌେୈୋୌિਿिিেৈোৌෙේෛොෝෞ'; var prebases = 'െേൈൊോൌெேைொோௌେୈୋୌિਿिিেৈোৌෙේෛොෝෞ';
return prebases.indexOf( string[prefix.length] ) <= 0; return prebases.indexOf( string[ prefix.length ] ) <= 0;
} }
} ( jQuery ) ); }( jQuery ) );

View File

@@ -368,7 +368,7 @@
.data( 'i18n', 'uls-no-results-suggestion-title' ) .data( 'i18n', 'uls-no-results-suggestion-title' )
.text( 'You may be interested in:' ) .text( 'You may be interested in:' )
.i18n(); .i18n();
this.$noResults.find( 'h2' ).after( $suggestions ); this.$noResults.find( 'h2' ).after( $suggestions.show() );
}, },
listen: function () { listen: function () {

View File

@@ -1,130 +0,0 @@
/**
* Region Filter for ULS
*
* 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';
/**
* Region selector is a language selector based on regions.
* that defines the regiongroup for the selector.
*/
var RegionSelector = function ( options ) {
this.options = options;
this.regions = [];
this.cache = null;
this.init();
};
RegionSelector.prototype = {
constructor: RegionSelector,
init: function () {
this.regions = this.options.regions || $.uls.data.getAllRegions();
this.show();
},
test: function ( langCode ) {
var region, i,
langRegions = $.uls.data.getRegions( langCode );
for ( i = 0; i < this.regions.length; i++ ) {
region = this.regions[ i ];
if ( $.inArray( region, langRegions ) >= 0 ) {
this.render( langCode, region );
this.cache[ langCode ] = region;
return;
}
}
},
show: function () {
var result, languagesByScriptGroup, scriptGroup, languages, i,
$target = this.options.$target && this.options.$target.$target,
$parent = $target && $target.parent(),
$prev = $target && $target.prev();
if ( $target && $parent ) {
// Avoid reflows while adding new elements to the list
// Use .detach() to keep jQuery events and data associated with elements
$target.detach();
}
if ( this.cache ) {
// If the result cache is present, render the results from there.
//noinspection JSUnusedAssignment
result = null;
for ( result in this.cache ) {
this.render( result, this.cache[ result ] );
}
} else {
this.cache = {};
// Get the languages grouped by script group
languagesByScriptGroup = $.uls.data.getLanguagesByScriptGroup( this.options.languages );
// Make sure that we go by the original order
// of script groups
for ( scriptGroup in $.uls.data.scriptgroups ) {
// Get the languages for the script group
languages = languagesByScriptGroup[ scriptGroup ];
// It's possible that some script groups are missing
if ( !languages ) {
continue;
}
// Sort it based on autonym
languages.sort( $.uls.data.sortByAutonym );
for ( i = 0; i < languages.length; i++ ) {
// Check whether it belongs to the region
this.test( languages[ i ] );
}
}
}
if ( $target && $parent ) {
// Restore the element to where we removed it from
if ( $prev ) {
$prev.after( $target );
} else {
$parent.append( $target );
}
}
if ( this.options.success ) {
this.options.success( this );
}
},
render: function ( langCode, region ) {
var $target = this.options.$target;
if ( !$target ) {
return;
}
$target.append( langCode, region );
}
};
$.uls.RegionSelector = RegionSelector;
}( jQuery ) );