6ec839fd67
feat: Migrate Profile, Waiting Room, and Delete Account to OS_Wrapper
...
Profile Screens (8 files):
- [id]/index.tsx: NewWrapper → OS_Wrapper (list with refresh)
- [id]/edit.tsx: ViewWrapper → OS_Wrapper (form + keyboard handling)
- create.tsx: ViewWrapper → OS_Wrapper (form + keyboard handling)
- [id]/blocked-list.tsx: NewWrapper → OS_Wrapper (pagination list)
- [id]/detail-blocked.tsx: NewWrapper → OS_Wrapper (static with footer)
- [id]/update-background.tsx: ViewWrapper → OS_Wrapper (static with footer)
- [id]/update-photo.tsx: ViewWrapper → OS_Wrapper (static with footer)
- All Profile forms use enableKeyboardHandling + contentPaddingBottom={250}
Other Screens (2 files):
- waiting-room.tsx: NewWrapper → OS_Wrapper (static with refresh + footer)
- delete-account.tsx: ViewWrapper → OS_Wrapper (form + keyboard handling)
Bug Fixes:
- AndroidWrapper: Add refreshControl to ScrollView (fix pull-to-refresh on static mode)
Pattern Applied:
- List screens: contentPaddingBottom=100 (default)
- Form screens: contentPaddingBottom=250 (with TextInput)
- No PADDING_INLINE (user preference - prevents box narrowing)
Documentation:
- Update TASK-005 with Phase 1 completion details
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com >
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com >
2026-04-08 14:32:11 +08:00
44d9025afe
refactor: Update header components and improve job edit footer layout
...
- Replace Waiting Room header with AppHeader component
- Replace Profile Create header with AppHeader with showBack=false
- Wrap Job Edit submit button with BoxButtonOnFooter for consistent footer layout
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com >
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com >
2026-04-06 17:49:28 +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
3bbee15c3a
Perbaikan Bug & Error Handling: │
...
│ │
│ 1. Device Token Registration Error (HTTP 500) │
│ - File: service/api-device-token.ts │
│ - Fix: Hapus nested data wrapper pada payload │
│ - Improvement: Tambahkan error logging detail │
│ │
│ 2. Uncaught Promise Errors │
│ - File: components/Notification/NotificationInitializer.tsx │
│ - Fix: Better error handling untuk device token registration │
│ - File: app/(application)/(user)/home.tsx │
│ - Fix: Add .catch() untuk userData() dan error handling apiUser() │
│ - File: app/(application)/(user)/profile/[id]/index.tsx │
│ - Fix: Add error handling untuk apiProfile(), apiUser(), userData() │
│ │
│ 3. UI Improvements │
│ - File: app/(application)/(user)/home.tsx │
│ - Feature: 4 skeleton lingkaran untuk loading state grid features │
│ │
│ 4. Maps Migration │
│ - File: app/(application)/admin/maps.tsx │
│ - Change: Replace react-native-maps dengan MapsV2Custom (Maplibre) │
│ - Cleanup: Hapus unused imports dan interfaces │
│ │
│ Files Modified (7) │
│ - app/(application)/(user)/home.tsx │
│ - app/(application)/(user)/profile/[id]/index.tsx │
│ - app/(application)/admin/maps.tsx │
│ - components/Notification/NotificationInitializer.tsx │
│ - service/api-device-token.ts │
│ - constants/constans-value.ts │
│ - screens/Home/bottomFeatureSection.tsx │
│ - screens/UserSeach/MainView_V2.tsx
### No Issue
2026-03-04 16:39:57 +08:00
ad7dbaf162
Fix Bug DB
...
User Pages
- app/(application)/(user)/home.tsx
- app/(application)/(user)/portofolio/[id]/index.tsx
- app/(application)/(user)/profile/[id]/index.tsx
Home
- screens/Home/bottomFeatureSection.tsx
Components
- components/Notification/NotificationInitializer.tsx
- components/_ShareComponent/SkeletonCustom.tsx
Service
- service/api-device-token.ts
Config & iOS
- app.config.js
- ios/HIPMIBadungConnect.xcodeproj/project.pbxproj
- ios/HIPMIBadungConnect/Info.plist
### No Issue
2026-03-03 16:44:45 +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
5665dc88ba
Notification investasi done
...
### No Isssue
2026-01-22 17:54:33 +08:00
57ac1eb45e
Notifikasi admin to user
...
Fix:
- android/app/src/main/AndroidManifest.xml
- app/(application)/(user)/job/(tabs)/_layout.tsx
- app/(application)/(user)/job/[id]/index.tsx
- app/(application)/(user)/notifications/index.tsx
- app/(application)/(user)/profile/[id]/index.tsx
- app/(application)/admin/job/[id]/[status]/index.tsx
- app/(application)/admin/notification/index.tsx
- app/+not-found.tsx
- ios/HIPMIBadungConnect.xcodeproj/project.pbxproj
- screens/Admin/Job/funUpdateStatus.ts
- screens/Home/bottomFeatureSection.tsx
### No Issue
2026-01-08 17:48:53 +08:00
98aaa126a1
QC: Inno dan Pak Jun
...
Fix:
- app/(application)/(user)/collaboration/create.tsx
- app/(application)/(user)/event/[id]/edit.tsx
- app/(application)/(user)/event/create.tsx
- app/(application)/(user)/profile/[id]/blocked-list.tsx
- app/(application)/(user)/profile/[id]/index.tsx
- app/(application)/(user)/voting/[id]/[status]/detail.tsx
- components/Button/FloatingButton.tsx
- components/TextArea/TextAreaCustom.tsx
- components/TextInput/TextInputCustom.tsx
- constants/color-palet.ts
- screens/Authentication/LoginView.tsx
- screens/Home/topFeatureSection.tsx
- screens/Portofolio/SocialMediaSection.tsx
- screens/Voting/BoxDetailHasilVotingSection.tsx
- styles/global-styles.ts
### No Issue
2025-12-01 17:43:20 +08:00
8a900e9469
Halaman unblock user
...
Add:
- app/(application)/(user)/profile/[id]/blocked-list.tsx
app/(application)/(user)/profile/[id]/detail-blocked.tsx
components/_ShareComponent/ListEmptyComponent.tsx
components/_ShareComponent/ListLoaderFooterComponent.tsx
components/_ShareComponent/ListSkeletonComponent.tsx
hooks/use-paginated-api.ts
service/api-client/api-blocked.ts
Fix:
modified: app/(application)/(user)/profile/_layout.tsx
modified: components/_ShareComponent/NewWrapper.tsx
modified: components/index.ts
modified: screens/Profile/ListPage.tsx
modified: styles/global-styles.ts
### No Issue
2025-11-28 13:55:48 +08:00
5f36620988
Integrasi Admin: User Acces & Super Admin
...
Add:
- admin/super-admin/
- admin/user-access/
- service/api-admin/
Fix:
- (user)/profile/[id]/index: penambahan useData dari useAuthuntuk merestart value masterRole
- integrasi pada tampilan admin
### No Issue
2025-10-14 17:28:40 +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
60b0befa60
API Job
...
Add:
- api-client/api-job: kumpulan fetch api
Fix:
- UI beranda , status sudah terintergrasi dengan API
- UI detail status, detail utama sudah terintergrasi dengan API
- Search pada beranda sudah terintegrasi
- Edit sudah terintergrasi
### No Issue
2025-09-16 17:27:58 +08:00
fc181bda7c
API
...
User search:
Fix:
- api get all user
- searching by username
Portofolio:
Fix:
- dot button hanya muncul jika user yang memiliki portofolio tersebut yang melihat
Profile:
Fix:
- dot button muncul hanya untuk user yang memiliki akunnya
### No Issue
2025-09-10 16:33:39 +08:00
bb95e8ccbd
API
...
Add:
- service/api-client/api-file.ts: upload & delete
Portofolio
Fix:
- user)/portofolio/[id]/create.tsx: Loading submit
- (user)/portofolio/[id]/index.tsx: Delete button recode
Profile
Fix:
- (user)/profile/[id]/update-photo && upload-backgroud: delete image yang kama
### No Issue
2025-09-01 12:11:21 +08:00
41a4a94255
Portofolio
...
Add:
- ervice/api-client/api-portofolio.ts
- creens/Portofolio/BoxPortofolioView.tsx
- screens/Portofolio/ButtonCreatePortofolio.tsx
- create dan show
### No Issue
2025-08-29 17:42:33 +08:00
40441c929f
API Upload Image
...
Profile:
- (user)/profile/[id]/update-background.tsx : perbaikan api
- app/(application)/(user)/profile/[id]/update-photo.tsx
Fix:
- service/upload-service.ts : ganti Toast menjadi throw untuk dapatkna error
### No Issue
2025-08-28 15:18:15 +08:00
d3c4f04e07
Profile
...
Add:
- Api upload background
- /api-client/api-validation.ts
### No Issue
2025-08-27 17:41:42 +08:00
4fc2c90702
Profile
...
Add:
- Api background profile
Asset
Add:
- assets/images/loading.gif: untuk loading
### No Issue
2025-08-27 14:38:37 +08:00
2227aaa99f
Profile
...
Fix:
- profile/[id]/edit.tsx: api upload
- profile/[id]/update-photo.tsx: api upload
- service/api-client/api-profile.ts: api profile bisa memilih kategori
Component
Add:
- components/Image/AvatarComp.tsx
### No Issue
2025-08-27 12:16:31 +08:00
7cddc7abe3
API upload image
...
Add:
- utils/pickImage.ts
- service/upload-service.ts
- constants/directory-id.ts
- constants/base-url-api-strorage.ts
### No Issue
2025-08-26 17:42:59 +08:00
59482ca712
API Profile:
...
Fix:
- api create, get , edit
Types
Add:
- Type-Profile
### No Issue
2025-08-25 17:59:07 +08:00
ebcf16efba
API:
...
Add:
- service/api-client/ : api route setting
- service/api-config.ts : api base url
Profil & User
Fix:
- auth logic
- crate profile
### No Issue
2025-08-22 17:32:48 +08:00
21c6460220
API
...
Add:
- hooks/
- ios.build.device : untuk mendownload di ios
Fix:
- service/api.t : mengatur api
- context/AuthContext.tsx: Provider untuk access token
### No Issue
2025-08-21 15:22:14 +08:00
aa4ea9fb0c
deskripsi:
...
Fix: ProfileSection & /dummy-user ( image )
Event: box publisj
# No Issue"
2025-07-23 10:25:40 +08:00
24913a9f97
deskripsi:
...
Fix: portofolio: alert hapus porto
Fix: profile create hapus text input alamat & edit ganti select jenis kelamin
Fix: menu forum
Fix: button porto
# No Issue
2025-07-15 14:13:08 +08:00
b8ed577fea
feature & fix
...
deskripsi:
- new component : Center
- fix component : Button > disable props
- feture : fix portofolio > edit, edit logo, edit sosmed
- fix feature : maps > edit map, custom-pin
- fix featue : profile > update photo
# No Issue
2025-07-10 15:03:52 +08:00
71ea0ca5f2
feature & fix
...
deskripsi:
- perubahan komponen drawer
- penambahan list page drawer portofolio
- new file portofolio: edit, edit logo, edit sosmed
- new file maps: edit, custom-pin
#No Issue
2025-07-10 10:27:30 +08:00
ee7efaef6a
fix & featur
...
deskripsi:
- fix component stack dan drawer
- new page list path profile
2025-07-09 17:22:43 +08:00
b7e774a556
fix
...
deskripsi:
- perubahan pada component: ButtonCustom, TextArea, TextInput
- fix style global
- tambhan color pada palet
2025-07-09 15:03:41 +08:00
16559b94fe
feature & fix
...
deskripsi:
- fix Text input
- feature Box footer & button center
2025-07-09 10:19:02 +08:00
0698e14d36
fix route
...
deskripsi:
- perbaiki route tujuan pada create profile
2025-07-08 14:18:50 +08:00
3d9672154c
fix folder
...
deskripsi:
- fix folder profile ke (user)
2025-07-08 12:22:15 +08:00