refactor: rename files (#1034)

This commit is contained in:
Aman Harwara
2022-05-20 23:20:05 +05:30
committed by GitHub
parent 95d539587a
commit 1643311d08
92 changed files with 98 additions and 98 deletions

View File

@@ -0,0 +1,35 @@
import { AppState } from '@/UIModels/AppState'
type Props = {
appState: AppState
onViewNote: () => void
hasProtectionSources: boolean
}
export function ProtectedNoteOverlay({ appState, onViewNote, hasProtectionSources }: Props) {
const instructionText = hasProtectionSources
? 'Authenticate to view this note.'
: 'Add a passcode or create an account to require authentication to view this note.'
return (
<div className="flex flex-col items-center justify-center text-center max-w-md">
<h1 className="text-2xl m-0 w-full">This note is protected</h1>
<p className="text-lg mt-2 w-full">{instructionText}</p>
<div className="mt-4 flex gap-3">
{!hasProtectionSources && (
<button
className="sn-button small info"
onClick={() => {
appState.accountMenu.setShow(true)
}}
>
Open account menu
</button>
)}
<button className="sn-button small outlined normal-focus-brightness" onClick={onViewNote}>
{hasProtectionSources ? 'Authenticate' : 'View Note'}
</button>
</div>
</div>
)
}