mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-21 06:34:30 +01:00
171 lines
5.4 KiB
TypeScript
171 lines
5.4 KiB
TypeScript
import { useAtom } from 'jotai'
|
|
import { wishlistAtom, coinsAtom, coinsBalanceAtom } from '@/lib/atoms'
|
|
import { saveWishlistItems, removeCoins } from '@/app/actions/data'
|
|
import { toast } from '@/hooks/use-toast'
|
|
import { WishlistItemType } from '@/lib/types'
|
|
import { celebrations } from '@/utils/celebrations'
|
|
import { checkPermission } from '@/lib/utils'
|
|
import { useHelpers } from '@/lib/client-helpers'
|
|
|
|
function handlePermissionCheck(
|
|
user: any,
|
|
resource: 'habit' | 'wishlist' | 'coins',
|
|
action: 'write' | 'interact'
|
|
): boolean {
|
|
if (!user) {
|
|
toast({
|
|
title: "Authentication Required",
|
|
description: "Please sign in to continue.",
|
|
variant: "destructive",
|
|
})
|
|
return false
|
|
}
|
|
|
|
if (!user.isAdmin && !checkPermission(user.permissions, resource, action)) {
|
|
toast({
|
|
title: "Permission Denied",
|
|
description: `You don't have ${action} permission for ${resource}s.`,
|
|
variant: "destructive",
|
|
})
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
export function useWishlist() {
|
|
const { currentUser: user } = useHelpers()
|
|
const [wishlist, setWishlist] = useAtom(wishlistAtom)
|
|
const [coins, setCoins] = useAtom(coinsAtom)
|
|
const [balance] = useAtom(coinsBalanceAtom)
|
|
|
|
const addWishlistItem = async (item: Omit<WishlistItemType, 'id'>) => {
|
|
if (!handlePermissionCheck(user, 'wishlist', 'write')) return
|
|
const newItem = { ...item, id: Date.now().toString() }
|
|
const newItems = [...wishlist.items, newItem]
|
|
const newWishListData = { items: newItems }
|
|
setWishlist(newWishListData)
|
|
await saveWishlistItems(newWishListData)
|
|
}
|
|
|
|
const editWishlistItem = async (updatedItem: WishlistItemType) => {
|
|
if (!handlePermissionCheck(user, 'wishlist', 'write')) return
|
|
const newItems = wishlist.items.map(item =>
|
|
item.id === updatedItem.id ? updatedItem : item
|
|
)
|
|
const newWishListData = { items: newItems }
|
|
setWishlist(newWishListData)
|
|
await saveWishlistItems(newWishListData)
|
|
}
|
|
|
|
const deleteWishlistItem = async (id: string) => {
|
|
if (!handlePermissionCheck(user, 'wishlist', 'write')) return
|
|
const newItems = wishlist.items.filter(item => item.id !== id)
|
|
const newWishListData = { items: newItems }
|
|
setWishlist(newWishListData)
|
|
await saveWishlistItems(newWishListData)
|
|
}
|
|
|
|
const redeemWishlistItem = async (item: WishlistItemType) => {
|
|
if (!handlePermissionCheck(user, 'wishlist', 'interact')) return false
|
|
if (balance >= item.coinCost) {
|
|
// Check if item has target completions and if we've reached the limit
|
|
if (item.targetCompletions && item.targetCompletions <= 0) {
|
|
toast({
|
|
title: "Redemption limit reached",
|
|
description: `You've reached the maximum redemptions for "${item.name}".`,
|
|
variant: "destructive",
|
|
})
|
|
return false
|
|
}
|
|
|
|
const data = await removeCoins({
|
|
amount: item.coinCost,
|
|
description: `Redeemed reward: ${item.name}`,
|
|
type: 'WISH_REDEMPTION',
|
|
relatedItemId: item.id
|
|
})
|
|
setCoins(data)
|
|
|
|
// Update target completions if set
|
|
if (item.targetCompletions !== undefined) {
|
|
const newItems = wishlist.items.map(wishlistItem => {
|
|
if (wishlistItem.id === item.id) {
|
|
const newTarget = wishlistItem.targetCompletions! - 1
|
|
// If target reaches 0, archive the item
|
|
if (newTarget <= 0) {
|
|
return {
|
|
...wishlistItem,
|
|
targetCompletions: undefined,
|
|
archived: true
|
|
}
|
|
}
|
|
return {
|
|
...wishlistItem,
|
|
targetCompletions: newTarget
|
|
}
|
|
}
|
|
return wishlistItem
|
|
})
|
|
const newWishListData = { items: newItems }
|
|
setWishlist(newWishListData)
|
|
await saveWishlistItems(newWishListData)
|
|
}
|
|
|
|
// Randomly choose a celebration effect
|
|
const celebrationEffects = [
|
|
celebrations.emojiParty
|
|
]
|
|
const randomEffect = celebrationEffects[Math.floor(Math.random() * celebrationEffects.length)]
|
|
randomEffect()
|
|
|
|
toast({
|
|
title: "🎉 Reward Redeemed!",
|
|
description: `You've redeemed "${item.name}" for ${item.coinCost} coins.`,
|
|
})
|
|
|
|
return true
|
|
} else {
|
|
toast({
|
|
title: "Not enough coins",
|
|
description: `You need ${item.coinCost - balance} more coins to redeem this reward.`,
|
|
variant: "destructive",
|
|
})
|
|
return false
|
|
}
|
|
}
|
|
|
|
const canRedeem = (cost: number) => balance >= cost
|
|
|
|
const archiveWishlistItem = async (id: string) => {
|
|
if (!handlePermissionCheck(user, 'wishlist', 'write')) return
|
|
const newItems = wishlist.items.map(item =>
|
|
item.id === id ? { ...item, archived: true } : item
|
|
)
|
|
const newWishListData = { items: newItems }
|
|
setWishlist(newWishListData)
|
|
await saveWishlistItems(newWishListData)
|
|
}
|
|
|
|
const unarchiveWishlistItem = async (id: string) => {
|
|
if (!handlePermissionCheck(user, 'wishlist', 'write')) return
|
|
const newItems = wishlist.items.map(item =>
|
|
item.id === id ? { ...item, archived: false } : item
|
|
)
|
|
const newWishListData = { items: newItems }
|
|
setWishlist(newWishListData)
|
|
await saveWishlistItems(newWishListData)
|
|
}
|
|
|
|
return {
|
|
addWishlistItem,
|
|
editWishlistItem,
|
|
deleteWishlistItem,
|
|
redeemWishlistItem,
|
|
archiveWishlistItem,
|
|
unarchiveWishlistItem,
|
|
canRedeem,
|
|
wishlistItems: wishlist.items
|
|
}
|
|
}
|