display score user

This commit is contained in:
hamid zarghami
2025-12-13 12:47:02 +03:30
parent ca566546c2
commit 51f246897d
4 changed files with 33 additions and 3 deletions
@@ -1,8 +1,13 @@
'use client';
import { ef } from '@/lib/helpers/utfNumbers'
import { Cup, Star1 } from 'iconsax-react'
import React from 'react'
import { useGetUserWallet } from '../../hooks/useTransactionData';
function TransactionsIndex() {
const { data: userWallet } = useGetUserWallet();
return (
<section className='pt-6'>
<h1 className='font-medium'>کدهای تخفیف</h1>
@@ -28,7 +33,7 @@ function TransactionsIndex() {
<p className='text-xs mt-[7px]'>با امتیازی که داری سفارش بده!</p>
</div>
<p className='text-xs font-medium'>مجموع امتیازات شما: {ef('1500')}</p>
<p className='text-xs font-medium'>مجموع امتیازات شما: {ef(userWallet?.data?.points?.toString() ?? '0')}</p>
</div>
</div>
@@ -52,7 +57,7 @@ function TransactionsIndex() {
</div>
</section>
</section>
)
}
@@ -7,3 +7,10 @@ export const useGetMyCoupons = () => {
queryFn: api.getMyCoupons,
});
};
export const useGetUserWallet = () => {
return useQuery({
queryKey: ["user-wallet"],
queryFn: api.getUserWallet,
});
};
@@ -1,7 +1,12 @@
import { api } from "@/config/axios";
import { CouponsResponse } from "../types/Types";
import { CouponsResponse, WalletResponse } from "../types/Types";
export const getMyCoupons = async (): Promise<CouponsResponse> => {
const { data } = await api.get<CouponsResponse>("/public/coupons/me");
return data;
};
export const getUserWallet = async (): Promise<WalletResponse> => {
const { data } = await api.get<WalletResponse>("/public/user/wallet");
return data;
};
@@ -25,3 +25,16 @@ export interface Coupon {
}
export type CouponsResponse = BaseResponse<Coupon[]>;
export interface Wallet {
id: string;
createdAt: string;
updatedAt: string;
deletedAt: string | null;
restaurant: string;
user: string;
wallet: number;
points: number;
}
export type WalletResponse = BaseResponse<Wallet>;