Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Persist Queue State Across Sessions #1601

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/app/app/store/configureStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export default function configureStore(initialState) {
'downloads',
'local.expandedFolders',
'plugin.selected',
'nuclear.identity'
'nuclear.identity',
'queue.queueItems',
'queue.currentSong'
])
)
);
Expand Down
4 changes: 3 additions & 1 deletion packages/app/app/store/enhancers/syncStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ export default function (paths) {
try {
for (const path of paths) {
const persistedValue = electronStore.get(path);
finalInitialState = _.setWith(_.clone(finalInitialState), path, persistedValue, _.clone); // deep, immutable set
if (persistedValue !== undefined) {
finalInitialState = _.setWith(_.clone(finalInitialState), path, persistedValue, _.clone); // deep, immutable set
}
}
} catch (e) {
logger.warn(
Expand Down
49 changes: 49 additions & 0 deletions packages/app/app/store/enhancers/syncStorage.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

import {
initialStoreState,
mockElectronStore
} from '../../../test/mockElectronStore';
import { configureMockStore } from '../../../test/testUtils';

describe('Store Initialization and Sync with electronStore', () => {
let store;
const mockedStore = mockElectronStore(initialStoreState());


jest.mock('@nuclear/core', () => ({
store: mockedStore
}));

beforeEach(() => {
mockedStore.set('queue.queueItems', [{ uuid: 1, title: 'Initial Song' }]);
mockedStore.set('queue.currentSong', 0);
mockedStore.set('nuclear.identity', { userId: '123' });

store = configureMockStore();
});

it('loads initial state from electronStore correctly', () => {
const state = store.getState();
expect(state.queue.queueItems).toEqual([
{ uuid: 1, title: 'Initial Song' }
]);
expect(state.queue.currentSong).toEqual(0);
expect(state.nuclear.identity).toEqual({ userId: '123' });
});

it('updates electronStore when state changes', () => {
store.dispatch({
type: 'UPDATE_QUEUE_ITEMS',
payload: [{ uuid: 2, title: 'New Song' }]
});
store.dispatch({
type: 'UPDATE_CURRENT_SONG',
payload: 1
});

expect(mockedStore.get('queue.queueItems')).toEqual([
{ uuid: 2, title: 'New Song' }
]);
expect(mockedStore.get('queue.currentSong')).toEqual(1);
});
});
6 changes: 5 additions & 1 deletion packages/app/test/mockElectronStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ export const initialStoreState = () => ({
albums: [],
tracks: []
},
playlists: []
playlists: [],
queue: {
queueItems: [],
currentSong: null
}
});

export type MockStore = ReturnType<typeof initialStoreState>;
Expand Down
4 changes: 4 additions & 0 deletions packages/app/test/storeBuilders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,10 @@ export const buildElectronStoreState = (overrides?: AnyProps) => {
albums: [],
tracks: []
},
queue: {
queueItems: [],
currentSong: 0
},
playlists: [],
...overrides
};
Expand Down
6 changes: 5 additions & 1 deletion packages/app/test/testUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ export const configureMockStore = (initialState?: AnyProps) => createStore(
initialState,
compose(
applyMiddleware(ReduxPromise, thunk),
syncStore(['downloads'])
syncStore([
'downloads',
'queue.queueItems',
'queue.currentSong'
])
)
);

Expand Down