snappymail/dev/Storage/Client.js

54 lines
980 B
JavaScript
Raw Normal View History

2014-09-05 06:49:03 +08:00
(function () {
2014-08-25 23:49:01 +08:00
'use strict';
2014-08-20 23:03:12 +08:00
/**
* @constructor
*/
function ClientStorage()
{
2014-08-20 23:03:12 +08:00
var
NextStorageDriver = require('_').find([
require('Common/ClientStorageDriver/LocalStorage'),
require('Common/ClientStorageDriver/Cookie')
2014-08-27 23:59:44 +08:00
], function (NextStorageDriver) {
return NextStorageDriver && NextStorageDriver.supported();
2014-08-20 23:03:12 +08:00
})
;
2014-08-25 23:49:01 +08:00
this.oDriver = null;
2014-08-20 23:03:12 +08:00
if (NextStorageDriver)
{
this.oDriver = new NextStorageDriver();
}
}
2014-08-20 23:03:12 +08:00
2014-09-02 19:34:17 +08:00
/**
* @type {LocalStorageDriver|CookieDriver|null}
*/
ClientStorage.prototype.oDriver = null;
2014-08-20 23:03:12 +08:00
/**
* @param {number} iKey
* @param {*} mData
* @return {boolean}
*/
ClientStorage.prototype.set = function (iKey, mData)
2014-08-20 23:03:12 +08:00
{
return this.oDriver ? this.oDriver.set('p' + iKey, mData) : false;
};
/**
* @param {number} iKey
* @return {*}
*/
ClientStorage.prototype.get = function (iKey)
2014-08-20 23:03:12 +08:00
{
return this.oDriver ? this.oDriver.get('p' + iKey) : null;
};
module.exports = new ClientStorage();
2014-08-20 23:03:12 +08:00
2014-09-05 06:49:03 +08:00
}());