-
Notifications
You must be signed in to change notification settings - Fork 0
feat(ui): show Labelary privacy notice on first Print, not just Preview #33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,72 @@ | ||
| import { XMarkIcon } from '@heroicons/react/16/solid'; | ||
| import { useLabelStore } from '../../store/labelStore'; | ||
| import { useT } from '../../lib/useT'; | ||
|
|
||
| interface Props { | ||
| /** Called after the modal flipped the store flag, so callers only need | ||
| * to react (start the fetch / open the next modal). Acknowledgement | ||
| * itself is the modal's responsibility. */ | ||
| onContinue: () => void; | ||
| onClose: () => void; | ||
| } | ||
|
|
||
| /** Privacy notice shown the first time the user invokes a Labelary-backed | ||
| * feature (Preview, Print). After acknowledgement the gate | ||
| * (`canCallLabelary`) opens permanently and this modal is no longer | ||
| * rendered. Shared between Preview and Print so the disclosure wording | ||
| * stays in lockstep. */ | ||
| export function LabelaryNoticeModal({ onContinue, onClose }: Props) { | ||
| const t = useT(); | ||
| const acknowledgeLabelaryNotice = useLabelStore((s) => s.acknowledgeLabelaryNotice); | ||
|
|
||
| const handleContinue = () => { | ||
| acknowledgeLabelaryNotice(); | ||
| onContinue(); | ||
| }; | ||
|
|
||
| return ( | ||
| <div | ||
| className="fixed inset-0 z-50 flex items-center justify-center bg-black/50" | ||
| onClick={onClose} | ||
| role="dialog" | ||
| aria-modal="true" | ||
| aria-labelledby="labelary-notice-title" | ||
| > | ||
| <div | ||
| className="bg-surface border border-border-2 rounded shadow-lg flex flex-col overflow-hidden max-w-[90vw]" | ||
| onClick={(e) => e.stopPropagation()} | ||
| > | ||
| <div className="flex items-center justify-between px-3 py-1.5 border-b border-border-2 shrink-0"> | ||
| <span id="labelary-notice-title" className="font-mono text-[10px] text-muted uppercase tracking-widest"> | ||
| {t.output.previewNoticeTitle} | ||
| </span> | ||
| <button | ||
| onClick={onClose} | ||
| aria-label={t.app.close} | ||
| className="p-0.5 rounded text-muted hover:text-text hover:bg-surface-2 transition-colors ml-6" | ||
| > | ||
| <XMarkIcon className="w-4 h-4" /> | ||
| </button> | ||
|
u8array marked this conversation as resolved.
|
||
| </div> | ||
|
|
||
| <div className="flex flex-col gap-3 p-6 max-w-80 text-center font-mono text-[10px] text-muted leading-relaxed"> | ||
| <span>{t.output.previewNoticeBody}</span> | ||
| <a | ||
| href="https://labelary.com/privacy.html" | ||
| target="_blank" | ||
| rel="noreferrer" | ||
| className="text-accent hover:underline" | ||
| > | ||
| {t.output.previewNoticePrivacyLink} | ||
| </a> | ||
| <button | ||
| onClick={handleContinue} | ||
| className="self-center mt-1 px-3 py-1.5 rounded text-[10px] font-mono bg-surface-2 border border-border text-text hover:border-accent transition-colors" | ||
| > | ||
| {t.output.previewNoticeAcknowledge} | ||
| </button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ); | ||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.