From d40e467b7d3eb7b7a1320214bd328e352920412c Mon Sep 17 00:00:00 2001 From: Abhi Jain Date: Wed, 8 Feb 2023 14:26:56 +0530 Subject: [PATCH 01/43] changes Loading room... to Loading... --- src/room/GroupCallLoader.tsx | 2 +- src/room/GroupCallView.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/room/GroupCallLoader.tsx b/src/room/GroupCallLoader.tsx index 4af3dc3..ab1b187 100644 --- a/src/room/GroupCallLoader.tsx +++ b/src/room/GroupCallLoader.tsx @@ -51,7 +51,7 @@ export function GroupCallLoader({ if (loading) { return ( -

{t("Loading room…")}

+

{t("Loading...")}

); } diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index 8867ed4..da6196e 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -279,7 +279,7 @@ export function GroupCallView({ } else if (isEmbedded) { return ( -

{t("Loading room…")}

+

{t("Loading...")}

); } else { From 33dd2758d72bf1ce7a789885b2321eda3a7fdd06 Mon Sep 17 00:00:00 2001 From: Abhi Jain Date: Mon, 13 Feb 2023 09:55:32 +0530 Subject: [PATCH 02/43] =?UTF-8?q?change=20...=20to=20=E2=80=A6=20unicode?= =?UTF-8?q?=20for=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/room/GroupCallLoader.tsx | 2 +- src/room/GroupCallView.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/room/GroupCallLoader.tsx b/src/room/GroupCallLoader.tsx index ab1b187..15a5f90 100644 --- a/src/room/GroupCallLoader.tsx +++ b/src/room/GroupCallLoader.tsx @@ -51,7 +51,7 @@ export function GroupCallLoader({ if (loading) { return ( -

{t("Loading...")}

+

{t("Loading…")}

); } diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index da6196e..76f062f 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -279,7 +279,7 @@ export function GroupCallView({ } else if (isEmbedded) { return ( -

{t("Loading...")}

+

{t("Loading…")}

); } else { From 8ab7ee92983baf4193acbba18b9090b527f5f064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Mon, 24 Apr 2023 12:24:27 +0200 Subject: [PATCH 03/43] i18n MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- public/locales/en-GB/app.json | 1 - 1 file changed, 1 deletion(-) diff --git a/public/locales/en-GB/app.json b/public/locales/en-GB/app.json index b2bfc56..d842fff 100644 --- a/public/locales/en-GB/app.json +++ b/public/locales/en-GB/app.json @@ -62,7 +62,6 @@ "Join call now": "Join call now", "Join existing call?": "Join existing call?", "Leave": "Leave", - "Loading room…": "Loading room…", "Loading…": "Loading…", "Local volume": "Local volume", "Logging in…": "Logging in…", From 8d56a8e8fcfdd3d7172b5e1f6b1362d6eca5f398 Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Thu, 13 Apr 2023 11:35:49 +0100 Subject: [PATCH 04/43] Fix #978 issue with builds not building. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9487319..ca31832 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "type": "module", "scripts": { "dev": "vite", - "build": "vite build", + "build": "NODE_OPTIONS=--max-old-space-size=16384 vite build", "serve": "vite preview", "storybook": "start-storybook -p 6006", "build-storybook": "build-storybook", From 323dba620d4a01e9ac14a42a275048e8890f8195 Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Wed, 19 Apr 2023 13:47:05 +0100 Subject: [PATCH 05/43] Add a range of data-testid tags to be able to cleanly identify parts of the application. --- src/home/JoinExistingCallModal.tsx | 2 +- src/home/UnauthenticatedView.tsx | 4 +++- src/icons/VideoMuted.svg | 2 +- src/room/LobbyView.tsx | 1 + src/room/VideoPreview.tsx | 2 +- src/video-grid/VideoTile.tsx | 5 +++-- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/home/JoinExistingCallModal.tsx b/src/home/JoinExistingCallModal.tsx index 0beae60..02d7cd2 100644 --- a/src/home/JoinExistingCallModal.tsx +++ b/src/home/JoinExistingCallModal.tsx @@ -43,7 +43,7 @@ export function JoinExistingCallModal({ onJoin, onClose, ...rest }: Props) {

{t("This call already exists, would you like to join?")}

- + diff --git a/src/home/UnauthenticatedView.tsx b/src/home/UnauthenticatedView.tsx index c31637b..be20d70 100644 --- a/src/home/UnauthenticatedView.tsx +++ b/src/home/UnauthenticatedView.tsx @@ -142,6 +142,7 @@ export const UnauthenticatedView: FC = () => { type="text" required autoComplete="off" + data-testid="home_callName" /> @@ -152,6 +153,7 @@ export const UnauthenticatedView: FC = () => { placeholder={t("Display name")} type="text" required + data-testid="home_displayName" autoComplete="off" /> @@ -171,7 +173,7 @@ export const UnauthenticatedView: FC = () => { )} -
diff --git a/src/icons/VideoMuted.svg b/src/icons/VideoMuted.svg index 188ed08..20ecf0f 100644 --- a/src/icons/VideoMuted.svg +++ b/src/icons/VideoMuted.svg @@ -1,4 +1,4 @@ - + diff --git a/src/room/LobbyView.tsx b/src/room/LobbyView.tsx index a1a6961..2e726cc 100644 --- a/src/room/LobbyView.tsx +++ b/src/room/LobbyView.tsx @@ -137,6 +137,7 @@ export function LobbyView({ size="lg" disabled={state !== GroupCallState.LocalCallFeedInitialized} onPress={onEnter} + data-testid="lobby_joinCall" > Join call now diff --git a/src/room/VideoPreview.tsx b/src/room/VideoPreview.tsx index 0e92cc5..6325bda 100644 --- a/src/room/VideoPreview.tsx +++ b/src/room/VideoPreview.tsx @@ -64,7 +64,7 @@ export function VideoPreview({ return (
-
))} -