diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-09 15:57:49 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-09 15:57:49 -0600 |
commit | e7536289cbb4380dc82dcd70737e165727cbbb92 (patch) | |
tree | 867a226b444eb0f04f00af33131088c9f3427f7c /src/view/com/modals/CreateScene.tsx | |
parent | 93b64cf474574b315bfe48594ed7170b9bd8261e (diff) | |
download | voidsky-e7536289cbb4380dc82dcd70737e165727cbbb92.tar.zst |
Add scene creator
Diffstat (limited to 'src/view/com/modals/CreateScene.tsx')
-rw-r--r-- | src/view/com/modals/CreateScene.tsx | 210 |
1 files changed, 210 insertions, 0 deletions
diff --git a/src/view/com/modals/CreateScene.tsx b/src/view/com/modals/CreateScene.tsx new file mode 100644 index 000000000..16a085d53 --- /dev/null +++ b/src/view/com/modals/CreateScene.tsx @@ -0,0 +1,210 @@ +import React, {useState} from 'react' +import Toast from '../util/Toast' +import { + ActivityIndicator, + StyleSheet, + Text, + TextInput, + TouchableOpacity, + View, +} from 'react-native' +import LinearGradient from 'react-native-linear-gradient' +import {ErrorMessage} from '../util/ErrorMessage' +import {useStores} from '../../../state' +import {s, colors, gradients} from '../../lib/styles' +import {makeValidHandle, createFullHandle} from '../../lib/strings' +import {AppBskyActorCreateScene} from '../../../third-party/api/index' + +export const snapPoints = ['70%'] + +export function Component({}: {}) { + const store = useStores() + const [error, setError] = useState<string>('') + const [isProcessing, setIsProcessing] = useState<boolean>(false) + const [handle, setHandle] = useState<string>('') + const [displayName, setDisplayName] = useState<string>('') + const [description, setDescription] = useState<string>('') + const onPressSave = async () => { + setIsProcessing(true) + if (error) { + setError('') + } + try { + if (!store.me.did) { + return + } + const desc = await store.api.com.atproto.server.getAccountsConfig() + const fullHandle = createFullHandle( + handle, + desc.data.availableUserDomains[0], + ) + // create scene actor + const createSceneRes = await store.api.app.bsky.actor.createScene({ + handle: fullHandle, + }) + // set the scene profile + // TODO + // follow the scene + await store.api.app.bsky.graph.follow + .create( + { + did: store.me.did, + }, + { + subject: { + did: createSceneRes.data.did, + declarationCid: createSceneRes.data.declarationCid, + }, + createdAt: new Date().toISOString(), + }, + ) + .catch(e => console.error(e)) // an error here is not critical + Toast.show('Scene created', { + position: Toast.positions.TOP, + }) + store.shell.closeModal() + store.nav.navigate(`/profile/${fullHandle}`) + } catch (e: any) { + if (e instanceof AppBskyActorCreateScene.InvalidHandleError) { + setError( + 'The handle can only contain letters, numbers, and dashes, and must start with a letter.', + ) + } else if (e instanceof AppBskyActorCreateScene.HandleNotAvailableError) { + setError(`The handle "${handle}" is not available.`) + } else { + console.error(e) + setError( + 'Failed to create the scene. Check your internet connection and try again.', + ) + } + setIsProcessing(false) + } + } + + return ( + <View style={s.flex1}> + <Text style={styles.title}>Create a scene</Text> + <Text style={styles.description}> + Scenes are invite-only groups which aggregate what's popular with + members. + </Text> + <View style={styles.inner}> + <View style={styles.group}> + <Text style={styles.label}>Scene Handle</Text> + <TextInput + style={styles.textInput} + placeholder="e.g. alices-friends" + value={handle} + onChangeText={str => setHandle(makeValidHandle(str))} + /> + </View> + <View style={styles.group}> + <Text style={styles.label}>Scene Display Name</Text> + <TextInput + style={styles.textInput} + placeholder="e.g. Alice's Friends" + value={displayName} + onChangeText={setDisplayName} + /> + </View> + <View style={styles.group}> + <Text style={styles.label}>Scene Description</Text> + <TextInput + style={[styles.textArea]} + placeholder="e.g. Artists, dog-lovers, and memelords." + multiline + value={description} + onChangeText={setDescription} + /> + </View> + <View style={styles.errorContainer}> + {error !== '' && ( + <View style={s.mb10}> + <ErrorMessage message={error} numberOfLines={3} /> + </View> + )} + </View> + {handle.length >= 2 && !isProcessing ? ( + <TouchableOpacity style={s.mt10} onPress={onPressSave}> + <LinearGradient + colors={[gradients.primary.start, gradients.primary.end]} + start={{x: 0, y: 0}} + end={{x: 1, y: 1}} + style={[styles.btn]}> + <Text style={[s.white, s.bold, s.f18]}>Create Scene</Text> + </LinearGradient> + </TouchableOpacity> + ) : ( + <View style={s.mt10}> + <View style={[styles.btn]}> + {isProcessing ? ( + <ActivityIndicator /> + ) : ( + <Text style={[s.gray4, s.bold, s.f18]}>Create Scene</Text> + )} + </View> + </View> + )} + </View> + </View> + ) +} + +const styles = StyleSheet.create({ + title: { + textAlign: 'center', + fontWeight: 'bold', + fontSize: 24, + marginBottom: 12, + }, + description: { + textAlign: 'center', + fontSize: 17, + paddingHorizontal: 22, + color: colors.gray5, + marginBottom: 10, + }, + inner: { + padding: 14, + }, + group: { + marginBottom: 10, + }, + label: { + fontSize: 16, + fontWeight: 'bold', + paddingHorizontal: 4, + paddingBottom: 4, + }, + textInput: { + borderWidth: 1, + borderColor: colors.gray3, + borderRadius: 6, + paddingHorizontal: 14, + paddingVertical: 10, + fontSize: 16, + }, + textArea: { + borderWidth: 1, + borderColor: colors.gray3, + borderRadius: 6, + paddingHorizontal: 12, + paddingTop: 10, + fontSize: 16, + height: 100, + textAlignVertical: 'top', + }, + errorContainer: { + height: 80, + }, + btn: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center', + width: '100%', + borderRadius: 32, + padding: 14, + marginBottom: 10, + backgroundColor: colors.gray1, + }, +}) |