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
80 lines
1.9 KiB
TypeScript
80 lines
1.9 KiB
TypeScript
import { BaseBox, Grid, Spacing, StackCustom, TextCustom, ViewWrapper } from "@/components";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { GStyles } from "@/styles/global-styles";
|
|
import { FontAwesome6 } from "@expo/vector-icons";
|
|
|
|
export default function InvestmentFailed() {
|
|
return (
|
|
<ViewWrapper>
|
|
<StackCustom>
|
|
<BaseBox>
|
|
<StackCustom>
|
|
<TextCustom bold align="center">
|
|
Transaksi anda gagal karena bukti transfer tidak sesuai dengan
|
|
data kami. Jika ini masalah khusus silahkan hubungi pada kontak
|
|
whatsapp kami.
|
|
</TextCustom>
|
|
|
|
<FontAwesome6
|
|
name="whatsapp"
|
|
size={50}
|
|
color={MainColor.green}
|
|
style={GStyles.alignSelfCenter}
|
|
/>
|
|
</StackCustom>
|
|
</BaseBox>
|
|
|
|
<BaseBox>
|
|
<TextCustom bold align="center" size="large">
|
|
Detail Transaksi
|
|
</TextCustom>
|
|
|
|
<Spacing />
|
|
|
|
<StackCustom>
|
|
{listData.map((item, i) => (
|
|
<Grid key={i}>
|
|
<Grid.Col span={5}>
|
|
<TextCustom bold>{item.label}</TextCustom>
|
|
</Grid.Col>
|
|
<Grid.Col span={7}>
|
|
<TextCustom style={{ paddingLeft: 10 }}>
|
|
{item.value}
|
|
</TextCustom>
|
|
</Grid.Col>
|
|
</Grid>
|
|
))}
|
|
</StackCustom>
|
|
</BaseBox>
|
|
</StackCustom>
|
|
</ViewWrapper>
|
|
);
|
|
}
|
|
|
|
const listData = [
|
|
{
|
|
label: "Bank",
|
|
value: " BCA",
|
|
},
|
|
{
|
|
label: "Rekening Penerima",
|
|
value: "Himpunan Pengusaha Muda Indonesia",
|
|
},
|
|
{
|
|
label: "No Rekening",
|
|
value: "2304235678854332",
|
|
},
|
|
{
|
|
label: "Jumlah",
|
|
value: "Rp. 1.000.000",
|
|
},
|
|
{
|
|
label: "Tanggal",
|
|
value: "2022-01-01",
|
|
},
|
|
{
|
|
label: "Lembar Terbeli",
|
|
value: "100",
|
|
},
|
|
];
|