From 5dc360379526ba72b45dcfc26ad2091e49ed20f8 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 20 Apr 2023 16:10:57 +0800 Subject: [PATCH] Close button for modal sheets --- src/app.css | 41 +++++++++++++++++++++++++++ src/app.jsx | 6 ++-- src/components/account-info.jsx | 27 ++++++++++++++---- src/components/account-sheet.jsx | 6 ++++ src/components/compose.jsx | 14 +++++++++ src/components/drafts.jsx | 7 ++++- src/components/list-add-edit.jsx | 13 +++++++-- src/components/media-modal.jsx | 12 ++++++-- src/components/shortcuts-settings.jsx | 18 +++++++++--- src/components/status.jsx | 36 +++++++++++++++++------ src/index.css | 8 ++++++ src/pages/accounts.jsx | 5 ++++ src/pages/list.jsx | 12 ++++++-- src/pages/settings.jsx | 6 ++++ 14 files changed, 183 insertions(+), 28 deletions(-) diff --git a/src/app.css b/src/app.css index d9d42fb2..b0167b7a 100644 --- a/src/app.css +++ b/src/app.css @@ -1207,6 +1207,7 @@ body:has(.media-modal-container + .status-deck) .media-post-link { box-shadow: 0 -1px 32px var(--drop-shadow-color); animation: slide-up 0.3s var(--timing-function); /* border: 1px solid var(--outline-color); */ + position: relative; } .sheet-max { width: 90vw; @@ -1215,12 +1216,52 @@ body:has(.media-modal-container + .status-deck) .media-post-link { height: 90vh; height: 90dvh; } +.sheet .sheet-close { + position: absolute; + border-radius: 0; + padding: 0; + right: env(safe-area-inset-right); + width: 44px; + height: 44px; + display: inline-flex; + align-items: center; + justify-content: center; + z-index: 2; + background-color: transparent; + background-image: radial-gradient( + circle, + var(--close-button-bg-color) 0px 14px, + transparent 14px + ); + color: var(--close-button-color); +} +.sheet .sheet-close.outer { + margin-top: -44px; + background-image: radial-gradient( + circle, + var(--bg-faded-color) 0px 14px, + transparent 14px + ); +} +.sheet .sheet-close:is(:hover, :focus) { + color: var(--close-button-hover-color); +} +.sheet .sheet-close:active { + background-image: radial-gradient( + circle, + var(--close-button-bg-active-color) 0px 14px, + transparent 14px + ); +} .sheet header { padding: 16px 16px 8px; padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); user-select: none; } +.sheet .sheet-close:not(.outer) + header { + padding-right: max(44px, env(safe-area-inset-right)); +} .sheet header :is(h1, h2, h3) { margin: 0; } diff --git a/src/app.jsx b/src/app.jsx index 4c616c5d..a410164e 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -365,7 +365,7 @@ function App() { } }} > - + (states.showDrafts = false)} /> )} {!!snapStates.showMediaModal && ( @@ -399,7 +399,9 @@ function App() { } }} > - + (states.showShortcutsSettings = false)} + /> )} diff --git a/src/components/account-info.jsx b/src/components/account-info.jsx index 89015cab..4b5cb7a4 100644 --- a/src/components/account-info.jsx +++ b/src/components/account-info.jsx @@ -846,7 +846,11 @@ function RelatedActions({ info, instance, authenticated }) { } }} > - + setShowTranslatedBio(false)} + /> )} {!!showAddRemoveLists && ( @@ -858,7 +862,10 @@ function RelatedActions({ info, instance, authenticated }) { } }} > - + setShowAddRemoveLists(false)} + /> )} @@ -895,7 +902,7 @@ function niceAccountURL(url) { ); } -function TranslatedBioSheet({ note, fields }) { +function TranslatedBioSheet({ note, fields, onClose }) { const fieldsText = fields ?.map(({ name, value }) => `${name}\n${getHTMLText(value)}`) @@ -905,8 +912,13 @@ function TranslatedBioSheet({ note, fields }) { return (
+ {!!onClose && ( + + )}
-

Translated Bio

+ x

Translated Bio

+ {!!onClose && ( + + )}

Add/Remove from Lists

diff --git a/src/components/account-sheet.jsx b/src/components/account-sheet.jsx index e615b23d..fc21ed95 100644 --- a/src/components/account-sheet.jsx +++ b/src/components/account-sheet.jsx @@ -5,6 +5,7 @@ import { api } from '../utils/api'; import states from '../utils/states'; import AccountInfo from './account-info'; +import Icon from './icon'; function AccountSheet({ account, instance: propInstance, onClose }) { const { masto, instance, authenticated } = api({ instance: propInstance }); @@ -31,6 +32,11 @@ function AccountSheet({ account, instance: propInstance, onClose }) { } }} > + {!!onClose && ( + + )}
+

{ @@ -1742,6 +1751,11 @@ function CustomEmojisModal({ return (
+ {!!onClose && ( + + )}
Custom emojis{' '} {uiState === 'loading' ? ( diff --git a/src/components/drafts.jsx b/src/components/drafts.jsx index 445add1b..f47217d1 100644 --- a/src/components/drafts.jsx +++ b/src/components/drafts.jsx @@ -11,7 +11,7 @@ import { getCurrentAccountNS } from '../utils/store-utils'; import Icon from './icon'; import Loader from './loader'; -function Drafts() { +function Drafts({ onClose }) { const { masto } = api(); const [uiState, setUIState] = useState('default'); const [drafts, setDrafts] = useState([]); @@ -51,6 +51,11 @@ function Drafts() { return (
+ {!!onClose && ( + + )}

Unsent drafts