fixing tampilan depan
parent
29b2c1df0c
commit
59aff206e5
@ -1 +1,27 @@
|
||||
# TODO
|
||||
|
||||
## Front
|
||||
|
||||
- [ ] tampilan keranjang jadi lebih seperti tokped dengan metode pembayaran deposit atau hutang jika tersedia
|
||||
- [ ] tampilan transaksi deposit, hutang (mitra wbb), dan poin jadi satu tampilan
|
||||
- [ ] mengubah metode pembayaran deposit dengan daftar bank seperti deposit dan tampil logo bank
|
||||
- [ ] tambah metode topup deposit dengan setor tunai kantor wbb
|
||||
- [ ] tambah screen untuk daftar setor tunai kantor wbb
|
||||
- [ ] halaman untuk menampilkan level customer
|
||||
- [ ] expired time 2jam di deposit manual maupun kantor wbb
|
||||
- [ ] ubah username dan password di detail transaksi dengan kode voucher saja
|
||||
- [ ] [BUG] pembelian voucher lebih dari 1 mendapat kode yang sama
|
||||
- [ ] format nomor transaksi di deposit , transaksi dan poin
|
||||
|
||||
# Back Office
|
||||
|
||||
- [ ] tambah biaya admin di deposit manual transfer
|
||||
- [ ] info di ubah jadi html
|
||||
- [ ] tambahan detail customer untuk detail mitra wbb
|
||||
- [ ] detail customer level untuk tampilan screen level customer di depan
|
||||
- [ ] rombak fitur affiliasi
|
||||
- [ ] tambah detail di user admin
|
||||
- [ ] tambah logo bank
|
||||
- [ ] tambah setor tunai
|
||||
- [ ] pengaturan share dapat menggunakan html
|
||||
- [ ] menu mitrawbb
|
||||
|
@ -0,0 +1,23 @@
|
||||
export default function BottomSheet({ isOpen, toggle, children }) {
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
className={`${
|
||||
isOpen ? '' : 'hidden'
|
||||
} overflow-y-auto overflow-x-hidden fixed bottom-0 right-0 z-50 w-full justify-center flex delay-150 transition ease-in-out duration-1000`}
|
||||
>
|
||||
<div
|
||||
className="fixed bottom-0 right-0 bg-opacity-50 dark:bg-opacity-90 bg-gray-900 w-full h-full dark:bg-gray-900"
|
||||
onClick={() => toggle()}
|
||||
></div>
|
||||
<div
|
||||
className={`fixex bottom-0 relative w-full max-w-md md:h-auto`}
|
||||
>
|
||||
<div className="relative bg-white rounded-t-lg p-2 dark:bg-gray-700 text-base dark:text-gray-400">
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
import { usePage } from '@inertiajs/react'
|
||||
import { HiOutlineBell } from 'react-icons/hi2'
|
||||
|
||||
export default function GuestBanner() {
|
||||
const {
|
||||
props: { setting, notification_count },
|
||||
} = usePage()
|
||||
return (
|
||||
<div>
|
||||
{/* user */}
|
||||
<div className="flex flex-row justify-between items-center px-5 py-6 text-lg bg-blue-900">
|
||||
<div className="flex flex-col text-white">
|
||||
<div className="font-bold">{setting.OPEN_WEBSITE_NAME}</div>
|
||||
</div>
|
||||
<div className="flex flex-row">
|
||||
<HiOutlineBell className="text-white w-7 h-7" />
|
||||
<div>
|
||||
<div className="bg-white text-blue-700 rounded-lg px-1 text-xs -ml-2.5">
|
||||
{notification_count}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
@ -1,4 +1,6 @@
|
||||
#!/bin/bash
|
||||
npm run build
|
||||
|
||||
rsync -arP -e 'ssh -p 225' --exclude=node_modules --exclude=database/database.sqlite --exclude=.git --exclude=.env --exclude=public/hot . arm@ajikamaludin.id:/home/arm/projects/www/voucher
|
||||
|
||||
ssh -p 225 arm@ajikamaludin.id -C docker exec php82 php /var/www/voucher/artisan migrate:refresh --seed
|
||||
ssh -p 225 arm@ajikamaludin.id -C docker exec php82 php /var/www/voucher/artisan migrate:refresh --seed
|
||||
|
Loading…
Reference in New Issue