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
111 lines
3.2 KiB
TypeScript
111 lines
3.2 KiB
TypeScript
import {
|
|
BaseBox,
|
|
ButtonCenteredOnly,
|
|
ButtonCustom,
|
|
Grid,
|
|
InformationBox,
|
|
Spacing,
|
|
StackCustom,
|
|
TextCustom,
|
|
ViewWrapper,
|
|
} from "@/components";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { router, useLocalSearchParams } from "expo-router";
|
|
|
|
export default function InvestmentInvoice() {
|
|
const { id } = useLocalSearchParams();
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<StackCustom>
|
|
<InformationBox text="Mohon transfer ke rekening dibawah" />
|
|
<BaseBox>
|
|
<StackCustom gap={"xs"}>
|
|
<TextCustom>Nama BANK</TextCustom>
|
|
<TextCustom>Nama Penerima</TextCustom>
|
|
<Spacing height={10} />
|
|
|
|
<BaseBox backgroundColor={MainColor.soft_darkblue}>
|
|
<Grid containerStyle={{ justifyContent: "center" }}>
|
|
<Grid.Col
|
|
span={8}
|
|
style={{
|
|
justifyContent: "center",
|
|
}}
|
|
>
|
|
<TextCustom size="xlarge" bold color="yellow">
|
|
4567898765433567
|
|
</TextCustom>
|
|
</Grid.Col>
|
|
<Grid.Col
|
|
span={4}
|
|
style={{
|
|
alignItems: "flex-end",
|
|
}}
|
|
>
|
|
<ButtonCustom>Salin</ButtonCustom>
|
|
</Grid.Col>
|
|
</Grid>
|
|
</BaseBox>
|
|
</StackCustom>
|
|
</BaseBox>
|
|
|
|
<BaseBox>
|
|
<StackCustom gap={"xs"}>
|
|
<TextCustom>Jumlah Transaksi</TextCustom>
|
|
|
|
<Spacing height={10} />
|
|
|
|
<BaseBox backgroundColor={MainColor.soft_darkblue}>
|
|
<Grid containerStyle={{ justifyContent: "center" }}>
|
|
<Grid.Col
|
|
span={8}
|
|
style={{
|
|
justifyContent: "center",
|
|
}}
|
|
>
|
|
<TextCustom size="xlarge" bold color="yellow">
|
|
Rp. 1.000.000
|
|
</TextCustom>
|
|
</Grid.Col>
|
|
<Grid.Col
|
|
span={4}
|
|
style={{
|
|
alignItems: "flex-end",
|
|
}}
|
|
>
|
|
<ButtonCustom>Salin</ButtonCustom>
|
|
</Grid.Col>
|
|
</Grid>
|
|
</BaseBox>
|
|
</StackCustom>
|
|
</BaseBox>
|
|
|
|
<BaseBox>
|
|
<StackCustom>
|
|
<TextCustom>Upload bukti transfer anda.</TextCustom>
|
|
<ButtonCenteredOnly
|
|
onPress={() => {
|
|
router.push("/(application)/(image)/take-picture/123");
|
|
}}
|
|
icon="upload"
|
|
>
|
|
Upload
|
|
</ButtonCenteredOnly>
|
|
</StackCustom>
|
|
</BaseBox>
|
|
|
|
<ButtonCustom
|
|
onPress={() => {
|
|
router.push(`/investment/${id}/(transaction-flow)/process`);
|
|
}}
|
|
>
|
|
Saya Sudah Transfer
|
|
</ButtonCustom>
|
|
</StackCustom>
|
|
<Spacing/>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|