Projects in development include a new framework for building apps more quickly (using React, Alt-Flux, and Material-UI)
SubFire Radio is just my own system. - it works on the rules, the 'generators', you configure it with. It has reference to the subsonic access (API) to last.fm info for 'similar artists' but that's the closest to external it integrates with. All the app does is configure the rules and generate playlists (which store those rules in json as comments), and then my subfire players can run those generators at runtime to create a unique play queue on demand.
i looked at alt-ng but the changes in direction don't impress me. i'm comfortable with what i have.
the framework is "subfirebase" - it has browser for bookmarks, radio playlists, regular playlists, folders/files, and artists/albums, and a loading component that loads the items as you pick them (All through react-router). then each player just has to create its framing and its player - so i have a dashboard app that is landscape mode, and simpler (no support for file/folder/artist/album browsing -- too distracting in a car), and a full portrait mode mobile player (the replacement for the chrome extension version). The framework took about 9 months, and is itself a standalone web app/PWA...it just doesn't look 'great' because that wasn't the goal. it was a proof of concept for each feature/button...then the players can pick which of those buttons/features they want to support and where they go. the all-in-one approach I tried the first time, where the same app works on a phone and works on a TV, just doesn't really scale right - it is imperfect in both and that wasn't where i wanted it to be.
I have no need for native. PWA is fine by me. I have no need to 'compete' in the webstores with the multiple Android and IOS apps already there. The only exception is the amazon store for FireOS devices (TV and Tablet), the new TV version is still a work in progress (trying to get closer to the Android TV layout specification).
hi i want add new makeSelector add to project but this err TypeError: Cannot read property 'toJS' of undefined
(anonymous function)
src/store/ducks/inventories/selectors.js:26
23 |
24 | export const makeSelectProcurements = createSelector(
25 | selectProcurements,
26 | (substate) => substate.toJS(),
27 | );
28 |
29 |
TypeError: Class constructor xxxStore cannot be invoked without 'new'
. Running the code itself is fine, not sure if everyone has any idea?
So I'm upgrading from 0.17.8 to latest, and it seems like alt.js used to support dispatching actions that didn't return anything?
elementSyncComplete() {
this.dispatch();
}
Now following through the migration guide where this.dispatch
calls are replaced by return
So now I have:
elementSyncComplete() {
return;
}
But this does not work now, the action does not get dispatched. What's the recommended approach for this?
Hi everyone! Sorry if someone already asked and answer this question, I am having a tough time trying to figure out testing with alt. Essentially my setup is create-react-app with alt, and when I follow the store testing tutorial, I always ended up with
TypeError: Class constructor xxxStore cannot be invoked without 'new'
. Running the code itself is fine, not sure if everyone has any idea?
sounds like you forgot a "new" keyword
Good Morning everyone !!
@CrazyPython James I am also facing the same issue. I am trying to run alt-tutorial demo from 'https://github.com/goatslacker/alt-tutorial' using create-react-app with some modification but I also got stock.
Please help if someone has already faced this issue . Repo link where I am facing issue is https://github.com/gouravmakhija18/flux-demo
Note: I don't want to update Alt package with https://www.npmjs.com/package/isb-alt to resolve this issue.