use mutation for generation

This commit is contained in:
Hailey
2024-06-19 17:46:04 -07:00
parent ebf46e1692
commit 5b57cb31f3
2 changed files with 8 additions and 71 deletions
@@ -209,6 +209,11 @@ function Empty() {
},
})
const generate = () => {
setIsGenerating(true)
generateStarterPack()
}
return (
<LinearGradientBackground
style={[
@@ -281,7 +286,7 @@ function Empty() {
<Prompt.Action
color="primary"
cta={_(msg`Choose for me`)}
onPress={generateStarterPack}
onPress={generate}
/>
<Prompt.Action
color="secondary"
@@ -307,7 +312,7 @@ function Empty() {
description={_(
msg`An error occurred while generating your starter pack. Want to try again?`,
)}
onConfirm={generateStarterPack}
onConfirm={generate}
confirmButtonCta={_(msg`Retry`)}
/>
</LinearGradientBackground>
+1 -69
View File
@@ -8,7 +8,6 @@ import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useMutation} from '@tanstack/react-query'
import {logger} from '#/logger'
import {until} from 'lib/async/until'
import {sanitizeDisplayName} from 'lib/strings/display-names'
import {sanitizeHandle} from 'lib/strings/handles'
@@ -68,7 +67,7 @@ export function useGenerateStarterPackMutation({
const agent = useAgent()
const starterPackString = _(msg`Starter Pack`)
return useMutation<{uri: string; cid: string}, Error, {}>({
return useMutation<{uri: string; cid: string}, Error, void>({
mutationFn: async () => {
let profile: AppBskyActorDefs.ProfileViewBasic | undefined
let profiles: AppBskyActorDefs.ProfileViewBasic[] | undefined
@@ -139,73 +138,6 @@ export function useGenerateStarterPackMutation({
})
}
export async function generateStarterpack({
agent,
}: {
agent: BskyAgent
}): Promise<string | 'NOT_ENOUGH_FOLLOWERS' | 'ERROR'> {
try {
let profile: AppBskyActorDefs.ProfileViewBasic | undefined
let profiles: AppBskyActorDefs.ProfileViewBasic[] | undefined
await Promise.all([
(async () => {
profile = (
await agent.app.bsky.actor.getProfile({
actor: agent.session!.did,
})
).data
})(),
(async () => {
profiles = (
await agent.app.bsky.actor.searchActors({
q: encodeURIComponent('*'),
limit: 49,
})
).data.actors.filter(p => p.viewer?.following)
})(),
])
if (!profile || !profiles) {
return 'ERROR'
}
// We include ourselves when we make the list
if (profiles.length < 7) {
return 'NOT_ENOUGH_FOLLOWERS'
}
const defaultName = `${enforceLen(
profile.displayName || `@${sanitizeHandle(profile.handle)}`,
25,
true,
)}${msg`'s Starter Pack`.message!}`
const list = await createStarterPackList({
name: defaultName ?? '',
profiles,
agent,
})
return (
await agent.app.bsky.graph.starterpack.create(
{
repo: agent.session!.did,
validate: false,
},
{
name: defaultName ?? '',
list: list.uri,
createdAt: new Date().toISOString(),
},
)
).uri
} catch (e: unknown) {
logger.error('Failed to generate starter pack', {safeMessage: e})
return 'ERROR'
}
}
function createListItem({did, listUri}: {did: string; listUri: string}) {
return {
$type: 'com.atproto.repo.applyWrites#create',