Files
mediawiki-extensions-Univer…/resources/js/ext.uls.preferences.js
jdlrobson f8fde38197 Use require to clarify ext.uls.preferences
ext.uls.preferences only depended on ext.uls.common because of its
use of the uls global. This is unnecessary, and made clearer by using
require and module.exports to access it.

Change-Id: Ied2a1b560d19a18529fd766ced778c912199fa2f
2020-10-20 16:08:59 +00:00

158 lines
3.6 KiB
JavaScript

/*!
* ULS preferences system for MediaWiki.
* Localstorage for anonymous users, preferences for logged in users.
*
* 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 ULSPreferences;
/**
* Wrapper for localStorage, falls back to cookie
* when localStorage not supported by browser.
*
* @return {Object}
*/
function preferenceStore() {
// If value is detected, set new or modify store
return {
/*
* Set the value to the given key
* @param {string} key
* @param {Object} value value to be set
*/
set: function ( key, value ) {
// Convert object values to JSON
if ( typeof value === 'object' ) {
value = JSON.stringify( value );
}
try {
localStorage.setItem( key, value );
} catch ( e ) {}
},
/*
* Returns the value of the given key
* @param {string} key
* @return {Object} value of the key
*/
get: function ( key ) {
var data;
try {
data = JSON.parse( localStorage.getItem( key ) );
} catch ( e ) {}
return data;
}
};
}
ULSPreferences = function () {
this.preferenceName = 'uls-preferences';
this.username = mw.user.getName();
this.isAnon = mw.user.isAnon();
this.preferences = null;
this.init();
};
ULSPreferences.prototype = {
/**
* Initialize
*/
init: function () {
var options;
if ( this.isAnon ) {
this.preferences = preferenceStore().get( this.preferenceName );
} else {
options = mw.user.options.get( this.preferenceName );
if ( !options ) {
options = '{}';
}
// Try to parse JSON
try {
this.preferences = JSON.parse( options );
} catch ( e ) {
this.preferences = {};
}
}
this.preferences = this.preferences || {};
},
/**
* Set the preference
*
* @param {string} key
* @param {Mixed} value
*/
set: function ( key, value ) {
this.preferences[ key ] = value;
},
/**
* Get a preference value for the given preference name
*
* @param {string} key
* @return {Mixed}
*/
get: function ( key ) {
return this.preferences[ key ];
},
/**
* Save the preferences
*
* @param {Function} callback
*/
save: function ( callback ) {
var ulsPreferences = this;
callback = callback || function () {};
if ( this.isAnon ) {
// Anonymous user. Save preferences in local storage
preferenceStore().set( this.preferenceName, this.preferences );
callback.call( this, true );
} else {
// Logged in user. Use MW APIs to change preferences
new mw.Api().saveOption(
ulsPreferences.preferenceName,
JSON.stringify( ulsPreferences.preferences )
).done( function () {
callback.call( this, true );
} ).fail( function () {
callback.call( this, false );
} );
}
}
};
module.exports = function () {
var data = $( document.body ).data( 'preferences' );
if ( !data ) {
$( document.body ).data( 'preferences', ( data = new ULSPreferences() ) );
}
return data;
};
}() );