0823a1c26a
feat: Complete Admin Phase 6 Job screens migration
...
- Migrate 4 admin job screens to OS_Wrapper (dashboard, list, detail, form)
- Add enableKeyboardHandling to reject-input form screen
- Update TASK-005 with Admin Phase 6 completion status
- Total: 132 files migrated (~79% complete)
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com >
2026-04-14 12:24:58 +08:00
eb64c30d49
feat: Complete User Phase 9 Investment screens migration + note known upload issue
...
- Migrate 24 investment screens to OS_Wrapper (tabs, list, detail, forms, transaction flow)
- Add contentPadding={PADDING_INLINE} to 9 list/tabs screens for consistent spacing
- Add enableKeyboardHandling to 6 form screens
- Fix investment tabs layout height to use OS_IOS_HEIGHT/OS_ANDROID_HEIGHT constants
- Update TASK-005 with known issue: upload image returns 500 error in dev env
- Note: Investment feature not fully complete - upload issue needs investigation tomorrow
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com >
2026-04-13 17:56:49 +08:00
98f8c7e2bf
Fix layout tabs pada komponen
...
Fix home tabs
### No Issue
2026-04-01 17:17:12 +08:00
f68deab8c0
Fix App Header
...
Layouts & Navigation
- app/(application)/_layout.tsx
- app/(application)/(user)/_layout.tsx
- app/(application)/(user)/event/(tabs)/_layout.tsx
- app/(application)/(user)/job/(tabs)/_layout.tsx
- app/(application)/(user)/voting/(tabs)/_layout.tsx
- app/(application)/(user)/portofolio/_layout.tsx
- app/(application)/(user)/profile/_layout.tsx
- app/(application)/admin/_layout.tsx
- app/+not-found.tsx
User – File
- app/(application)/(file)/[id].tsx
User – Collaboration
- app/(application)/(user)/collaboration/[id]/index.tsx
- app/(application)/(user)/collaboration/[id]/detail-project-main.tsx
- app/(application)/(user)/collaboration/[id]/detail-participant.tsx
- app/(application)/(user)/collaboration/[id]/[detail]/info.tsx
- app/(application)/(user)/collaboration/[id]/[detail]/room-chat.tsx
User – Donation
- app/(application)/(user)/donation/[id]/index.tsx
- app/(application)/(user)/donation/[id]/[status]/detail.tsx
- app/(application)/(user)/donation/[id]/(news)/[news]/index.tsx
User – Event
- app/(application)/(user)/event/[id]/[status]/detail-event.tsx
- app/(application)/(user)/event/[id]/confirmation.tsx
- app/(application)/(user)/event/[id]/contribution.tsx
- app/(application)/(user)/event/[id]/history.tsx
- app/(application)/(user)/event/[id]/publish.tsx
User – Investment
- app/(application)/(user)/investment/[id]/index.tsx
- app/(application)/(user)/investment/[id]/[status]/detail.tsx
- app/(application)/(user)/investment/[id]/(my-holding)/[id].tsx
- app/(application)/(user)/investment/[id]/(news)/[news]/index.tsx
User – Job
- app/(application)/(user)/job/[id]/[status]/detail.tsx
User – Portofolio
- app/(application)/(user)/portofolio/[id]/index.tsx
User – Profile
- app/(application)/(user)/profile/[id]/index.tsx
User – Voting
- app/(application)/(user)/voting/[id]/index.tsx
- app/(application)/(user)/voting/[id]/[status]/detail.tsx
- app/(application)/(user)/voting/[id]/contribution.tsx
- app/(application)/(user)/voting/[id]/history.tsx
Components
- components/Button/BackButtonFromNotification.tsx
- components/_ShareComponent/AppHeader.tsx
Admin Screens
- screens/Admin/Notification-Admin/ScreenNotificationAdmin.tsx
- screens/Admin/Notification-Admin/ScreenNotificationAdmin2.tsx
Screens – Donation
- screens/Donation/ScreenListOfNews.tsx
- screens/Donation/ScreenRecapOfNews.tsx
Screens – Forum
- screens/Forum/ViewBeranda.tsx
- screens/Forum/ViewBeranda2.tsx
- screens/Forum/ViewBeranda3.tsx
Screens – Investment
- screens/Invesment/Document/ScreenRecapOfDocument.tsx
- screens/Invesment/News/ScreenListOfNews.tsx
- screens/Invesment/News/ScreenRecapOfNews.tsx
Screens – Notification
- screens/Notification/ScreenNotification_V1.tsx
- screens/Notification/ScreenNotification_V2.tsx
iOS
- ios/HIPMIBadungConnect.xcodeproj/project.pbxproj
Docs
- QWEN.md
### Issue: Tabs can't clicked
2026-03-13 16:41:34 +08:00
2705f96b01
feat: implement pagination and NewWrapper on donation and investment screens
...
- Implement pagination on investment screens (ScreenMyHolding, ScreenInvestor, ScreenRecapOfNews, ScreenListOfNews)
- Implement pagination on donation screens (ScreenStatus)
- Update API functions to support pagination with page parameter (apiInvestmentGetAll, apiInvestmentGetInvestorById, apiInvestmentGetNews, apiDonationGetByStatus)
- Replace ViewWrapper with NewWrapper for better UI experience
- Update app directory files to use new modular components from screens directory
- Add pull-to-refresh and infinite scroll functionality
- Improve performance by loading data incrementally
- Apply NewWrapper to donation create and create-story screens
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com >
2026-02-09 17:35:54 +08:00
38a6b424e8
Ringkasan Perubahan
...
1. Pembuatan dan Pembaruan Komponen Layar Investasi dengan Sistem Pagination
ScreenMyHolding.tsx
- Diperbarui dari sistem loading data statis ke sistem pagination dinamis
- Menggunakan hook usePagination untuk manajemen data
- Mengganti ViewWrapper dengan NewWrapper untuk tampilan yang lebih modern
- Menambahkan fitur pull-to-refresh dan infinite scroll
- Menggunakan helper pagination dari createPaginationComponents
ScreenInvestor.tsx
- Dibuat baru dengan sistem pagination
- Menggunakan hook usePagination untuk manajemen data
- Menggunakan NewWrapper sebagai komponen dasar
- Menambahkan fitur pull-to-refresh dan infinite scroll
ScreenRecapOfNews.tsx
- Dibuat baru dengan sistem pagination
- Menggunakan hook usePagination untuk manajemen data
- Menggunakan NewWrapper sebagai komponen dasar
- Menambahkan fitur pull-to-refresh dan infinite scroll
ScreenListOfNews.tsx
- Dibuat baru dengan sistem pagination
- Menggunakan hook usePagination untuk manajemen data
- Menggunakan NewWrapper sebagai komponen dasar
- Menambahkan fitur pull-to-refresh dan infinite scroll
2. Perubahan pada Fungsi-Fungsi API untuk Mendukung Pagination
apiInvestmentGetAll
- Sudah mendukung parameter page dengan default "1"
apiInvestmentGetInvestorById
- Ditambahkan parameter page dengan default "1"
- Memungkinkan pengambilan data investor secara bertahap
apiInvestmentGetNews
- Ditambahkan parameter page dengan default "1"
- Memungkinkan pengambilan data berita secara bertahap
3. Pembaruan File-File di Direktori app/ untuk Menggunakan Komponen-Komponen Baru
app/(application)/(user)/investment/[id]/investor.tsx
- Diperbarui untuk menggunakan komponen Investment_ScreenInvestor
- Menghilangkan logika lokal dan menggantinya dengan komponen modular
app/(application)/(user)/investment/[id]/(news)/recap-of-news.tsx
- Diperbarui untuk menggunakan komponen Investment_ScreenRecapOfNews
- Menghilangkan logika lokal dan menggantinya dengan komponen modular
app/(application)/(user)/investment/[id]/(news)/list-of-news.tsx
- Diperbarui untuk menggunakan komponen Investment_ScreenListOfNews
- Menghilangkan logika lokal dan menggantinya dengan komponen modular
4. Implementasi Sistem Pagination
usePagination Hook
- Digunakan secara konsisten di semua komponen layar investasi
- Menyediakan fitur load more dan refresh
- Mengelola state loading, refreshing, dan data
NewWrapper Component
- Digunakan sebagai pengganti ViewWrapper
- Menyediakan dukungan bawaan untuk FlatList
- Menyediakan dukungan untuk refreshControl dan onEndReached
Pagination Helpers
- Menggunakan createPaginationComponents untuk menghasilkan komponen-komponen pagination
- Menyediakan skeleton loading saat data sedang dimuat
- Menyediakan pesan kosong saat tidak ada data
5. Manfaat dari Perubahan Ini
1. Performa Lebih Baik: Dengan pagination, hanya sejumlah kecil data yang dimuat pada satu waktu, meningkatkan
performa aplikasi
2. Pengalaman Pengguna Lebih Baik: Fitur pull-to-refresh dan infinite scroll membuat navigasi lebih intuitif
3. Kode Lebih Modular: Komponen-komponen baru dapat digunakan kembali dan dipelihara lebih mudah
4. Struktur Kode Lebih Rapi: Pemisahan antara logika tampilan dan logika data membuat kode lebih terorganisir
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com >
2026-02-09 14:42:56 +08:00
83fa277e03
Fix Loaddata Invesment & Clearing code
...
UI – Investment (User)
- app/(application)/(user)/investment/(tabs)/index.tsx
- app/(application)/(user)/investment/(tabs)/portofolio.tsx
- app/(application)/(user)/investment/(tabs)/transaction.tsx
- app/(application)/(user)/investment/[id]/(document)/list-of-document.tsx
- app/(application)/(user)/investment/[id]/(document)/recap-of-document.tsx
- app/(application)/(user)/investment/[id]/(transaction-flow)/invoice.tsx
- app/(application)/(user)/investment/[id]/(transaction-flow)/select-bank.tsx
Screens – Investment
- screens/Invesment/ButtonStatusSection.tsx
- screens/Invesment/Document/RecapBoxDetail.tsx
- screens/Invesment/Document/ScreenListDocument.tsx
- screens/Invesment/Document/ScreenRecap.tsx
- screens/Invesment/ScreenBursa.tsx
- screens/Invesment/ScreenPortofolio.tsx
- screens/Invesment/ScreenTransaction.tsx
Profile
- app/(application)/(user)/profile/[id]/detail-blocked.tsx
API Client
- service/api-client/api-investment.ts
Docs
- docs/prompt-for-qwen-code.md
### No issue
2026-02-06 17:27:12 +08:00
c570a19d84
Fix Wrapper
...
UI – Investment (User)
- app/(application)/(user)/investment/create.tsx
- app/(application)/(user)/investment/[id]/edit.tsx
### No Issue"
2026-02-05 17:30:17 +08:00
5665dc88ba
Notification investasi done
...
### No Isssue
2026-01-22 17:54:33 +08:00
da82a02a45
Investment UI (Admin & User)
...
- app/(application)/(user)/investment/[id]/(transaction-flow)/invoice.tsx
- app/(application)/admin/investment/[id]/[status]/index.tsx
- app/(application)/admin/investment/[id]/[status]/transaction-detail.tsx
- app/(application)/admin/investment/[status]/status.tsx
API Service (Admin)
- service/api-admin/api-admin-investment.ts
### No issue
2026-01-21 15:39:08 +08:00
14c0f0e499
User – Investment
...
app/(application)/(user)/investment/(tabs)/_layout.tsx
app/(application)/(user)/investment/(tabs)/portofolio.tsx
app/(application)/(user)/investment/create.tsx
Admin – Investment
app/(application)/admin/investment/[id]/reject-input.tsx
Screens / UI
screens/Invesment/BoxBerandaSection.tsx
API
service/api-admin/api-admin-investment.ts
Utils
utils/pickFile.ts
### No Issue
2026-01-20 17:41:02 +08:00
9123e73606
Fix bug pada beberapa halaman
...
Fix:
modified: app.config.js
modified: app/(application)/(user)/donation/[id]/[status]/detail.tsx
modified: app/(application)/(user)/investment/(tabs)/my-holding.tsx
modified: app/(application)/(user)/investment/[id]/[status]/detail.tsx
modified: app/(application)/(user)/investment/[id]/index.tsx
modified: app/(application)/admin/event/[id]/[status]/index.tsx
modified: components/DateInput/DateTimePickerCustom.tsx
modified: ios/HIPMIBadungConnect/Info.plist
modified: screens/Invesment/BoxProgressSection.tsx
### No Issue
2026-01-14 17:41:20 +08:00
858b441a8c
Clearing apple rejected
...
QC: Inno
Fix:
- app.config.js
- app/(application)/(user)/investment/[id]/index.tsx
- app/(application)/(user)/voting/(tabs)/index.tsx
- app/(application)/(user)/waiting-room.tsx
- app/(application)/terms-agreement.tsx
- context/AuthContext.tsx
- ios/HIPMIBadungConnect.xcodeproj/project.pbxproj
- ios/HIPMIBadungConnect/Info.plist
- screens/Authentication/LoginView.tsx
- screens/Authentication/VerificationView.tsx
- screens/Home/topFeatureSection.tsx
- screens/Invesment/BoxBerandaSection.tsx
- screens/Invesment/ButtonInvestasiSection.tsx
- screens/Invesment/DetailDataPublishSection.tsx
- service/api-client/api-voting.ts
- service/api-config.ts
### No Issue
2025-12-02 17:48:24 +08:00
ec49999f99
Integrasi API:
...
Add:
- hipmi-note.md
Fix:
- app/(application)/(user)/donation/[id]/(transaction-flow)/[invoiceId]/failed.tsx
- app/(application)/(user)/donation/[id]/(transaction-flow)/[invoiceId]/success.tsx
- app/(application)/(user)/event/[id]/confirmation.tsx
- app/(application)/(user)/investment/(tabs)/index.tsx
- app/(application)/(user)/investment/(tabs)/my-holding.tsx
- app/(application)/(user)/investment/[id]/(my-holding)/[id].tsx
- app/(application)/(user)/investment/[id]/(transaction-flow)/failed.tsx
- app/(application)/(user)/investment/[id]/(transaction-flow)/index.tsx
- app/(application)/(user)/investment/[id]/(transaction-flow)/success.tsx
- app/(application)/(user)/investment/[id]/investor.tsx
- app/(application)/admin/investment/[id]/[status]/index.tsx
- app/(application)/admin/investment/[id]/[status]/transaction-detail.tsx
- app/(application)/admin/investment/[id]/list-of-investor.tsx
- lib/dummy-data/investment/dummy-data-not-publish.ts
- screens/Authentication/VerificationView.tsx
- screens/Home/bottomFeatureSection.tsx
- service/api-client/api-investment.ts
### No Issue
2025-11-04 12:13:49 +08:00
f9f996f195
Admin : Investasi integarsi API
...
### NO Issue
2025-11-03 11:41:31 +08:00
4625831377
Integrasi API: Admin Investasi
...
Fix:
- app/(application)/(user)/investment/(tabs)/index.tsx
- app/(application)/admin/investment/[id]/[status]/transaction-detail.tsx
- app/(application)/admin/investment/[id]/list-of-investor.tsx
- screens/Invesment/BoxBerandaSection.tsx
- screens/Invesment/DetailDataPublishSection.tsx
- service/api-admin/api-admin-investment.ts
### No Issue
2025-10-30 17:36:42 +08:00
ebd6107c36
Integrasi API: Investment:
...
Add:
- screens/Invesment/BoxBerandaSection.tsx
Fix:
- app/(application)/(user)/investment/(tabs)/index.tsx
- screens/Donation/BoxPublish.tsx
- screens/Invesment/BoxProgressSection.tsx
- screens/Invesment/DetailDataPublishSection.tsx
### No Issue
2025-10-30 16:38:24 +08:00
f23cfe1107
Integrasi API: Investment & Admin Investment
...
Add:
- components/_ShareComponent/NoDataText.tsx
- service/api-admin/api-admin-investment.ts
Fix:
- app/(application)/(user)/investment/(tabs)/index.tsx
- app/(application)/admin/investment/[id]/[status]/index.tsx
- app/(application)/admin/investment/[id]/reject-input.tsx
- app/(application)/admin/investment/[status]/status.tsx
- app/(application)/admin/investment/index.tsx
- screens/Invesment/DetailDataPublishSection.tsx
### No Issue
2025-10-30 15:13:33 +08:00
b293310969
Donation:
...
Add:
- components/_ShareComponent/MoneyTransferAnimation.tsx
Fix:
- Invoice terintegrasi API
- Create dan list berita
### No Issue
2025-10-08 17:40:36 +08:00
a6389174d7
git add . && git commit -m
2025-10-03 14:09:31 +08:00
2be4afdcb1
Investment
...
Add:
- components/Button/CoyButton.tsx
- constants/local-storage-key.ts
Fix:
- Integrasi pada proses transaksi pmebelian investasi
### No Issue
2025-10-02 17:29:25 +08:00
aa85e05f79
Invesment
...
Fix: Integrasi API ke UI
- investment/[id]/(transaction-flow)/index.tsx
- investment/[id]/index.tsx
### Issue: input data untuk total lembar dan sisa lembar berisi . dianatra angkanya
2025-10-01 17:29:59 +08:00
c2acb97a37
Invesment
...
Fix:
- tampilan list data bada beranda dan detail data main
### No Issue
2025-10-01 16:45:23 +08:00
250b216a54
Invesment
...
Fix:
- tampilan dokumen dan file prospektus
- create & edit dokumen
- list rekap dokumen dan tampilan ( untuk non author )
### No Issue
2025-10-01 14:40:50 +08:00
5f05d1f7f0
Component
...
Fix: fix nama upload dan delete file service
Invesment:
Fix:
- Edit data dan edit prospektus
- View file dengan metode react-native-webview
### No issue
2025-09-30 17:30:07 +08:00
3d8d8568a3
Invesment
...
Fix: create & edit list master sudah terintegrasi ke API
### No Issue
2025-09-30 11:00:31 +08:00
ccdd7730b2
Investment
...
Add:
- utils/pickFile: pilih extention file sesuai kebutuhan
- utils/formatCurrencyDisplay.ts: tampillan uang 2.500
- api-client/api-investment.ts
- api-storage.ts: api strogre wibudev
Fix:
- Integrasi API pada: Create, Edit, Tampilan status & detail
- Button status dan hapus data juga sudah terintegrasi
### No Issue
2025-09-29 17:42:25 +08:00
ca48dd2c6c
Donation
...
Add:
- donation/[id]/(transaction-flow)
### No Issue
2025-08-04 17:44:20 +08:00
0eebe64647
Invesment
...
Fix:
- ComponentBoxOnBottomDetail: file route > /(file)/[id].tsx
Feature:
- app/(application)/(file)/
## No Issue
2025-08-01 15:09:20 +08:00
db0f4246b6
Invesment
...
Add:
- /investment/[id]/(my-holding)/
Fix:
- screens/Invesment/DetailDataPublishSection.tsx: tipe data prop ?
## No Issue
2025-08-01 12:01:40 +08:00
16462c4214
Invesment
...
Add
- _master/status-transaction.ts
- investment/[id]/(transaction-flow)/success.tsx
- investment/[id]/(transaction-flow)/failed.tsx
Fix:
- lib/dummy-data/_master/status.tsx
Component:
- components/Badge/BadgeCustom.tsx: Penambahan custom color
## No Issue
2025-08-01 11:35:39 +08:00
8e31df660a
Invesment
...
Add :
- lib/dummy-data/_master/bank.ts
- investment/[id]/(transaction-flow)/select-bank.tsx
- /investment/[id]/(transaction-flow)/process.tsx
- investment/[id]/(transaction-flow)/invoice.tsx
## No Issue
2025-07-31 17:47:46 +08:00
cc35bc6907
Invesment
...
Add:
- app/(application)/(user)/investment/[id]/(document)/
## No Issue
2025-07-31 16:38:28 +08:00
2931f6ba55
Investment
...
Add:
- screens/Invesment/DetailDataPublishSection.tsx
- screens/Invesment/BoxProgressSection.tsx
- app/(application)/(user)/investment/[id]/(transaction-flow)
## No Issue
2025-07-31 15:45:07 +08:00
7205cb0736
Invesment
...
Add:
- screens/Invesment/ComponentBoxOnBottomDetail.tsx
- screens/Invesment/ButtonInvestasiSection.tsx
- app/(application)/(user)/investment/[id]/investor.tsx
- app/(application)/(user)/investment/[id]/(news)/list-of-news.tsx
Fix:
- screens/Invesment/BoxDetailDataSection.tsx
- app/(application)/(user)/investment/[id]/[status]/detail.tsx
- app/(application)/(user)/_layout.tsx
## No Issue
2025-07-31 14:47:40 +08:00
54fc2a3d02
Invesment
...
Add:
- app/(application)/(user)/investment/[id]/(news)/
Fix:
- app/(application)/(user)/investment/[id]/[status]/detail.tsx
- screens/Invesment/BoxDetailDataSection.tsx
Component
Add:
- Tambah icon : IconDocument, IconNews, IconPlus, IconProspectus, IconTrash
## No Issue
2025-07-31 12:03:59 +08:00
56d074260e
Invesment
...
Add:
- dummy-data-not-publish
- BoxDetailDataSection
Fix:
- investment/[id]/[status]/detail: fix basic ui
## No Issue
2025-07-31 10:41:16 +08:00
b3be6a7f53
Invesment
...
Add:
- app/(application)/(user)/investment/[id]/[file]/
- app/(application)/(user)/investment/[id]/add-document.tsx
- app/(application)/(user)/investment/[id]/edit-document.tsx
- app/(application)/(user)/investment/[id]/edit-prospectus.tsx
- app/(application)/(user)/investment/[id]/recap-of-document.tsx
Fix:
- app/(application)/(user)/investment/[id]/list-of-document.tsx
- app/(application)/(user)/investment/[id]/edit.tsx
- app/(application)/(user)/investment/[id]/[status]/detail.tsx
## No Issue
2025-07-30 16:55:37 +08:00
c863c04fb4
Invesment
...
Add :
- screens/Invesment/
- app/(application)/(user)/investment/[id]/
Fix:
- index & portofolio: basic UI
## No Issue
2025-07-30 14:31:39 +08:00
a43ddaa9d6
Invesment
...
Fix:
- styles/global-styles.ts : tambah alignSelfFlexEnd
- my-holding: basic ui
- portofolio.: basic ui
- transaction: basic ui
## No Issue
2025-07-30 11:15:57 +08:00
8a514d2670
Investasi
...
Add:
- lib/dummy-data/investment : list master
- app/(application)/(user)/investment/(tabs)
Main Layout:
Fix:
- app/(application)/(user)/investment/create.tsx
Component
Add:
- Progress
## No Issue
2025-07-29 17:22:11 +08:00
554428b7b4
Crowd
...
Add:
- assets/images/constants/crowd-hipmi.png
- app/(application)/(user)/crowdfunding/
- app/(application)/(user)/investment/
- app/(application)/(user)/donation/
Fix:
- screens/Home/topFeatureSection.tsx
- app/(application)/(user)/_layout.tsx
## No Issue
2025-07-29 11:41:41 +08:00