mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Firefox: different kind of vAPI.localStorage
This commit is contained in:
parent
32837deba6
commit
5ae7687e56
1 changed files with 25 additions and 12 deletions
|
@ -120,21 +120,34 @@ vAPI.closePopup = function() {
|
|||
// This storage is optional, but it is nice to have, for a more polished user
|
||||
// experience.
|
||||
|
||||
Object.defineProperty(vAPI, 'localStorage', {
|
||||
get: function() {
|
||||
if ( this._localStorage ) {
|
||||
return this._localStorage;
|
||||
vAPI.localStorage = {
|
||||
PB: Services.prefs.getBranch('extensions.' + location.host + '.'),
|
||||
str: Components.classes['@mozilla.org/supports-string;1']
|
||||
.createInstance(Components.interfaces.nsISupportsString),
|
||||
getItem: function(key) {
|
||||
try {
|
||||
return this.PB.getComplexValue(
|
||||
key, Components.interfaces.nsISupportsString
|
||||
).data;
|
||||
} catch (ex) {
|
||||
return null;
|
||||
}
|
||||
|
||||
this._localStorage = Services.domStorageManager.getLocalStorageForPrincipal(
|
||||
Services.scriptSecurityManager.getCodebasePrincipal(
|
||||
Services.io.newURI('http://ublock.raymondhill.net/', null, null)
|
||||
),
|
||||
''
|
||||
},
|
||||
setItem: function(key, value) {
|
||||
this.str.data = value;
|
||||
this.PB.setComplexValue(
|
||||
key,
|
||||
Components.interfaces.nsISupportsString,
|
||||
this.str
|
||||
);
|
||||
return this._localStorage;
|
||||
},
|
||||
removeItem: function(key) {
|
||||
this.PB.clearUserPref(key);
|
||||
},
|
||||
clear: function() {
|
||||
this.PB.deleteBranch('');
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/******************************************************************************/
|
||||
|
||||
|
|
Loading…
Reference in a new issue