summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Navbar/TopBanner.jsx
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2024-08-08 01:37:50 +0000
committerIT Fixcomart <it@fixcomart.co.id>2024-08-08 01:37:50 +0000
commit6581712a87240394aea6504bfedb2bc2694e8f50 (patch)
tree1c0a74a75eda153497d766cdf3744283686f08f3 /src/core/components/elements/Navbar/TopBanner.jsx
parentaf15f29e8e057b338cbf9d8264edf703a7d624e6 (diff)
parentf0558477dd96de88baea95415376ddd7b20050ae (diff)
Merged in Feature/image-promo (pull request #219)
<iman> merge image promotion from all promo
Diffstat (limited to 'src/core/components/elements/Navbar/TopBanner.jsx')
-rw-r--r--src/core/components/elements/Navbar/TopBanner.jsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/components/elements/Navbar/TopBanner.jsx b/src/core/components/elements/Navbar/TopBanner.jsx
index 722a7501..7bc8fb6a 100644
--- a/src/core/components/elements/Navbar/TopBanner.jsx
+++ b/src/core/components/elements/Navbar/TopBanner.jsx
@@ -4,8 +4,9 @@ import { useQuery } from 'react-query';
import odooApi from '@/core/api/odooApi';
import SmoothRender from '~/components/ui/smooth-render';
import Link from '../Link/Link';
+import { useEffect } from 'react';
-const TopBanner = () => {
+const TopBanner = ({ onLoad }) => {
const topBanner = useQuery({
queryKey: 'topBanner',
queryFn: async () => await odooApi('GET', '/api/v1/banner?type=top-banner'),
@@ -16,6 +17,12 @@ const TopBanner = () => {
const hasData = topBanner.data?.length > 0;
const data = topBanner.data?.[0] || null;
+ useEffect(() => {
+ if (hasData) {
+ onLoad();
+ }
+ }, [hasData, onLoad]);
+
return (
<SmoothRender
isLoaded={hasData}