This commit is contained in:
hamid zarghami
2026-02-07 10:07:02 +03:30
parent ecc33cee57
commit 80d9c16073
4 changed files with 86 additions and 16 deletions
@@ -23,6 +23,14 @@ export const useGetServicesByCategory = (categoryId: string) => {
});
};
export const useGetServiceSearch = (search: string) => {
return useQuery({
queryKey: ["services-search", search],
queryFn: () => api.getServiceSearch(search),
enabled: !!search,
});
};
export const useGetDetailService = (serviceId: string) => {
return useQuery({
queryKey: ["service", serviceId],
+18 -9
View File
@@ -26,6 +26,15 @@ export const getServicesByCategory = async (categoryId: string) => {
return data;
};
export const getServiceSearch = async (search: string) => {
let query = ``;
if (search) {
query = `?q=${search}`;
}
const { data } = await axios.get(`/danak-services/search${query}`);
return data;
};
export const getDetailService = async (serviceId: string) => {
const { data } = await axios.get(`/danak-services/${serviceId}`);
return data;
@@ -34,7 +43,7 @@ export const getDetailService = async (serviceId: string) => {
export const buyService = async (params: BuyServiceType) => {
const { data } = await axios.post(
`/subscriptions/${params.serviceId}/subscribe`,
params
params,
);
return data;
};
@@ -46,7 +55,7 @@ export const getMyServices = async (search: string) => {
export const createReview = async (params: CreateReviewType) => {
const { data } = await axios.post(
`/danak-services/${params.id}/reviews`,
params
params,
);
return data;
};
@@ -57,41 +66,41 @@ export const getServiceBySlug = async (slug: string) => {
};
export const extentSubscription = async (
params: ExtentSubscriptionType
params: ExtentSubscriptionType,
): Promise<ExtentSubscriptionResponseType> => {
const { data } = await axios.put(
`/subscriptions/${params.subscriptionId}/subscribe`,
params
params,
);
return data;
};
export const getDmenuSubscription = async (subscriptionId: string) => {
const { data } = await axios.get(
`/dmenu/restaurants/subscription/${subscriptionId}`
`/dmenu/restaurants/subscription/${subscriptionId}`,
);
return data;
};
export const createDmenuRestaurant = async (
params: DmenuCreateRestaurantType
params: DmenuCreateRestaurantType,
) => {
const { data } = await axios.post(`/dmenu/restaurants`, params);
return data;
};
export const getSubscription = async (
subscriptionId: string
subscriptionId: string,
): Promise<GetSubscriptionResponseType> => {
const { data } = await axios.get(`/subscriptions/user/${subscriptionId}`);
return data;
};
export const directLogin = async (
userSubscriptionId: string
userSubscriptionId: string,
): Promise<DirectLoginResponseType> => {
const { data } = await axios.post(
`/dmenu/auth/direct-login/${userSubscriptionId}`
`/dmenu/auth/direct-login/${userSubscriptionId}`,
);
return data;
};
+2 -7
View File
@@ -1,5 +1,4 @@
import { FC, useEffect, useState } from 'react'
import Input from '../components/Input'
import { ArrowDown2, Card, CloseCircle, Element3, HambergerMenu, Logout, ProfileCircle, Receipt1, Setting2, TicketDiscount, Wallet } from 'iconsax-react'
import AvatarImage from '../assets/images/avatar_image.png'
import { useTranslation } from 'react-i18next'
@@ -12,6 +11,7 @@ import { Popover, PopoverButton, PopoverPanel } from '@headlessui/react'
import SideBarItem from './SideBarItem'
import { useGetWalletBalance } from '../pages/wallet/hooks/useWalletData'
import { NumberFormat } from '../config/func'
import Search from './components/Search'
const Header: FC = () => {
@@ -29,12 +29,7 @@ const Header: FC = () => {
return (
<div className='fixed z-10 right-4 left-4 xl:right-[285px] top-4 xl:h-16 h-12 flex items-center px-6 bg-white justify-between rounded-[32px] xl:w-[calc(100%-305px)]'>
<div className='min-w-[270px] hidden xl:block'>
<Input
variant='search'
placeholder={t('header.search')}
/>
</div>
<Search />
<div onClick={() => setOpenSidebar(!openSidebar)} className='xl:hidden block'>
<HambergerMenu size={24} color='black' />
</div>
+58
View File
@@ -0,0 +1,58 @@
import { useEffect, useState, type FC } from 'react'
import Input from '../../components/Input'
import { useTranslation } from 'react-i18next'
import { useGetServiceSearch } from '../../pages/service/hooks/useServiceData'
import { ServiceType } from '../../pages/service/types/ServiecTypes'
import { Link } from 'react-router-dom'
import { Pages } from '../../config/Pages'
import { useOutsideClick } from '../../hooks/useOutSideClick'
const Search: FC = () => {
const { t } = useTranslation('global')
const [search, setSearch] = useState<string>('')
const [showSearch, setShowSearch] = useState<boolean>(false)
const { data } = useGetServiceSearch(search)
const ref = useOutsideClick(() => {
setShowSearch(false)
})
useEffect(() => {
if (data?.data && data?.data?.services?.length) {
setShowSearch(true)
} else {
setShowSearch(false)
}
}, [data])
return (
<div className='min-w-[270px] relative hidden xl:block'>
<Input
variant='search'
placeholder={t('header.search')}
onChangeSearchFinal={setSearch}
/>
{
showSearch &&
<div ref={ref} className='absolute shadow bg-white top-[100%] rounded-xl right-0 w-[270px] p-4 flex flex-col gap-4 overflow-y-auto max-h-screen'>
{
data?.data?.services?.map((item: ServiceType) => {
return (
<Link onClick={() => setShowSearch(false)} to={Pages.services.detail + item.slug} key={item.id} className='flex gap-3 items-center border-b pb-4'>
<img src={item.icon} className='size-8 rounded-lg' />
<div className='text-[13px]'>{item.name}</div>
</Link>
)
})
}
</div>
}
</div>
)
}
export default Search