feat: mobile app package (#1075)

This commit is contained in:
Mo
2022-06-09 09:45:15 -05:00
committed by GitHub
parent 58b63898de
commit 8248a38280
336 changed files with 47696 additions and 22563 deletions

View File

@@ -0,0 +1,23 @@
import styled from 'styled-components/native'
export const Container = styled.View`
flex: 1;
background-color: ${({ theme }) => theme.stylekitBackgroundColor};
display: flex;
justify-content: center;
padding: 20px;
`
export const Title = styled.Text`
font-size: 20px;
font-weight: bold;
text-align: center;
color: ${({ theme }) => theme.stylekitForegroundColor};
`
export const Text = styled.Text`
margin: 8px 0 24px;
font-size: 14px;
text-align: center;
color: ${({ theme }) => theme.stylekitParagraphTextColor};
`

View File

@@ -0,0 +1,40 @@
import { useFocusEffect } from '@react-navigation/native'
import { ApplicationContext } from '@Root/ApplicationContext'
import { AppStackNavigationProp } from '@Root/AppStack'
import { Button } from '@Root/Components/Button'
import { SCREEN_SETTINGS, SCREEN_VIEW_PROTECTED_NOTE } from '@Root/Screens/screens'
import React, { useCallback, useContext } from 'react'
import { Container, Text, Title } from './ViewProtectedNote.styled'
type Props = AppStackNavigationProp<typeof SCREEN_VIEW_PROTECTED_NOTE>
export const ViewProtectedNote = ({
route: {
params: { onPressView },
},
navigation,
}: Props) => {
const application = useContext(ApplicationContext)
const onPressGoToSettings = () => {
navigation.navigate(SCREEN_SETTINGS)
}
const checkProtectionSources = useCallback(() => {
const hasProtectionSources = application?.hasProtectionSources()
if (hasProtectionSources) {
onPressView()
}
}, [application, onPressView])
useFocusEffect(checkProtectionSources)
return (
<Container>
<Title>This note is protected</Title>
<Text>Add a passcode or biometrics lock, or create an account, to require authentication to view this note.</Text>
<Button label="Go to Settings" primary={true} fullWidth={true} onPress={onPressGoToSettings} />
<Button label="View" fullWidth={true} last={true} onPress={onPressView} />
</Container>
)
}