You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some parts of Webamp will be hard to serialize (tracks, for example), but the rest of the app should be pretty possible to serialize, since we use Redux for pretty much everything.
Once we have a serializable state we could add a way to construct a new Webamp instance from that saved state. I'm not sure yet if this should be a static method: const webamp = Webamp.fromSavedState(savedState); or an additional property to the constructor options.
The text was updated successfully, but these errors were encountered:
Some parts of Webamp will be hard to serialize (tracks, for example), but the rest of the app should be pretty possible to serialize, since we use Redux for pretty much everything.
Once we have a serializable state we could add a way to construct a new Webamp instance from that saved state. I'm not sure yet if this should be a static method:
const webamp = Webamp.fromSavedState(savedState);
or an additional property to the constructor options.The text was updated successfully, but these errors were encountered: