about summary refs log tree commit diff
path: root/src/screens/Signup/StepHandle.tsx
blob: 97b5f83224efeea6f9d303e87ec44508970ab667 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import React from 'react'
import {View} from 'react-native'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useFocusEffect} from '@react-navigation/native'

import {
  createFullHandle,
  IsValidHandle,
  validateHandle,
} from '#/lib/strings/handles'
import {ScreenTransition} from '#/screens/Login/ScreenTransition'
import {useSignupContext} from '#/screens/Signup/state'
import {atoms as a, useTheme} from '#/alf'
import * as TextField from '#/components/forms/TextField'
import {At_Stroke2_Corner0_Rounded as At} from '#/components/icons/At'
import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times'
import {Text} from '#/components/Typography'

export function StepHandle() {
  const {_} = useLingui()
  const t = useTheme()
  const {state, dispatch} = useSignupContext()

  const [validCheck, setValidCheck] = React.useState<IsValidHandle>({
    handleChars: false,
    hyphenStartOrEnd: false,
    frontLength: false,
    totalLength: true,
    overall: false,
  })

  useFocusEffect(
    React.useCallback(() => {
      console.log('run')
      setValidCheck(validateHandle(state.handle, state.userDomain))
    }, [state.handle, state.userDomain]),
  )

  const onHandleChange = React.useCallback(
    (value: string) => {
      if (state.error) {
        dispatch({type: 'setError', value: ''})
      }

      dispatch({
        type: 'setHandle',
        value,
      })
    },
    [dispatch, state.error],
  )

  return (
    <ScreenTransition>
      <View style={[a.gap_lg]}>
        <View>
          <TextField.Root>
            <TextField.Icon icon={At} />
            <TextField.Input
              onChangeText={onHandleChange}
              label={_(msg`Input your user handle`)}
              defaultValue={state.handle}
              autoCapitalize="none"
              autoCorrect={false}
              autoFocus
              autoComplete="off"
            />
          </TextField.Root>
        </View>
        <Text style={[a.text_md]}>
          <Trans>Your full handle will be</Trans>{' '}
          <Text style={[a.text_md, a.font_bold]}>
            @{createFullHandle(state.handle, state.userDomain)}
          </Text>
        </Text>

        <View
          style={[
            a.w_full,
            a.rounded_sm,
            a.border,
            a.p_md,
            a.gap_sm,
            t.atoms.border_contrast_low,
          ]}>
          {state.error ? (
            <View style={[a.w_full, a.flex_row, a.align_center, a.gap_sm]}>
              <IsValidIcon valid={false} />
              <Text style={[a.text_md, a.flex_1]}>{state.error}</Text>
            </View>
          ) : undefined}
          {validCheck.hyphenStartOrEnd ? (
            <View style={[a.w_full, a.flex_row, a.align_center, a.gap_sm]}>
              <IsValidIcon valid={validCheck.handleChars} />
              <Text style={[a.text_md, a.flex_1]}>
                <Trans>Only contains letters, numbers, and hyphens</Trans>
              </Text>
            </View>
          ) : (
            <View style={[a.w_full, a.flex_row, a.align_center, a.gap_sm]}>
              <IsValidIcon valid={validCheck.hyphenStartOrEnd} />
              <Text style={[a.text_md, a.flex_1]}>
                <Trans>Doesn't begin or end with a hyphen</Trans>
              </Text>
            </View>
          )}
          <View style={[a.w_full, a.flex_row, a.align_center, a.gap_sm]}>
            <IsValidIcon
              valid={validCheck.frontLength && validCheck.totalLength}
            />
            {!validCheck.totalLength ? (
              <Text style={[a.text_md, a.flex_1]}>
                <Trans>No longer than 253 characters</Trans>
              </Text>
            ) : (
              <Text style={[a.text_md, a.flex_1]}>
                <Trans>At least 3 characters</Trans>
              </Text>
            )}
          </View>
        </View>
      </View>
    </ScreenTransition>
  )
}

function IsValidIcon({valid}: {valid: boolean}) {
  const t = useTheme()
  if (!valid) {
    return <Times size="md" style={{color: t.palette.negative_500}} />
  }
  return <Check size="md" style={{color: t.palette.positive_700}} />
}