diff --git a/docs/ko/index.md b/docs/ko/index.md index 3640aa5..50a3ec9 100644 --- a/docs/ko/index.md +++ b/docs/ko/index.md @@ -4,13 +4,13 @@ layout: home hero: name: "Sky Follow Bridge" text: "Connect your social networks" - tagline: π•μ—μ„œ Bluesky둜 μ†Œμ…œ λ„€νŠΈμ›Œν¬λ₯Ό μ›ν™œν•˜κ²Œ 이전 + tagline: "π•μ—μ„œ Bluesky둜 μ†Œμ…œ λ„€νŠΈμ›Œν¬λ₯Ό μ›ν™œν•˜κ²Œ 이전" actions: - theme: brand - text: μ‚¬μš© 방법 + text: "μ‚¬μš© 방법" link: /ko/get-started - theme: alt - text: 문제 ν•΄κ²° + text: "문제 ν•΄κ²°" link: /ko/troubleshooting image: src: /images/logo.webp @@ -18,15 +18,15 @@ hero: features: - icon: πŸ” - title: μžλ™ ν”„λ‘œν•„ 맀칭 - details: π•μ—μ„œ νŒ”λ‘œμš°ν•˜λŠ” μ‚¬μš©μžμ™€ μœ μ‚¬ν•œ Bluesky μ‚¬μš©μžλ₯Ό μžλ™μœΌλ‘œ κ°μ§€ν•©λ‹ˆλ‹€. + title: "μžλ™ ν”„λ‘œν•„ 맀칭" + details: "π•μ—μ„œ νŒ”λ‘œμš°ν•˜λŠ” μ‚¬μš©μžμ™€ μœ μ‚¬ν•œ Bluesky μ‚¬μš©μžλ₯Ό μžλ™μœΌλ‘œ κ°μ§€ν•©λ‹ˆλ‹€." - icon: πŸš€ - title: 일괄 νŒ”λ‘œμš° κΈ°λŠ₯ - details: "λͺ¨λ‘ νŒ”λ‘œμš°" λ²„νŠΌμœΌλ‘œ μ—¬λŸ¬ μ‚¬μš©μžλ₯Ό ν•œ λ²ˆμ— νŒ”λ‘œμš°ν•˜μ—¬ μ‹œκ°„μ„ μ ˆμ•½ν•˜μ„Έμš”. + title: "일괄 νŒ”λ‘œμš° κΈ°λŠ₯" + details: "\"λͺ¨λ‘ νŒ”λ‘œμš°\" λ²„νŠΌμœΌλ‘œ μ—¬λŸ¬ μ‚¬μš©μžλ₯Ό ν•œ λ²ˆμ— νŒ”λ‘œμš°ν•˜μ—¬ μ‹œκ°„μ„ μ ˆμ•½ν•˜μ„Έμš”." - icon: πŸ“‹ - title: 닀쀑 리슀트 지원 - details: νŒ”λ‘œμš°, νŒ”λ‘œμ›Œ, μ°¨λ‹¨λœ μ‚¬μš©μž 리슀트, 그리고 곡개 𝕏 λ¦¬μŠ€νŠΈλ„ μ§€μ›ν•©λ‹ˆλ‹€. + title: "닀쀑 리슀트 지원" + details: "νŒ”λ‘œμš°, νŒ”λ‘œμ›Œ, μ°¨λ‹¨λœ μ‚¬μš©μž 리슀트, 그리고 곡개 𝕏 λ¦¬μŠ€νŠΈλ„ μ§€μ›ν•©λ‹ˆλ‹€." - icon: 🌐 - title: 크둜슀 λΈŒλΌμš°μ € 지원 - details: Chrome, Firefox, Microsoft Edgeμ—μ„œ μ‚¬μš© κ°€λŠ₯ν•©λ‹ˆλ‹€. + title: "크둜슀 λΈŒλΌμš°μ € 지원" + details: "Chrome, Firefox, Microsoft Edgeμ—μ„œ μ‚¬μš© κ°€λŠ₯ν•©λ‹ˆλ‹€." --- diff --git a/src/lib/hooks/useBskyUserManager.ts b/src/lib/hooks/useBskyUserManager.ts index d08e09f..47ee90b 100644 --- a/src/lib/hooks/useBskyUserManager.ts +++ b/src/lib/hooks/useBskyUserManager.ts @@ -145,32 +145,29 @@ export const useBskyUserManager = () => { let actionCount = 0; for (const user of filteredUsers) { - let resultUri: string | null = null; // follow - if (actionMode === ACTION_MODE.FOLLOW) { - if (user.isFollowing) { - continue; - } - const result = await bskyClient.current.follow(user.did); - resultUri = result.uri; - await setUsers((prev) => - prev.map((prevUser) => { - if (prevUser.did === user.did) { - return { - ...prevUser, - isFollowing: !prevUser.isFollowing, - followingUri: resultUri ?? prevUser.followingUri, - }; - } - return prevUser; - }), - ); - await wait(300); - actionCount++; + if (user.isFollowing) { + continue; } + const result = await bskyClient.current.follow(user.did); + const resultUri = result.uri; + await setUsers((prev) => + prev.map((prevUser) => { + if (prevUser.did === user.did) { + return { + ...prevUser, + isFollowing: !prevUser.isFollowing, + followingUri: resultUri ?? prevUser.followingUri, + }; + } + return prevUser; + }), + ); + await wait(300); + actionCount++; } return actionCount; - }, [filteredUsers, actionMode, setUsers]); + }, [filteredUsers, setUsers]); // Block All const blockAll = React.useCallback(async () => { @@ -178,31 +175,28 @@ export const useBskyUserManager = () => { // block let actionCount = 0; for (const user of filteredUsers) { - let resultUri: string | null = null; - if (actionMode === ACTION_MODE.BLOCK) { - if (user.isBlocking) { - continue; - } - const result = await bskyClient.current.block(user.did); - resultUri = result.uri; - await setUsers((prev) => - prev.map((prevUser) => { - if (prevUser.did === user.did) { - return { - ...prevUser, - isBlocking: !prevUser.isBlocking, - blockingUri: resultUri ?? prevUser.blockingUri, - }; - } - return prevUser; - }), - ); - await wait(300); - actionCount++; + if (user.isBlocking) { + continue; } + const result = await bskyClient.current.block(user.did); + const resultUri = result.uri; + await setUsers((prev) => + prev.map((prevUser) => { + if (prevUser.did === user.did) { + return { + ...prevUser, + isBlocking: !prevUser.isBlocking, + blockingUri: resultUri ?? prevUser.blockingUri, + }; + } + return prevUser; + }), + ); + await wait(300); + actionCount++; } return actionCount; - }, [filteredUsers, actionMode, setUsers]); + }, [filteredUsers, setUsers]); const [key] = useStorage( {