
- settings.js now has its own module : 'jamstash.settings.controller'. This makes it easier to test it and identify what dependencies it has. - Renames 'jamstash.settings' module into 'jamstash.settings.service' - Adds an angular constant to hold the current Jamstash version in app.js. - Adds a way to upgrade incrementally what was in localStorage : in 4.4.5, DefaultSearchType will no longer be an object but an int, so we must init it with an int value, otherwise a blank option will be displayed. We detect what version we are using and what version was stored using persistence-service.js and run the upgrade accordingly. - Refactors almost completely persistence-service_test.js - Unit-tests some of settings.js's methods.
107 lines
3.3 KiB
JavaScript
107 lines
3.3 KiB
JavaScript
'use strict';
|
|
/**
|
|
* jamstash.persistence Module
|
|
*
|
|
* Provides load, save and delete operations for the current song and queue.
|
|
* Data storage provided by HTML5 localStorage.
|
|
*/
|
|
angular.module('jamstash.persistence', ['angular-locker',
|
|
'jamstash.settings.service', 'jamstash.player.service', 'jamstash.notifications'])
|
|
|
|
.config(['lockerProvider', function (lockerProvider) {
|
|
lockerProvider.setDefaultDriver('local')
|
|
.setDefaultNamespace(false)
|
|
.setEventsEnabled(false);
|
|
}])
|
|
|
|
.service('persistence', ['globals', 'player', 'notifications', 'locker', 'jamstashVersion',
|
|
function (globals, player, notifications, locker, jamstashVersion) {
|
|
/* Manage current track */
|
|
this.loadTrackPosition = function () {
|
|
// Load Saved Song
|
|
var song = locker.get('CurrentSong');
|
|
if (song) {
|
|
player.load(song);
|
|
}
|
|
if (globals.settings.Debug) { console.log('Current Position Loaded from localStorage: ', song); }
|
|
};
|
|
|
|
this.saveTrackPosition = function (song) {
|
|
locker.put('CurrentSong', song);
|
|
if (globals.settings.Debug) { console.log('Saving Current Position: ', song); }
|
|
};
|
|
|
|
this.deleteTrackPosition = function () {
|
|
locker.forget('CurrentSong');
|
|
if (globals.settings.Debug) { console.log('Removing Current Position from localStorage'); }
|
|
};
|
|
|
|
/* Manage playing queue */
|
|
this.loadQueue = function () {
|
|
// load Saved queue
|
|
var queue = locker.get('CurrentQueue');
|
|
if (queue) {
|
|
player.addSongs(queue);
|
|
if (player.queue.length > 0) {
|
|
notifications.updateMessage(player.queue.length + ' Saved Song(s)', true);
|
|
}
|
|
if (globals.settings.Debug) { console.log('Play Queue Loaded from localStorage: ' + player.queue.length + ' song(s)'); }
|
|
}
|
|
};
|
|
|
|
this.saveQueue = function () {
|
|
locker.put('CurrentQueue', player.queue);
|
|
if (globals.settings.Debug) { console.log('Saving Queue: ' + player.queue.length + ' songs'); }
|
|
};
|
|
|
|
this.deleteQueue = function () {
|
|
locker.forget('CurrentQueue');
|
|
if (globals.settings.Debug) { console.log('Removing Play Queue from localStorage'); }
|
|
};
|
|
|
|
/* Manage player volume */
|
|
this.getVolume = function () {
|
|
return locker.get('Volume');
|
|
};
|
|
|
|
this.saveVolume = function (volume) {
|
|
locker.put('Volume', volume);
|
|
};
|
|
|
|
this.deleteVolume = function () {
|
|
locker.forget('Volume');
|
|
};
|
|
|
|
/* Manage user settings */
|
|
this.getSettings = function () {
|
|
if(this.getVersion() !== jamstashVersion) {
|
|
this.upgradeToVersion(jamstashVersion);
|
|
}
|
|
return locker.get('Settings');
|
|
};
|
|
|
|
this.saveSettings = function (settings) {
|
|
locker.put('Settings', settings);
|
|
};
|
|
|
|
this.deleteSettings = function () {
|
|
locker.forget('Settings');
|
|
};
|
|
|
|
/* Manage Jamstash Version */
|
|
this.getVersion = function () {
|
|
return locker.get('version');
|
|
};
|
|
|
|
this.upgradeToVersion = function (version) {
|
|
locker.put('version', version);
|
|
switch (version) {
|
|
case '4.4.5':
|
|
var settings = locker.get('Settings');
|
|
settings.DefaultSearchType = 0;
|
|
this.saveSettings(settings);
|
|
break;
|
|
}
|
|
};
|
|
}]);
|
|
|