Revisi Tampilan Admin

# fix :
- Tampilan Donasi
# feat :
- Penambahan App Information
## No Issuee
This commit is contained in:
2024-06-06 12:05:06 +08:00
parent 5b8cd3a4b6
commit 0e16d6501f
295 changed files with 2861 additions and 918 deletions

View File

@@ -1,6 +1,6 @@
"use client";
import { AppShell } from "@mantine/core";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
import React from "react";
import ComponentColab_HeaderTamplate from "../component/header_tamplate";
@@ -11,11 +11,11 @@ export default function LayoutColab_Create({
}) {
return (
<>
<AppShell
<AppComponentGlobal_LayoutTamplate
header={<ComponentColab_HeaderTamplate title="Tambah Proyek" />}
>
{children}
</AppShell>
</AppComponentGlobal_LayoutTamplate>
</>
);
}

View File

@@ -1,35 +1,23 @@
"use client";
import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
import {
ActionIcon,
AppShell,
Box,
Center,
Footer,
Grid,
Group,
Header,
Stack,
Text,
TextInput,
Textarea,
Title,
Title
} from "@mantine/core";
import React, { useState } from "react";
import ComponentColab_HeaderTamplate from "../../component/header_tamplate";
import {
IconChevronLeft,
IconInfoSquareRounded,
IconPlane,
IconSend,
IconInfoSquareRounded
} from "@tabler/icons-react";
import { useAtom } from "jotai";
import { gs_colab_pesan } from "../../global_state";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
import { MODEL_COLLABORATION_ROOM_CHAT } from "../../model/interface";
import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
import { useViewportSize } from "@mantine/hooks";
import { useRouter } from "next/navigation";
import React, { useState } from "react";
import { MODEL_COLLABORATION_ROOM_CHAT } from "../../model/interface";
export default function LayoutColab_DetailGrupDiskusi({
children,

View File

@@ -1,10 +1,10 @@
"use client";
import { AppShell } from "@mantine/core";
import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
import { IconEdit } from "@tabler/icons-react";
import React from "react";
import ComponentColab_HeaderTamplate from "../../component/header_tamplate";
import { IconEdit } from "@tabler/icons-react";
import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
export default function LayoutColab_MainDetail({
children,
@@ -17,7 +17,7 @@ export default function LayoutColab_MainDetail({
}) {
return (
<>
<AppShell
<AppComponentGlobal_LayoutTamplate
header={
<ComponentColab_HeaderTamplate
title="Detail"
@@ -27,7 +27,7 @@ export default function LayoutColab_MainDetail({
}
>
{children}
</AppShell>
</AppComponentGlobal_LayoutTamplate>
</>
);
}

View File

@@ -1,7 +1,7 @@
"use client";
import ComponentColab_HeaderTamplate from "@/app_modules/colab/component/header_tamplate";
import { AppShell } from "@mantine/core";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
export default function LayoutColab_DetailPartisipasiProyek({
children,
@@ -10,7 +10,11 @@ export default function LayoutColab_DetailPartisipasiProyek({
}) {
return (
<>
<AppShell header={<ComponentColab_HeaderTamplate title="Detail Partisipan"/>}>{children}</AppShell>
<AppComponentGlobal_LayoutTamplate
header={<ComponentColab_HeaderTamplate title="Detail Partisipan" />}
>
{children}
</AppComponentGlobal_LayoutTamplate>
</>
);
}

View File

@@ -2,7 +2,6 @@
import ComponentColab_HeaderTamplate from "@/app_modules/colab/component/header_tamplate";
import { AppShell } from "@mantine/core";
import { IconEdit } from "@tabler/icons-react";
import React from "react";
export default function LayoutColab_DetailStatusPublish({
@@ -12,13 +11,7 @@ export default function LayoutColab_DetailStatusPublish({
}) {
return (
<>
<AppShell
header={
<ComponentColab_HeaderTamplate
title="Proyek Saya"
/>
}
>
<AppShell header={<ComponentColab_HeaderTamplate title="Proyek Saya" />}>
{children}
</AppShell>
</>

View File

@@ -1,6 +1,6 @@
"use client";
import { AppShell } from "@mantine/core";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
import React from "react";
import ComponentColab_HeaderTamplate from "../component/header_tamplate";
@@ -11,9 +11,9 @@ export default function LayoutColab_Edit({
}) {
return (
<>
<AppShell header={<ComponentColab_HeaderTamplate title="Edit Proyek" />}>
<AppComponentGlobal_LayoutTamplate header={<ComponentColab_HeaderTamplate title="Edit Proyek" />}>
{children}
</AppShell>
</AppComponentGlobal_LayoutTamplate>
</>
);
}

View File

@@ -1,35 +1,28 @@
"use client";
import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
import { RouterHome } from "@/app/lib/router_hipmi/router_home";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
import {
ActionIcon,
AppShell,
Box,
Center,
Footer,
Grid,
Indicator,
Loader,
Stack,
Text,
Text
} from "@mantine/core";
import React, { useState } from "react";
import ComponentColab_HeaderTamplate from "../component/header_tamplate";
import router from "next/router";
import {
IconBell,
IconHistory,
IconHome,
IconMessages,
IconReservedLine,
IconUsersGroup,
IconUsersGroup
} from "@tabler/icons-react";
import { RouterColab } from "@/app/lib/router_hipmi/router_colab";
import { useRouter } from "next/navigation";
import { useAtom } from "jotai";
import { useRouter } from "next/navigation";
import React, { useState } from "react";
import ComponentColab_HeaderTamplate from "../component/header_tamplate";
import { gs_colab_hot_menu } from "../global_state";
import { RouterHome } from "@/app/lib/router_hipmi/router_home";
import AppComponentGlobal_LayoutTamplate from "@/app_modules/component_global/component_layout_tamplate";
import { useTimeout } from "@mantine/hooks";
export default function LayoutColab_Main({
children,