-
-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add warning to proportions reset (#1179)
Co-authored-by: Uriel <imurx@proton.me> Co-authored-by: Butterscotch! <5095026+ButterscotchV@users.noreply.github.com>
- Loading branch information
1 parent
8da5d84
commit 8d55440
Showing
6 changed files
with
103 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
gui/src/components/onboarding/pages/body-proportions/ProportionsResetModal.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import { Button } from '@/components/commons/Button'; | ||
import { WarningBox } from '@/components/commons/TipBox'; | ||
import { Localized, useLocalization } from '@fluent/react'; | ||
import { BaseModal } from '@/components/commons/BaseModal'; | ||
import ReactModal from 'react-modal'; | ||
|
||
export function ProportionsResetModal({ | ||
isOpen = true, | ||
onClose, | ||
accept, | ||
...props | ||
}: { | ||
/** | ||
* Is the parent/sibling component opened? | ||
*/ | ||
isOpen: boolean; | ||
/** | ||
* Function to trigger when the warning hasn't been accepted | ||
*/ | ||
onClose: () => void; | ||
/** | ||
* Function when you press `Reset settings` | ||
*/ | ||
accept: () => void; | ||
} & ReactModal.Props) { | ||
const { l10n } = useLocalization(); | ||
|
||
return ( | ||
<BaseModal | ||
isOpen={isOpen} | ||
shouldCloseOnOverlayClick | ||
onRequestClose={onClose} | ||
className={props.className} | ||
overlayClassName={props.overlayClassName} | ||
> | ||
<div className="flex w-full h-full flex-col "> | ||
<div className="flex flex-col flex-grow items-center gap-3"> | ||
<Localized id="reset-reset_all_warning" elems={{ b: <b></b> }}> | ||
<WarningBox> | ||
<b>Warning:</b> This will reset your proportions to being just | ||
based on your height. | ||
<br /> | ||
Are you sure you want to do this? | ||
</WarningBox> | ||
</Localized> | ||
|
||
<div className="flex flex-row gap-3 pt-5 place-content-center"> | ||
<Button variant="primary" onClick={onClose}> | ||
{l10n.getString('reset-reset_all_warning-cancel')} | ||
</Button> | ||
<Button | ||
variant="tertiary" | ||
onClick={() => { | ||
accept(); | ||
}} | ||
> | ||
{l10n.getString('reset-reset_all_warning-reset')} | ||
</Button> | ||
</div> | ||
</div> | ||
</div> | ||
</BaseModal> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters