diff --git a/src/app/[lang]/(dashboard)/(private)/apps/marketing/reward/page.tsx b/src/app/[lang]/(dashboard)/(private)/apps/marketing/reward/page.tsx new file mode 100644 index 0000000..1ae3da9 --- /dev/null +++ b/src/app/[lang]/(dashboard)/(private)/apps/marketing/reward/page.tsx @@ -0,0 +1,7 @@ +import RewardList from '@/views/apps/marketing/reward' + +const RewardPage = () => { + return +} + +export default RewardPage diff --git a/src/components/layout/vertical/VerticalMenu.tsx b/src/components/layout/vertical/VerticalMenu.tsx index 11228c0..c817458 100644 --- a/src/components/layout/vertical/VerticalMenu.tsx +++ b/src/components/layout/vertical/VerticalMenu.tsx @@ -155,6 +155,7 @@ const VerticalMenu = ({ dictionary, scrollMenu }: Props) => { }> {dictionary['navigation'].loyalty} + {dictionary['navigation'].reward} }> diff --git a/src/data/dictionaries/en.json b/src/data/dictionaries/en.json index 2e1e690..c91b7ec 100644 --- a/src/data/dictionaries/en.json +++ b/src/data/dictionaries/en.json @@ -128,6 +128,7 @@ "account": "Account", "fixed_assets": "Fixed Assets", "marketing": "Marketing", - "loyalty": "Loyalty" + "loyalty": "Loyalty", + "reward": "Reward" } } diff --git a/src/data/dictionaries/id.json b/src/data/dictionaries/id.json index 19bcaf3..7bb1d23 100644 --- a/src/data/dictionaries/id.json +++ b/src/data/dictionaries/id.json @@ -128,6 +128,7 @@ "account": "Akun", "fixed_assets": "Aset Tetap", "marketing": "Pemasaran", - "loyalty": "Loyalti" + "loyalty": "Loyalti", + "reward": "Reward" } } diff --git a/src/types/services/reward.ts b/src/types/services/reward.ts new file mode 100644 index 0000000..d9a3238 --- /dev/null +++ b/src/types/services/reward.ts @@ -0,0 +1,12 @@ +export interface RewardCatalog { + id: string + name: string + description?: string + pointCost: number + stock?: number + isActive: boolean + validUntil?: Date + imageUrl?: string + createdAt: Date + updatedAt: Date +} diff --git a/src/views/apps/marketing/reward/AddEditRewardDrawer.tsx b/src/views/apps/marketing/reward/AddEditRewardDrawer.tsx new file mode 100644 index 0000000..4c81ca1 --- /dev/null +++ b/src/views/apps/marketing/reward/AddEditRewardDrawer.tsx @@ -0,0 +1,633 @@ +// React Imports +import { useState, useEffect } from 'react' + +// MUI Imports +import Button from '@mui/material/Button' +import Drawer from '@mui/material/Drawer' +import IconButton from '@mui/material/IconButton' +import MenuItem from '@mui/material/MenuItem' +import Typography from '@mui/material/Typography' +import Divider from '@mui/material/Divider' +import Grid from '@mui/material/Grid2' +import Box from '@mui/material/Box' +import Switch from '@mui/material/Switch' +import FormControlLabel from '@mui/material/FormControlLabel' +import Chip from '@mui/material/Chip' +import InputAdornment from '@mui/material/InputAdornment' +import Avatar from '@mui/material/Avatar' +import Card from '@mui/material/Card' +import CardContent from '@mui/material/CardContent' +import FormHelperText from '@mui/material/FormHelperText' + +// Third-party Imports +import { useForm, Controller } from 'react-hook-form' + +// Component Imports +import CustomTextField from '@core/components/mui/TextField' + +// Types +export interface RewardCatalogType { + id: string + name: string + description?: string + pointCost: number + stock?: number + isActive: boolean + validUntil?: Date + imageUrl?: string + createdAt: Date + updatedAt: Date +} + +export interface RewardRequest { + name: string + description?: string + pointCost: number + stock?: number + isActive: boolean + validUntil?: Date + imageUrl?: string + category?: string + terms?: string +} + +type Props = { + open: boolean + handleClose: () => void + data?: RewardCatalogType // Data reward untuk edit (jika ada) +} + +type FormValidateType = { + name: string + description: string + pointCost: number + stock: number | '' + isActive: boolean + validUntil: string + imageUrl: string + category: string + terms: string + hasUnlimitedStock: boolean + hasValidUntil: boolean +} + +// Initial form data +const initialData: FormValidateType = { + name: '', + description: '', + pointCost: 100, + stock: '', + isActive: true, + validUntil: '', + imageUrl: '', + category: 'voucher', + terms: '', + hasUnlimitedStock: false, + hasValidUntil: false +} + +// Mock mutation hooks (replace with actual hooks) +const useRewardMutation = () => { + const createReward = { + mutate: (data: RewardRequest, options?: { onSuccess?: () => void }) => { + console.log('Creating reward:', data) + setTimeout(() => options?.onSuccess?.(), 1000) + } + } + + const updateReward = { + mutate: (data: { id: string; payload: RewardRequest }, options?: { onSuccess?: () => void }) => { + console.log('Updating reward:', data) + setTimeout(() => options?.onSuccess?.(), 1000) + } + } + + return { createReward, updateReward } +} + +// Reward categories +const REWARD_CATEGORIES = [ + { value: 'voucher', label: 'Voucher Diskon' }, + { value: 'cashback', label: 'Cashback' }, + { value: 'shipping', label: 'Gratis Ongkir' }, + { value: 'gift_card', label: 'Gift Card' }, + { value: 'physical', label: 'Barang Fisik' }, + { value: 'experience', label: 'Pengalaman' }, + { value: 'service', label: 'Layanan' } +] + +const AddEditRewardDrawer = (props: Props) => { + // Props + const { open, handleClose, data } = props + + // States + const [showMore, setShowMore] = useState(false) + const [isSubmitting, setIsSubmitting] = useState(false) + const [imagePreview, setImagePreview] = useState(null) + + const { createReward, updateReward } = useRewardMutation() + + // Determine if this is edit mode + const isEditMode = Boolean(data?.id) + + // Hooks + const { + control, + reset: resetForm, + handleSubmit, + watch, + setValue, + formState: { errors } + } = useForm({ + defaultValues: initialData + }) + + const watchedImageUrl = watch('imageUrl') + const watchedHasUnlimitedStock = watch('hasUnlimitedStock') + const watchedHasValidUntil = watch('hasValidUntil') + const watchedStock = watch('stock') + const watchedPointCost = watch('pointCost') + + // Effect to populate form when editing + useEffect(() => { + if (isEditMode && data) { + // Populate form with existing data + const formData: FormValidateType = { + name: data.name || '', + description: data.description || '', + pointCost: data.pointCost || 100, + stock: data.stock ?? '', + isActive: data.isActive ?? true, + validUntil: data.validUntil ? new Date(data.validUntil).toISOString().split('T')[0] : '', + imageUrl: data.imageUrl || '', + category: 'voucher', // Default category + terms: '', + hasUnlimitedStock: data.stock === undefined || data.stock === null, + hasValidUntil: Boolean(data.validUntil) + } + + resetForm(formData) + setShowMore(true) // Always show more for edit mode + setImagePreview(data.imageUrl || null) + } else { + // Reset to initial data for add mode + resetForm(initialData) + setShowMore(false) + setImagePreview(null) + } + }, [data, isEditMode, resetForm]) + + // Handle image URL change + useEffect(() => { + if (watchedImageUrl) { + setImagePreview(watchedImageUrl) + } else { + setImagePreview(null) + } + }, [watchedImageUrl]) + + // Handle unlimited stock toggle + useEffect(() => { + if (watchedHasUnlimitedStock) { + setValue('stock', '') + } + }, [watchedHasUnlimitedStock, setValue]) + + // Handle valid until toggle + useEffect(() => { + if (!watchedHasValidUntil) { + setValue('validUntil', '') + } + }, [watchedHasValidUntil, setValue]) + + const handleFormSubmit = async (formData: FormValidateType) => { + try { + setIsSubmitting(true) + + // Create RewardRequest object + const rewardRequest: RewardRequest = { + name: formData.name, + description: formData.description || undefined, + pointCost: formData.pointCost, + stock: formData.hasUnlimitedStock ? undefined : (formData.stock as number) || undefined, + isActive: formData.isActive, + validUntil: formData.hasValidUntil && formData.validUntil ? new Date(formData.validUntil) : undefined, + imageUrl: formData.imageUrl || undefined, + category: formData.category || undefined, + terms: formData.terms || undefined + } + + if (isEditMode && data?.id) { + // Update existing reward + updateReward.mutate( + { id: data.id, payload: rewardRequest }, + { + onSuccess: () => { + handleReset() + handleClose() + } + } + ) + } else { + // Create new reward + createReward.mutate(rewardRequest, { + onSuccess: () => { + handleReset() + handleClose() + } + }) + } + } catch (error) { + console.error('Error submitting reward:', error) + // Handle error (show toast, etc.) + } finally { + setIsSubmitting(false) + } + } + + const handleReset = () => { + handleClose() + resetForm(initialData) + setShowMore(false) + setImagePreview(null) + } + + const formatPoints = (value: number) => { + return value.toLocaleString('id-ID') + ' poin' + } + + const getStockDisplay = () => { + if (watchedHasUnlimitedStock) return 'Unlimited' + if (watchedStock === '' || watchedStock === 0) return 'Tidak ada stok' + return `${watchedStock} item` + } + + return ( + + {/* Sticky Header */} + +
+ {isEditMode ? 'Edit Reward' : 'Tambah Reward Baru'} + + + +
+
+ + {/* Scrollable Content */} + +
+
+ {/* Image Preview */} + {imagePreview && ( + + + + Preview Gambar + + + + + + + )} + + {/* Nama Reward */} +
+ + Nama Reward * + + ( + + )} + /> +
+ + {/* Kategori Reward */} +
+ + Kategori Reward * + + ( + + {REWARD_CATEGORIES.map(category => ( + + {category.label} + + ))} + + )} + /> +
+ + {/* Point Cost */} +
+ + Biaya Poin * + + ( + 0 ? formatPoints(field.value) : '')} + InputProps={{ + startAdornment: ( + + + + ) + }} + onChange={e => field.onChange(Number(e.target.value))} + /> + )} + /> +
+ + {/* Stock Management */} +
+ + Manajemen Stok + + ( + } + label='Stok Unlimited' + className='mb-2' + /> + )} + /> + {!watchedHasUnlimitedStock && ( + ( + Qty + }} + onChange={e => field.onChange(e.target.value ? Number(e.target.value) : '')} + value={field.value === '' ? '' : field.value} + /> + )} + /> + )} +
+ + {/* Status Aktif */} +
+ ( + } + label='Reward Aktif' + /> + )} + /> +
+ + {/* Tampilkan selengkapnya */} + {!showMore && ( + + )} + + {/* Konten tambahan */} + {showMore && ( + <> + {/* Description */} +
+ + Deskripsi Reward + + ( + + )} + /> +
+ + {/* Image URL */} +
+ + URL Gambar + + ( + + + + ) + }} + /> + )} + /> +
+ + {/* Valid Until */} +
+ + Masa Berlaku + + ( + } + label='Memiliki batas waktu' + className='mb-2' + /> + )} + /> + {watchedHasValidUntil && ( + ( + + )} + /> + )} +
+ + {/* Terms & Conditions */} +
+ + Syarat & Ketentuan + + ( + + )} + /> +
+ + {/* Sembunyikan */} + + + )} +
+ +
+ + {/* Sticky Footer */} + +
+ + +
+
+
+ ) +} + +export default AddEditRewardDrawer diff --git a/src/views/apps/marketing/reward/RewardListTable.tsx b/src/views/apps/marketing/reward/RewardListTable.tsx new file mode 100644 index 0000000..1b741bd --- /dev/null +++ b/src/views/apps/marketing/reward/RewardListTable.tsx @@ -0,0 +1,661 @@ +'use client' + +// React Imports +import { useEffect, useState, useMemo, useCallback } from 'react' + +// Next Imports +import Link from 'next/link' +import { useParams } from 'next/navigation' + +// MUI Imports +import Card from '@mui/material/Card' +import CardHeader from '@mui/material/CardHeader' +import Button from '@mui/material/Button' +import Typography from '@mui/material/Typography' +import Chip from '@mui/material/Chip' +import Checkbox from '@mui/material/Checkbox' +import IconButton from '@mui/material/IconButton' +import { styled } from '@mui/material/styles' +import TablePagination from '@mui/material/TablePagination' +import type { TextFieldProps } from '@mui/material/TextField' +import MenuItem from '@mui/material/MenuItem' + +// Third-party Imports +import classnames from 'classnames' +import { rankItem } from '@tanstack/match-sorter-utils' +import { + createColumnHelper, + flexRender, + getCoreRowModel, + useReactTable, + getFilteredRowModel, + getFacetedRowModel, + getFacetedUniqueValues, + getFacetedMinMaxValues, + getPaginationRowModel, + getSortedRowModel +} from '@tanstack/react-table' +import type { ColumnDef, FilterFn } from '@tanstack/react-table' +import type { RankingInfo } from '@tanstack/match-sorter-utils' + +// Type Imports +import type { ThemeColor } from '@core/types' +import type { Locale } from '@configs/i18n' + +// Component Imports +import OptionMenu from '@core/components/option-menu' +import TablePaginationComponent from '@components/TablePaginationComponent' +import CustomTextField from '@core/components/mui/TextField' +import CustomAvatar from '@core/components/mui/Avatar' + +// Util Imports +import { getInitials } from '@/utils/getInitials' +import { getLocalizedUrl } from '@/utils/i18n' +import { formatCurrency } from '@/utils/transform' + +// Style Imports +import tableStyles from '@core/styles/table.module.css' +import Loading from '@/components/layout/shared/Loading' +import AddEditRewardDrawer from './AddEditRewardDrawer' + +// Reward Catalog Type Interface +export interface RewardCatalogType { + id: string + name: string + description?: string + pointCost: number + stock?: number + isActive: boolean + validUntil?: Date + imageUrl?: string + createdAt: Date + updatedAt: Date +} + +declare module '@tanstack/table-core' { + interface FilterFns { + fuzzy: FilterFn + } + interface FilterMeta { + itemRank: RankingInfo + } +} + +type RewardCatalogTypeWithAction = RewardCatalogType & { + action?: string +} + +// Styled Components +const Icon = styled('i')({}) + +const fuzzyFilter: FilterFn = (row, columnId, value, addMeta) => { + // Rank the item + const itemRank = rankItem(row.getValue(columnId), value) + + // Store the itemRank info + addMeta({ + itemRank + }) + + // Return if the item should be filtered in/out + return itemRank.passed +} + +const DebouncedInput = ({ + value: initialValue, + onChange, + debounce = 500, + ...props +}: { + value: string | number + onChange: (value: string | number) => void + debounce?: number +} & Omit) => { + // States + const [value, setValue] = useState(initialValue) + + useEffect(() => { + setValue(initialValue) + }, [initialValue]) + + useEffect(() => { + const timeout = setTimeout(() => { + onChange(value) + }, debounce) + + return () => clearTimeout(timeout) + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [value]) + + return setValue(e.target.value)} /> +} + +// Dummy data for reward catalog +const DUMMY_REWARD_DATA: RewardCatalogType[] = [ + { + id: '1', + name: 'Voucher Diskon 50K', + description: 'Voucher diskon Rp 50.000 untuk pembelian minimal Rp 200.000', + pointCost: 500, + stock: 100, + isActive: true, + validUntil: new Date('2024-12-31'), + imageUrl: 'https://example.com/voucher-50k.jpg', + createdAt: new Date('2024-01-15'), + updatedAt: new Date('2024-02-10') + }, + { + id: '2', + name: 'Free Shipping Voucher', + description: 'Gratis ongkos kirim untuk seluruh Indonesia', + pointCost: 200, + stock: 500, + isActive: true, + validUntil: new Date('2024-06-30'), + imageUrl: 'https://example.com/free-shipping.jpg', + createdAt: new Date('2024-01-20'), + updatedAt: new Date('2024-02-15') + }, + { + id: '3', + name: 'Bluetooth Speaker Premium', + description: 'Speaker bluetooth kualitas premium dengan bass yang menggelegar', + pointCost: 2500, + stock: 25, + isActive: true, + validUntil: new Date('2024-09-30'), + imageUrl: 'https://example.com/bluetooth-speaker.jpg', + createdAt: new Date('2024-01-25'), + updatedAt: new Date('2024-02-20') + }, + { + id: '4', + name: 'Voucher Cashback 20%', + description: 'Cashback 20% maksimal Rp 100.000 untuk kategori elektronik', + pointCost: 800, + stock: 200, + isActive: true, + validUntil: new Date('2024-08-31'), + createdAt: new Date('2024-02-01'), + updatedAt: new Date('2024-02-25') + }, + { + id: '5', + name: 'Smartwatch Fitness', + description: 'Smartwatch dengan fitur fitness tracking dan heart rate monitor', + pointCost: 5000, + stock: 15, + isActive: true, + validUntil: new Date('2024-12-31'), + createdAt: new Date('2024-02-05'), + updatedAt: new Date('2024-03-01') + }, + { + id: '6', + name: 'Tumbler Stainless Premium', + description: 'Tumbler stainless steel 500ml dengan desain eksklusif', + pointCost: 1200, + stock: 50, + isActive: true, + validUntil: new Date('2024-10-31'), + createdAt: new Date('2024-02-10'), + updatedAt: new Date('2024-03-05') + }, + { + id: '7', + name: 'Gift Card 100K', + description: 'Gift card senilai Rp 100.000 yang bisa digunakan untuk semua produk', + pointCost: 1000, + stock: 300, + isActive: true, + validUntil: new Date('2024-12-31'), + createdAt: new Date('2024-02-15'), + updatedAt: new Date('2024-03-10') + }, + { + id: '8', + name: 'Wireless Earbuds', + description: 'Earbuds wireless dengan noise cancellation dan case charging', + pointCost: 3500, + stock: 30, + isActive: true, + validUntil: new Date('2024-11-30'), + createdAt: new Date('2024-03-01'), + updatedAt: new Date('2024-03-15') + }, + { + id: '9', + name: 'Voucher Buy 1 Get 1', + description: 'Beli 1 gratis 1 untuk kategori fashion wanita', + pointCost: 600, + stock: 150, + isActive: false, + validUntil: new Date('2024-07-31'), + createdAt: new Date('2024-03-05'), + updatedAt: new Date('2024-03-20') + }, + { + id: '10', + name: 'Power Bank 20000mAh', + description: 'Power bank fast charging 20000mAh dengan 3 port USB', + pointCost: 1800, + stock: 40, + isActive: true, + validUntil: new Date('2024-12-31'), + createdAt: new Date('2024-03-10'), + updatedAt: new Date('2024-03-25') + }, + { + id: '11', + name: 'Backpack Travel Exclusive', + description: 'Tas ransel travel anti air dengan compartment laptop', + pointCost: 2200, + stock: 20, + isActive: true, + validUntil: new Date('2024-09-30'), + createdAt: new Date('2024-03-15'), + updatedAt: new Date('2024-03-30') + }, + { + id: '12', + name: 'Voucher Anniversary 75K', + description: 'Voucher spesial anniversary diskon Rp 75.000 tanpa minimum pembelian', + pointCost: 750, + stock: 0, + isActive: true, + validUntil: new Date('2024-12-31'), + createdAt: new Date('2024-03-20'), + updatedAt: new Date('2024-04-05') + } +] + +// Mock data hook with dummy data +const useRewardCatalog = ({ page, limit, search }: { page: number; limit: number; search: string }) => { + const [isLoading, setIsLoading] = useState(false) + + // Simulate loading + useEffect(() => { + setIsLoading(true) + const timer = setTimeout(() => setIsLoading(false), 500) + return () => clearTimeout(timer) + }, [page, limit, search]) + + // Filter data based on search + const filteredData = useMemo(() => { + if (!search) return DUMMY_REWARD_DATA + + return DUMMY_REWARD_DATA.filter( + reward => + reward.name.toLowerCase().includes(search.toLowerCase()) || + reward.description?.toLowerCase().includes(search.toLowerCase()) + ) + }, [search]) + + // Paginate data + const paginatedData = useMemo(() => { + const startIndex = (page - 1) * limit + const endIndex = startIndex + limit + return filteredData.slice(startIndex, endIndex) + }, [filteredData, page, limit]) + + return { + data: { + rewards: paginatedData, + total_count: filteredData.length + }, + isLoading, + error: null, + isFetching: isLoading + } +} + +// Column Definitions +const columnHelper = createColumnHelper() + +const RewardListTable = () => { + // States + const [addRewardOpen, setAddRewardOpen] = useState(false) + const [editRewardData, setEditRewardData] = useState(undefined) + const [rowSelection, setRowSelection] = useState({}) + const [globalFilter, setGlobalFilter] = useState('') + const [currentPage, setCurrentPage] = useState(1) + const [pageSize, setPageSize] = useState(10) + const [search, setSearch] = useState('') + + const { data, isLoading, error, isFetching } = useRewardCatalog({ + page: currentPage, + limit: pageSize, + search + }) + + const rewards = data?.rewards ?? [] + const totalCount = data?.total_count ?? 0 + + // Hooks + const { lang: locale } = useParams() + + const handlePageChange = useCallback((event: unknown, newPage: number) => { + setCurrentPage(newPage) + }, []) + + const handlePageSizeChange = useCallback((event: React.ChangeEvent) => { + const newPageSize = parseInt(event.target.value, 10) + setPageSize(newPageSize) + setCurrentPage(1) // Reset to first page + }, []) + + const handleEditReward = (reward: RewardCatalogType) => { + setEditRewardData(reward) + setAddRewardOpen(true) + } + + const handleDeleteReward = (rewardId: string) => { + if (confirm('Apakah Anda yakin ingin menghapus reward ini?')) { + console.log('Deleting reward:', rewardId) + // Add your delete logic here + // deleteReward.mutate(rewardId) + } + } + + const handleToggleActive = (rewardId: string, currentStatus: boolean) => { + console.log('Toggling active status for reward:', rewardId, !currentStatus) + // Add your toggle logic here + // toggleRewardStatus.mutate({ id: rewardId, isActive: !currentStatus }) + } + + const handleCloseRewardDrawer = () => { + setAddRewardOpen(false) + setEditRewardData(undefined) + } + + const columns = useMemo[]>( + () => [ + { + id: 'select', + header: ({ table }) => ( + + ), + cell: ({ row }) => ( + + ) + }, + columnHelper.accessor('name', { + header: 'Nama Reward', + cell: ({ row }) => ( +
+ + {getInitials(row.original.name)} + +
+ + + {row.original.name} + + + {row.original.description && ( + + {row.original.description} + + )} +
+
+ ) + }), + columnHelper.accessor('pointCost', { + header: 'Biaya Poin', + cell: ({ row }) => ( +
+ + + {row.original.pointCost.toLocaleString('id-ID')} poin + +
+ ) + }), + columnHelper.accessor('stock', { + header: 'Stok', + cell: ({ row }) => { + const stock = row.original.stock + const stockColor = stock === 0 ? 'error' : stock && stock <= 10 ? 'warning' : 'success' + const stockText = stock === undefined ? 'Unlimited' : stock === 0 ? 'Habis' : stock.toString() + + return + } + }), + columnHelper.accessor('isActive', { + header: 'Status', + cell: ({ row }) => ( + + ) + }), + columnHelper.accessor('validUntil', { + header: 'Berlaku Hingga', + cell: ({ row }) => ( + + {row.original.validUntil + ? new Date(row.original.validUntil).toLocaleDateString('id-ID', { + year: 'numeric', + month: 'short', + day: 'numeric' + }) + : 'Tidak terbatas'} + + ) + }), + columnHelper.accessor('createdAt', { + header: 'Tanggal Dibuat', + cell: ({ row }) => ( + + {new Date(row.original.createdAt).toLocaleDateString('id-ID', { + year: 'numeric', + month: 'short', + day: 'numeric' + })} + + ) + }), + { + id: 'actions', + header: 'Aksi', + cell: ({ row }) => ( +
+ handleToggleActive(row.original.id, row.original.isActive) + } + }, + { + text: 'Edit', + icon: 'tabler-edit text-[22px]', + menuItemProps: { + className: 'flex items-center gap-2 text-textSecondary', + onClick: () => handleEditReward(row.original) + } + }, + { + text: 'Hapus', + icon: 'tabler-trash text-[22px]', + menuItemProps: { + className: 'flex items-center gap-2 text-textSecondary', + onClick: () => handleDeleteReward(row.original.id) + } + } + ]} + /> +
+ ), + enableSorting: false + } + ], + // eslint-disable-next-line react-hooks/exhaustive-deps + [locale, handleEditReward, handleDeleteReward, handleToggleActive] + ) + + const table = useReactTable({ + data: rewards as RewardCatalogType[], + columns, + filterFns: { + fuzzy: fuzzyFilter + }, + state: { + rowSelection, + globalFilter, + pagination: { + pageIndex: currentPage, + pageSize + } + }, + enableRowSelection: true, + onRowSelectionChange: setRowSelection, + getCoreRowModel: getCoreRowModel(), + manualPagination: true, + pageCount: Math.ceil(totalCount / pageSize) + }) + + return ( + <> + +
+ table.setPageSize(Number(e.target.value))} + className='max-sm:is-full sm:is-[70px]' + > + 10 + 25 + 50 + +
+ setSearch(value as string)} + placeholder='Cari Reward' + className='max-sm:is-full' + /> + + +
+
+
+ {isLoading ? ( + + ) : ( + + + {table.getHeaderGroups().map(headerGroup => ( + + {headerGroup.headers.map(header => ( + + ))} + + ))} + + {table.getFilteredRowModel().rows.length === 0 ? ( + + + + + + ) : ( + + {table + .getRowModel() + .rows.slice(0, table.getState().pagination.pageSize) + .map(row => { + return ( + + {row.getVisibleCells().map(cell => ( + + ))} + + ) + })} + + )} +
+ {header.isPlaceholder ? null : ( + <> +
+ {flexRender(header.column.columnDef.header, header.getContext())} + {{ + asc: , + desc: + }[header.column.getIsSorted() as 'asc' | 'desc'] ?? null} +
+ + )} +
+ Tidak ada data tersedia +
{flexRender(cell.column.columnDef.cell, cell.getContext())}
+ )} +
+ ( + + )} + count={totalCount} + rowsPerPage={pageSize} + page={currentPage} + onPageChange={handlePageChange} + onRowsPerPageChange={handlePageSizeChange} + rowsPerPageOptions={[10, 25, 50]} + disabled={isLoading} + /> +
+ + + ) +} + +export default RewardListTable diff --git a/src/views/apps/marketing/reward/index.tsx b/src/views/apps/marketing/reward/index.tsx new file mode 100644 index 0000000..c08a57c --- /dev/null +++ b/src/views/apps/marketing/reward/index.tsx @@ -0,0 +1,17 @@ +// MUI Imports +import Grid from '@mui/material/Grid2' +import RewardListTable from './RewardListTable' + +// Type Imports + +const RewardList = () => { + return ( + + + + + + ) +} + +export default RewardList