migrate the starter pack writes to the pds client

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Samuel Newman
2026-08-03 23:41:15 +03:00
parent a86590ad4b
commit 3a970a7104
10 changed files with 216 additions and 192 deletions
+42 -52
View File
@@ -1,11 +1,5 @@
import {
type $Typed,
type AppBskyActorDefs,
type AppBskyGraphGetStarterPack,
type AtpAgent,
type ComAtprotoRepoApplyWrites,
type Facet,
} from '@atproto/api'
import {type Client} from '@atproto/lex'
import {type AtUriString, toDatetimeString} from '@atproto/syntax'
import {msg} from '@lingui/core/macro'
import {useLingui} from '@lingui/react'
import {useMutation} from '@tanstack/react-query'
@@ -14,7 +8,8 @@ import {until} from '#/lib/async/until'
import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {sanitizeHandle} from '#/lib/strings/handles'
import {enforceLen} from '#/lib/strings/helpers'
import {useAgent} from '#/state/session'
import {useAppviewClient, usePdsClient} from '#/state/session'
import {app, com} from '#/lexicons'
import type * as bsky from '#/types/bsky'
export const createStarterPackList = async ({
@@ -22,30 +17,27 @@ export const createStarterPackList = async ({
description,
descriptionFacets,
profiles,
agent,
client,
}: {
name: string
description?: string
descriptionFacets?: Facet[]
descriptionFacets?: app.bsky.richtext.facet.Main[]
profiles: bsky.profile.AnyProfileView[]
agent: AtpAgent
client: Client
}): Promise<{uri: string; cid: string}> => {
if (profiles.length === 0) throw new Error('No profiles given')
const list = await agent.app.bsky.graph.list.create(
{repo: agent.session!.did},
{
name,
description,
descriptionFacets,
avatar: undefined,
createdAt: new Date().toISOString(),
purpose: 'app.bsky.graph.defs#referencelist',
},
)
const list = await client.create(app.bsky.graph.list, {
name,
description,
descriptionFacets,
avatar: undefined,
createdAt: toDatetimeString(new Date()),
purpose: 'app.bsky.graph.defs#referencelist',
})
if (!list) throw new Error('List creation failed')
await agent.com.atproto.repo.applyWrites({
repo: agent.session!.did,
await client.call(com.atproto.repo.applyWrites, {
repo: client.assertDid,
writes: profiles.map(p => createListItem({did: p.did, listUri: list.uri})),
})
@@ -60,28 +52,27 @@ export function useGenerateStarterPackMutation({
onError: (e: Error) => void
}) {
const {_} = useLingui()
const agent = useAgent()
const appviewClient = useAppviewClient()
const pdsClient = usePdsClient()
return useMutation<{uri: string; cid: string}, Error, void>({
mutationFn: async () => {
let profile: AppBskyActorDefs.ProfileViewDetailed | undefined
let profiles: AppBskyActorDefs.ProfileView[] | undefined
let profile: app.bsky.actor.defs.ProfileViewDetailed | undefined
let profiles: app.bsky.actor.defs.ProfileView[] | undefined
await Promise.all([
(async () => {
profile = (
await agent.app.bsky.actor.getProfile({
actor: agent.session!.did,
})
).data
profile = await appviewClient.call(app.bsky.actor.getProfile, {
actor: pdsClient.assertDid,
})
})(),
(async () => {
profiles = (
await agent.app.bsky.actor.searchActors({
await appviewClient.call(app.bsky.actor.searchActors, {
q: encodeURIComponent('*'),
limit: 49,
})
).data.actors.filter(p => p.viewer?.following)
).actors.filter(p => p.viewer?.following)
})(),
])
@@ -106,23 +97,19 @@ export function useGenerateStarterPackMutation({
const list = await createStarterPackList({
name: starterPackName,
profiles,
agent,
client: pdsClient,
})
return await agent.app.bsky.graph.starterpack.create(
{
repo: agent.session!.did,
},
{
name: starterPackName,
list: list.uri,
createdAt: new Date().toISOString(),
},
)
return await pdsClient.create(app.bsky.graph.starterpack, {
name: starterPackName,
// `create` returns a plain string uri
list: list.uri as AtUriString,
createdAt: toDatetimeString(new Date()),
})
},
onSuccess: async data => {
await whenAppViewReady(agent, data.uri, v => {
return typeof v?.data.starterPack.uri === 'string'
await whenAppViewReady(appviewClient, data.uri, v => {
return typeof v?.starterPack.uri === 'string'
})
onSuccess(data)
},
@@ -138,7 +125,7 @@ function createListItem({
}: {
did: string
listUri: string
}): $Typed<ComAtprotoRepoApplyWrites.Create> {
}): com.atproto.repo.applyWrites.$InputBody['writes'][number] {
return {
$type: 'com.atproto.repo.applyWrites#create',
collection: 'app.bsky.graph.listitem',
@@ -152,14 +139,17 @@ function createListItem({
}
async function whenAppViewReady(
agent: AtpAgent,
client: Client,
uri: string,
fn: (res?: AppBskyGraphGetStarterPack.Response) => boolean,
fn: (res?: app.bsky.graph.getStarterPack.$OutputBody) => boolean,
) {
await until(
5, // 5 tries
1e3, // 1s delay between tries
fn,
() => agent.app.bsky.graph.getStarterPack({starterPack: uri}),
() =>
client.call(app.bsky.graph.getStarterPack, {
starterPack: uri as AtUriString,
}),
)
}