From 3bd0a1d6fe2736b36ccc454ae7768a49dd3f2807 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 7 Mar 2025 21:38:57 +0800 Subject: [PATCH] Test camera button --- src/components/ICONS.jsx | 1 + src/components/compose.jsx | 76 +++++++++++++++ src/locales/en.po | 190 ++++++++++++++++++------------------- 3 files changed, 172 insertions(+), 95 deletions(-) diff --git a/src/components/ICONS.jsx b/src/components/ICONS.jsx index 5373402c..99577626 100644 --- a/src/components/ICONS.jsx +++ b/src/components/ICONS.jsx @@ -178,4 +178,5 @@ export const ICONS = { schedule: () => import('@iconify-icons/mingcute/calendar-time-add-line'), month: () => import('@iconify-icons/mingcute/calendar-month-line'), day: () => import('@iconify-icons/mingcute/calendar-day-line'), + camera: () => import('@iconify-icons/mingcute/camera-line'), }; diff --git a/src/components/compose.jsx b/src/components/compose.jsx index bda6bd52..8e1c9ca4 100644 --- a/src/components/compose.jsx +++ b/src/components/compose.jsx @@ -208,6 +208,8 @@ const LF = mem((locale) => new Intl.ListFormat(locale || undefined)); const CUSTOM_EMOJIS_COUNT = 100; const ADD_LABELS = { + // camera: msg`Take photo or video`, + camera: 'Take photo or video', media: msg`Add media`, customEmoji: msg`Add custom emoji`, gif: msg`Add GIF`, @@ -260,6 +262,9 @@ function Compose({ minExpiration, } = {}, } = configuration || {}; + const supportedImagesVideosTypes = supportedMimeTypes?.filter((mimeType) => + /^(image|video)/i.test(mimeType), + ); const textareaRef = useRef(); const spoilerTextRef = useRef(); @@ -1433,6 +1438,23 @@ function Compose({ )} > + {supportsCameraCapture && ( + + + {_(ADD_LABELS.camera)} + + )}