João Victor Nunes
b3403ffdf5
refactor(notes): Retire pads session manager ( #21269 )
2024-10-03 10:41:13 -03:00
André Castro
2ff6e7dfb6
style(layout/modal): Removing custom layout (visually) from layouts modal ( #21324 )
2024-10-03 10:23:21 -03:00
KDSBrowne
0dd2bb9446
remove duplicate undo and redo handlers ( #21327 )
2024-10-03 10:20:15 -03:00
Arthur B. Grossi
1dbc773aee
feat(chat): improve messages rendering ( #21323 )
...
* feat(chat): improve messages rendering
This commit adds memoization and comparsion functions to the chat pages
and chat messages to prevent whole chat re-renders and unnecessary
message re-renders caused by React's default shallow comparsion mechanism.
The comparsion functions ensure that only the pertinent message attributes
trigger a component's re-render.
Messages sent by a user are not updated (re-rendered) when their role
change. In other words, the chat messages reflect the user's role at the
time the message was sent. Altering the message to reflect the user's
current role could confuse participants, as it would modify the context
of the past conversation. This behavior has been validated by the UI/UX
team and brings benefits such as performance improvements and consistent
behavior with how playback handles such messages.
* fix linter errors
2024-10-03 10:10:52 -03:00
Tiago Jacobs
eecd48ae30
Merge pull request #21278 from GuiLeme/lms-plugin-adaptation
2024-10-02 21:12:33 -03:00
André Castro
834d64aaed
Fix wrong away toggle initial state ( #21337 )
2024-10-02 21:10:26 -03:00
Guilherme Leme
74dbf029bf
[lms-plugin-adaptation] - Code review
2024-10-02 19:09:07 -03:00
Guilherme Leme
c8d1cfcb72
[lms-plugin-adaptation] resolve conflicts
2024-10-02 18:38:40 -03:00
Ramón Souza
8d9febdef3
restore intl prop in activity check component ( #21331 )
2024-10-02 16:10:47 -04:00
Tainan Felipe
929a9bd5c0
Fix: close event emitting a terminal error ( #21299 )
2024-10-02 16:05:03 -03:00
Ramón Souza
f19a231b43
fix: pre selected item in reactions button - mobile ( #21325 )
2024-10-02 15:36:13 -03:00
André Castro
a1a4b66155
fix(meeting-ended/rating): Update star rating icon to improve visual representation. ( #21319 )
2024-10-02 11:04:37 -04:00
Ramón Souza
3630f92261
fix: raise hand remains selected on mobile devices ( #21315 )
2024-10-02 10:48:42 -03:00
André Castro
a6990fe368
style(reactions-button): Enhance mobile responsiveness and styling for toggle buttons and menu items. ( #21300 )
...
* style(reactions-button): Enhance mobile responsiveness and styling for toggle buttons and menu items.
* Update styles.js
2024-10-02 10:20:03 -03:00
Ramón Souza
d8817e8316
fix: respect animations setting in user avatar ( #21307 )
2024-10-02 09:37:12 -03:00
André Castro
26a0d00bdf
style(connection-status): Enhance mobile responsiveness for connection status and recording indicator components. ( #21305 )
2024-10-02 08:39:44 -03:00
André Castro
a198509c99
style(modal): Update modal styles for better positioning on small screens ( #21289 )
2024-10-01 15:43:02 -03:00
Gustavo Trott
3fb6dd71d2
Edit graphql type UserCamera to suport either camera or screenshare
...
Add fields:
contentType: to identify whether is camera or screenshare
hasAudio: useful for screenshare
focused: indicates if this screenshare will be shown in presentation area
2024-10-01 14:39:48 -03:00
Guilherme Leme
fd5dcb804b
[lms-plugin-adaptation] enhanced css style
2024-09-30 20:15:02 -03:00
André Castro
87964cabde
refactor/fix(settings): Refactor animation settings retrieval to fix problem with refreshing. ( #21284 )
2024-09-30 13:33:53 -03:00
Anton Georgiev
f283f11274
Merge pull request #21279 from ramonlsouza/fix-custom-locale
...
fix(audio-captions): label generation for audio captions with custom locales
2024-09-30 10:18:25 -04:00
Ramón Souza
f74a0657ba
refactor(styles): Update DtfInvert background color ( #21277 )
...
Refactor styles to update the background color of connection status bars in dark mode. The #connectionBars > div now has a background color of var(--darkreader-neutral-text)
2024-09-30 09:58:49 -03:00
João Victor Nunes
8e83d93eb0
feat(audio): track mute state by meeting ( #21095 )
2024-09-27 19:13:08 -04:00
Ramón Souza
365a5e2274
fix(audio-captions): label generation for audio captions with custom locales
...
This commit refactors the label generation for audio captions in the audio-captions button and captions components. Instead of directly using the intl formatMessage function, the label is now generated using the intlMessages object and the getLocaleName function from the audio-captions service. This change prevents an issue with custom locales.
2024-09-27 16:44:25 -03:00
Guilherme Leme
7cc90c1734
[lms-plugin-adaptation] Added new genericContentInformation along with refactor of fixedContentInformation for userListDropodownItem.
2024-09-27 14:48:05 -03:00
Gustavo Trott
a6ffe1350f
Merge pull request #21102 from gustavotrott/clone-user-session
...
feat (bbb-web): Implements session duplication with `getJoinUrl` endpoint
2024-09-27 11:33:47 -03:00
Átila
b62199683f
fix(video-preview): blur behavior correction ( #21112 )
...
* fix(video-preview): blur behavior correction
* fix(video-preview): blur behavior correction
* Update bigbluebutton-html5/imports/ui/components/video-preview/component.jsx
---------
Co-authored-by: Ramón Souza <contato@ramonsouza.com>
2024-09-27 10:29:46 -04:00
João Victor Nunes
9f18221fc9
fix: Custom styles not applying to loading screen ( #21263 )
...
* fix: Custom styles not applying to loading screen
* fix: Apply custom styles before rendering children
* fix: Use Object.assign instead of spread syntax
* fix: Add cleanup function to clear the timeout and abort the fetch
* fix: Clear the timeout if the fetch completes successfully
* refactor: Remove unused queries file
2024-09-27 10:28:26 -04:00
André Castro
ece4ab7ec2
refactor(settings/service): Refactor to remove unnecessary for notification. ( #21235 )
2024-09-27 10:27:19 -04:00
Guilherme Leme
beca90965e
[lms-plugin-adaptation] added title actions and refactored some logic related to extensible-area setters
2024-09-26 15:01:18 -03:00
Gustavo Trott
e70f18be6b
Merge branch 'v3.0.x-release' into clone-user-session
2024-09-26 13:32:22 -03:00
Anton Georgiev
35c29836b2
Merge pull request #21069 from KDSBrowne/bbb-21035
...
fix(whiteboard): Clear non-current page shapes from the tldraw store
2024-09-25 16:18:32 -04:00
João Victor Nunes
e43b1e454b
fix(timer): beep failing to play intermittently ( #21222 )
...
* fix(timer): beep failing to play intermittently
* fix(typescript): omit elapsed field from timer panel props
2024-09-25 15:42:16 -04:00
KDSBrowne
694dc2d4d9
fix(whiteboard): Correct tldraw camera after full screen exits ( #21232 )
...
* fix presenter resize error
* fix current tldraw camera position when exiting fullscreen
2024-09-25 14:54:21 -04:00
João Victor Nunes
8a106b7887
style(presentation-toast): apply toast styles ( #21239 )
...
* style(presentation-toast): apply toast styles
* Update bigbluebutton-html5/imports/ui/components/presentation/component.jsx
---------
Co-authored-by: Ramón Souza <contato@ramonsouza.com>
2024-09-25 12:16:43 -04:00
Anton Georgiev
6f5482dae3
Merge pull request #21139 from danielpetri1/show-poll-result-in-bbb-playback
...
refactor(bbb-html5): Remove custom poll shape
2024-09-25 10:39:56 -04:00
KDSBrowne
e54fb07423
add boundry check for creating tl-cameras | updates
2024-09-24 21:24:40 +00:00
KDSBrowne
7bfb485623
Merge branch 'v3.0.x-release' of https://github.com/bigbluebutton/bigbluebutton into bbb-21035
2024-09-24 18:45:26 +00:00
Anton Georgiev
229a4a0b92
Merge pull request #21187 from JoVictorNunes/app-component-cleanup-0912
...
refactor: App component cleanup, part 2
2024-09-24 14:42:53 -04:00
Anton Georgiev
575091b4b9
Merge pull request #21245 from ramonlsouza/sonarcloud-set24
...
refactor: sonarcloud alerts
2024-09-24 13:52:50 -04:00
Ramón Souza
8721b4b537
adjust confirmation modal props ( #21238 )
2024-09-24 09:48:40 -04:00
Gustavo Trott
394f01bf9f
resolve conflicts
2024-09-24 10:07:46 -03:00
Ramón Souza
e76b323567
remove unused import
2024-09-24 09:02:35 -03:00
Ramón Souza
128e568531
remove unused prop
2024-09-24 08:55:28 -03:00
Ramón Souza
cf09d183ea
remove empty object
2024-09-24 08:52:28 -03:00
Ramón Souza
946ec031fd
remove extra argument in function call
2024-09-24 08:49:53 -03:00
João Victor Nunes
c380378088
fix(connection): tweak shouldRetry
handler logging ( #21070 )
...
* fix(connection): tweak shouldRetry handler logging
* fix: Add extraInfo payloads
2024-09-23 19:26:49 -04:00
Anton Georgiev
919ae4cb00
Merge branch 'v3.0.x-release' into show-poll-result-in-bbb-playback
2024-09-23 16:06:42 -04:00
Anton Georgiev
0847134701
Merge pull request #21224 from germanocaumo/fix-whiteboard-partialupdates
...
fix(whiteboard): partial updates + some fixes
2024-09-23 15:39:14 -04:00
germanocaumo
0a984347a0
fix(tldraw): restore shapesVersion + customParam
2024-09-23 14:24:22 -03:00