Carlos Valente
445cc9e845
feat: time to next flag
2025-07-14 11:39:16 +02:00
Carlos Valente
637454f73d
feat: add flag property
2025-07-14 11:38:27 +02:00
Alex Christoffer Rasmussen
e9dda817e5
block end calculation ( #1683 )
2025-07-14 11:38:27 +02:00
Carlos Valente
fd9bf0120c
refactor: disable react compiler
2025-07-14 11:38:27 +02:00
Carlos Valente
e5f8a99bff
refactor: extract sentry
2025-07-13 12:33:50 +02:00
Carlos Valente
7305edc398
refactor: review timer styles
2025-07-13 12:33:50 +02:00
Carlos Valente
a69c5f354c
react 19 type migration
2025-07-13 12:33:50 +02:00
Carlos Valente
0eaec1f88f
refactor: timeline style tweaks
2025-07-13 12:33:50 +02:00
Carlos Valente
05d01e0863
refactor: timer design review
2025-07-12 18:41:17 +02:00
Carlos Valente
2aac4cb06d
refactor: remove deprecated views
2025-07-12 18:41:17 +02:00
Carlos Valente
1c6adbd2fd
refactor: upgrade react and add compiler
2025-07-12 18:41:17 +02:00
Carlos Valente
d24d5c1365
refactor: freeze is view option
2025-07-12 18:41:17 +02:00
Carlos Valente
138c6523d2
feat: implement custom project data image
2025-07-12 18:41:17 +02:00
Carlos Valente
d8c1c38123
refactor: fixes to custom field
2025-07-12 18:41:17 +02:00
Carlos Valente
4d419c0877
refactor: style tweaks and bug fixes
...
- italic and bold for rundown metadata entries
- allow deleting groups
- make groups in order
- correct style for milestones
- open playing groups
- style tweaks
2025-07-12 18:41:17 +02:00
Carlos Valente
e1e8410ba4
refactor: migrate UI components and remove chakra
...
migrate pin page
migrate copy tag
migrate pin input
migrate dropdown menus
migrate radio buttons
migrate switch
migrate select
migrate textarea
migrate colour picker
migrate select
migrate context menu
migrate viewparams
remove chakra
2025-07-11 08:43:38 +02:00
Alex Christoffer Rasmussen
4d359445a7
Fix ontime aux actions ( #1684 )
...
* switch to base ui
* ensure all action types is part of the valitation
* update test
* atempt to do it in the base-ui way
* fix fixing
* allow undefide visible on set timer message
* fix set time not showing
* correct time data for aux set automation
---------
Co-authored-by: Carlos Valente <carlosvalente@pm.me >
2025-07-09 13:14:23 +02:00
Carlos Valente
8d68a4554d
refactor: deprecate languages
2025-07-08 20:14:49 +02:00
Carlos Valente
6f34e1006b
refactor: migrate project data
2025-07-08 20:14:49 +02:00
Carlos Valente
1fc6f9b3ea
refactor: inline quick add
2025-07-08 16:34:23 +02:00
Carlos Valente
a1ad1d47a4
refactor: review action menu
2025-07-08 16:34:23 +02:00
Carlos Valente
9281c0b51d
refactor: update app menu links
2025-07-08 16:34:23 +02:00
Carlos Valente
4365c19498
refactor: review event entry
2025-07-08 16:34:23 +02:00
Carlos Valente
8728c1450b
refactor: rename block > group in UI elements
2025-07-08 16:34:23 +02:00
Carlos Valente
a98c14406d
refactor: remove isNextDay block property
2025-07-08 16:34:23 +02:00
Alex Christoffer Rasmussen
ab8bfbcd59
handle rearange in block ( #1682 )
2025-07-07 23:15:37 +02:00
Carlos Valente
f2913971db
feat: milestones
2025-07-07 18:22:10 +02:00
Carlos Valente
a7ae8598db
feat: add group metadata to overview
2025-07-07 18:22:10 +02:00
Carlos Valente
17a7d035bf
refactor: style cleanups and migrations
...
fix: close modal with button
refactor: small type improvements
refactor: migrate time inputs
refactor: migrate tooltips
refactor: prevent component resizing
2025-07-07 18:22:10 +02:00
Carlos Valente
6facd6a666
refactor: improve editor and cuesheet headers
...
- consistent behaviour for app mode
- improve navigation
2025-07-07 18:22:10 +02:00
Carlos Valente
79bcc179ba
refactor: style tweaks and ux improvements
2025-07-07 18:22:10 +02:00
Carlos Valente
3790681bec
fix: reordering out of a block
2025-07-07 18:22:10 +02:00
Carlos Valente
c32203c759
fix: search params editor conflicts with alias
2025-07-07 18:22:10 +02:00
Carlos Valente
5600235ba1
refactor: restructure settings
...
refactor: migrate react components
2025-07-04 15:32:33 +02:00
Carlos Valente
a8ea1080f3
refactor: migrate modal components
2025-07-04 15:24:14 +02:00
Carlos Valente
36223ff49f
fix: resizing columns in cuesheet
2025-07-04 08:55:46 +02:00
Carlos Valente
3ce5b42e05
refactor: prepare rundown loading process
2025-07-04 08:55:46 +02:00
Carlos Valente
c6c1e4a5d7
feat: share link from cuesheet
2025-07-04 08:55:46 +02:00
Carlos Valente
84b73fc02a
refactor: migrate related components
2025-07-04 08:55:46 +02:00
google-labs-jules[bot]
cd8e014f08
refactor: optimize cuesheet IntersectionObserver
...
Decouples the IntersectionObserver from the React component tree to
prevent
unnecessary re-renders of the entire Cuesheet table when row visibility
changes. Restores rootMargin for better UX and memoizes EventRow.
- Introduced `rowObserver.ts` to manage a global IntersectionObserver.
- Observer callback directly updates `useVisibleRowsStore`.
- Configured with `rootMargin: '400px 0px'` and `threshold: 0.01`
to pre-load and retain rows near the viewport, improving UX.
- `EventRow` components use `observeRow`/`unobserveRow` from
`rowObserver.ts`.
- `EventRow` is now wrapped in `React.memo` to prevent re-renders if
props
haven't changed when its parent re-renders.
- Removed observer creation and prop-drilling from `CuesheetBody.tsx`.
This ensures only individual rows re-render content based on visibility
and optimizes row component rendering, improving performance and UX.
2025-07-03 08:46:21 +02:00
Carlos Valente
2e9ee698e9
fix: rundown shortcuts
2025-07-03 08:46:21 +02:00
Carlos Valente
d06b5af538
refactor: upgrade base-ui
2025-07-03 08:46:21 +02:00
Carlos Valente
24a3823d3b
refactor: entry actions in cuesheet
...
fix: insert entry before
fix: avoid double submit on enter
fix: move events in the rundown
fix: clone groups
2025-07-03 08:46:21 +02:00
Carlos Valente
8ad260d28a
refactor: cuesheet design review
...
fix: parsing of custom fields for blocks
refactor: extract cuesheet settings
refactor: cuesheet actions
refactor: improve cuesheet performance on resizing
2025-07-03 08:46:21 +02:00
Carlos Valente
0726c04f20
refactor: align property names between block and event
2025-07-03 08:46:21 +02:00
Carlos Valente
aefa4cbf44
refactor: simple migrations and tweaks to cuesheet
2025-06-28 08:17:08 +02:00
Shobhit Nagpal
c8c2a05724
refactor: cuesheet time format ( #1634 )
2025-06-28 08:17:08 +02:00
Carlos Valente
9473880d2c
feat: notify clients to refetch custom fields
2025-06-27 20:50:48 +02:00
Carlos Valente
473f50b493
feat: edit groups
2025-06-27 20:50:48 +02:00
Carlos Valente
4c08482258
refactor: extract button styles
2025-06-27 20:50:48 +02:00