jam-cloud/jam-ui
Nuwan 96d8f97175 refactor(28-02): route VU data to external store
- Import vuStore in useMixerStore.js
- Replace mixerHelper.updateVU call with vuStore.updateLevel
- VU data now flows to external store instead of React state
- Native bridge still calls at 50-70/sec but updates are buffered

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-03-03 20:25:08 +05:30
..
cicd fix signup path 2025-03-27 12:25:28 +05:30
cypress leave session feature 2025-12-11 15:38:05 +05:30
docs feat: Phase 3 - migrate entity collections to Redux with comprehensive testing 2026-01-12 16:52:21 +05:30
public media players related updates 2026-03-03 09:47:59 +05:30
src refactor(28-02): route VU data to external store 2026-03-03 20:25:08 +05:30
test fix(24-01): complete recording stop functionality 2026-02-23 20:41:31 +05:30
tests/helpers wip session screen base 2025-09-20 22:00:36 +05:30
.browserslistrc added updated files 2021-10-13 22:51:29 +05:30
.env.development.example wip 2025-09-30 00:27:48 +05:30
.env.production wip 2025-09-30 00:27:48 +05:30
.env.staging wip 2025-09-30 00:27:48 +05:30
.eslintrc.json MR is ready for review 2025-02-27 07:55:08 -06:00
.gitignore remove jam-ui/.env.development 2026-02-23 21:00:16 +05:30
.gitlab-ci.yml added updated files 2021-10-13 22:51:29 +05:30
.nvmrc session lobby with global chat feature 2024-01-02 02:23:21 +05:30
.prettierrc added updated files 2021-10-13 22:51:29 +05:30
.python-version change to api musician filter to minimize the database queries 2022-10-18 22:07:15 +05:30
CRITICAL_BUG_FIX_JAMCLIENT.md WIP: Track sync implementation with TDD approach 2026-01-23 12:28:40 +05:30
README.md Update signups aggressively as they occur (realtime), and fix some affiliate and jamtrack flows 2025-03-10 15:36:25 -05:00
TDD_IMPLEMENTATION_COMPLETE_SUMMARY.md WIP: Track sync implementation with TDD approach 2026-01-23 12:28:40 +05:30
TDD_TRACK_SYNC_PROGRESS.md WIP: Track sync implementation with TDD approach 2026-01-23 12:28:40 +05:30
TDD_WIRING_COMPLETE.md WIP: Track sync implementation with TDD approach 2026-01-23 12:28:40 +05:30
TRACK_CONFIG_IMPLEMENTATION_PLAN.md WIP: Track sync implementation with TDD approach 2026-01-23 12:28:40 +05:30
TRACK_CONFIG_QUESTIONS_ANSWERED.md WIP: Track sync implementation with TDD approach 2026-01-23 12:28:40 +05:30
VU_METER_FIX_SUMMARY.md docs: add VU meter fix documentation and test results 2026-01-23 14:57:39 +05:30
VU_METER_INVESTIGATION.md docs: add VU meter fix documentation and test results 2026-01-23 14:57:39 +05:30
cypress.config.js reduce number of sql queries in musicians filter 2022-10-20 17:53:23 +05:30
cypress.env.json auth e2e test 2021-10-13 22:51:30 +05:30
gulpfile.js MR is ready for review 2025-02-27 07:55:08 -06:00
package-lock.json feat(28-01): create external VU store with RAF batching 2026-03-03 20:19:41 +05:30
package.json feat(28-01): create external VU store with RAF batching 2026-03-03 20:19:41 +05:30
playwright.chrome.config.ts test: add Playwright test infrastructure for session flow verification 2026-01-23 15:42:35 +05:30
playwright.config.ts setup playwright e2e tests 2021-10-15 17:36:58 +05:30
playwright.verification.config.ts test: add Playwright test infrastructure for session flow verification 2026-01-23 15:42:35 +05:30
run-phase-tests.sh feat: Phase 3 - migrate entity collections to Redux with comprehensive testing 2026-01-12 16:52:21 +05:30
server.js added updated files 2021-10-13 22:51:29 +05:30

README.md

JamKazam new react frontend UI/UX

jam-ui is a react app created using create-react-app utility. to run the app on your development environment you need to cd jam-ui and run npm run start

The changes to the source files are auto-loaded but sometimes you might need to force close it by crtl+c and then start manually.

The application files goes under src and the react components are placed under src/components directory. We have a convention of naming the files using JK prefix in the filename. For example JKMusicSessions.

The routes are defined in jam-ui/src/components/dashboard/JKDashboardMain.js

Running react app

In production this React app is supposed to run on beta.jamkazam.com subdomain which is same origin domain to the production Rails app (www.jamkazam.com). This way we utilize same session based user authentication of Rails web app for authenticating users. (It looks for remember_token session cookie in headers and if it is not availale redirect the user to Rails web app sign in page)

The DOMAIN and PORT running this app is defined in env.production file. This file also has env variables for connecting with Rails app. (When setting up in development you can copy the content of env.development.example in to env.development.local and change them according to your host setup)

HOST=beta.jamkazam.local PORT=4000 REACT_APP_CLIENT_BASE_URL=http://www.jamkazam.local:3000 REACT_APP_API_BASE_URL=http://www.jamkazam.local:3000/api

Subdomains setup (development)

You need 2 host records created for React and and Rails app. For example

127.0.0.1 www.jamkazam.local #for Rails app 127.0.0.1 beta.jamkazam.local #for React app

Installing npm dependencies

cd jam-ui npm install

Running the app

cd jam-ui npm run start

This will open it in a borwser window at http://beta.jamkazam.local:3000. Of course for it to work you also need Rails (web) app and websocket app (websocket-gateway) running.