Deskripsi:
- UI Voting: bagian kontribusi dan riwayat
## No issue
This commit is contained in:
2024-07-17 11:28:07 +08:00
parent 7e21694324
commit 3ee32351e2
26 changed files with 269 additions and 257 deletions

View File

@@ -26,7 +26,7 @@ export default function Vote_DetailKontribusi({
}) {
return (
<>
<Stack>
<Stack py={"md"}>
<ComponentVote_DetailDataSetelahPublish
data={dataVote}
authorName={true}

View File

@@ -4,6 +4,8 @@ import { AppShell } from "@mantine/core";
import React from "react";
import ComponentVote_HeaderTamplate from "../../component/header_tamplate";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/_global/component_layout_tamplate";
import UIGlobal_LayoutTamplate from "@/app_modules/_global/ui/ui_layout_tamplate";
import UIGlobal_LayoutHeaderTamplate from "@/app_modules/_global/ui/ui_header_tamplate";
export default function LayoutVote_DetailKontribusi({
children,
@@ -12,11 +14,11 @@ export default function LayoutVote_DetailKontribusi({
}) {
return (
<>
<AppComponentGlobal_LayoutTamplate
header={<ComponentVote_HeaderTamplate title="Detail Kontribusi" />}
<UIGlobal_LayoutTamplate
header={<UIGlobal_LayoutHeaderTamplate title="Detail Kontribusi" />}
>
{children}
</AppComponentGlobal_LayoutTamplate>
</UIGlobal_LayoutTamplate>
</>
);
}

View File

@@ -48,7 +48,7 @@ export default function Vote_MainDetail({
const [data, setData] = useState(dataVote);
return (
<>
<Stack>
<Stack py={"md"}>
<TampilanDataVoting
dataVote={data}
setData={setData}

View File

@@ -27,7 +27,7 @@ export default function Vote_DetailPublish({
}) {
return (
<>
<Stack>
<Stack py={"md"}>
{/* <ComponentVote_DetailStatus /> */}
<ComponentVote_DetailDataSetelahPublish data={dataVote} />
<ComponentVote_HasilVoting data={dataVote.Voting_DaftarNamaVote} />

View File

@@ -1,29 +1,22 @@
"use client";
import ComponentGlobal_BoxInformation from "@/app_modules/_global/component/box_information";
import { ComponentGlobal_NotifikasiBerhasil } from "@/app_modules/_global/notif_global/notifikasi_berhasil";
import { ComponentGlobal_NotifikasiGagal } from "@/app_modules/_global/notif_global/notifikasi_gagal";
import UIGlobal_Modal from "@/app_modules/_global/ui/ui_modal";
import {
Button,
Group,
Modal,
SimpleGrid,
Stack,
Text,
Title,
Stack
} from "@mantine/core";
import ComponentVote_DetailDataSebelumPublish from "../../component/detail/detail_data_sebelum_publish";
import { useRouter } from "next/navigation";
import { ComponentGlobal_NotifikasiBerhasil } from "@/app_modules/_global/notif_global/notifikasi_berhasil";
import { useAtom } from "jotai";
import { gs_vote_status } from "../../global_state";
import { useDisclosure } from "@mantine/hooks";
import { MODEL_VOTING } from "../../model/interface";
import { Vote_funDeleteById } from "../../fun/delete/fun_delete_by_id";
import { ComponentGlobal_NotifikasiGagal } from "@/app_modules/_global/notif_global/notifikasi_gagal";
import { Vote_funEditStatusByStatusId } from "../../fun/edit/fun_edit_status_by_id";
import ComponentVote_NotedBox from "../../component/noted_box";
import ComponentGlobal_BoxInformation from "@/app_modules/_global/component/box_information";
import { useRouter } from "next/navigation";
import { useState } from "react";
import UIGlobal_Modal from "@/app_modules/_global/ui/ui_modal";
import { MainColor } from "@/app_modules/_global/color/color_pallet";
import ComponentVote_DetailDataSebelumPublish from "../../component/detail/detail_data_sebelum_publish";
import { Vote_funDeleteById } from "../../fun/delete/fun_delete_by_id";
import { Vote_funEditStatusByStatusId } from "../../fun/edit/fun_edit_status_by_id";
import { gs_vote_status } from "../../global_state";
import { MODEL_VOTING } from "../../model/interface";
export default function Vote_DetailReject({
dataVote,

View File

@@ -15,7 +15,7 @@ export default function Vote_DetailRiwayatSaya({
}) {
return (
<>
<Stack>
<Stack py={"md"}>
<ComponentVote_DetailDataSetelahPublish
data={dataVote}
authorName={true}

View File

@@ -1,9 +1,8 @@
"use client";
import { AppShell } from "@mantine/core";
import UIGlobal_LayoutHeaderTamplate from "@/app_modules/_global/ui/ui_header_tamplate";
import UIGlobal_LayoutTamplate from "@/app_modules/_global/ui/ui_layout_tamplate";
import React from "react";
import ComponentVote_HeaderTamplate from "../../component/header_tamplate";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/_global/component_layout_tamplate";
export default function LayoutVote_DetailRiwayatSaya({
children,
@@ -12,11 +11,11 @@ export default function LayoutVote_DetailRiwayatSaya({
}) {
return (
<>
<AppComponentGlobal_LayoutTamplate
header={<ComponentVote_HeaderTamplate title="Detail Riwayat" />}
<UIGlobal_LayoutTamplate
header={<UIGlobal_LayoutHeaderTamplate title="Detail Riwayat" />}
>
{children}
</AppComponentGlobal_LayoutTamplate>
</UIGlobal_LayoutTamplate>
</>
);
}

View File

@@ -12,17 +12,19 @@ export default function Vote_DetailSemuaRiwayat({
listKontributor,
}: {
dataVote: MODEL_VOTING;
listKontributor:MODEL_VOTE_KONTRIBUTOR[]
listKontributor: MODEL_VOTE_KONTRIBUTOR[];
}) {
return (
<>
<Stack>
<Stack py={"md"}>
<ComponentVote_DetailDataSetelahPublish
data={dataVote}
authorName={true}
/>
<ComponentVote_HasilVoting data={dataVote.Voting_DaftarNamaVote} />
<ComponentVote_DaftarKontributorVoter listKontributor={listKontributor} />
<ComponentVote_DaftarKontributorVoter
listKontributor={listKontributor}
/>
</Stack>
</>
);

View File

@@ -1,9 +1,8 @@
"use client";
import { AppShell } from "@mantine/core";
import UIGlobal_LayoutHeaderTamplate from "@/app_modules/_global/ui/ui_header_tamplate";
import UIGlobal_LayoutTamplate from "@/app_modules/_global/ui/ui_layout_tamplate";
import React from "react";
import ComponentVote_HeaderTamplate from "../../component/header_tamplate";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/_global/component_layout_tamplate";
export default function LayoutVote_DetailSemuaRiwayat({
children,
@@ -12,11 +11,11 @@ export default function LayoutVote_DetailSemuaRiwayat({
}) {
return (
<>
<AppComponentGlobal_LayoutTamplate
header={<ComponentVote_HeaderTamplate title="Detail Riwayat" />}
<UIGlobal_LayoutTamplate
header={<UIGlobal_LayoutHeaderTamplate title="Detail Riwayat" />}
>
{children}
</AppComponentGlobal_LayoutTamplate>
</UIGlobal_LayoutTamplate>
</>
);
}