percobaan kirim stiker di forum
This commit is contained in:
17
src/app_modules/_global/lib/stiker.ts
Normal file
17
src/app_modules/_global/lib/stiker.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
export const listStiker = [
|
||||
{
|
||||
id: 1,
|
||||
name: "stiker2",
|
||||
url: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQN9AKmsBY4yqdn3GueJJEVPJbfmf853gDL4cN8uc9eqsCTiJ1fzhcpywzVP68NCJEA5NQ&usqp=CAU",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: "stiker3",
|
||||
url: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS2lkV3ZiQ8m-OELSui2JGVy80vnh1cyRUV7NrgFNluPVVs2HUAyCHwCMAKGe2s5jk2sn8&usqp=CAU",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: "stiker4",
|
||||
url: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQHy9ZdsPc6dHgVTl5yIGpRJ-KtpTIsXA2_kbfO1Oc-pv_f7CNKGxhO56RjKujE3xCyb9k&usqp=CAU",
|
||||
},
|
||||
];
|
||||
@@ -0,0 +1,133 @@
|
||||
"use client";
|
||||
|
||||
import ComponentGlobal_InputCountDown from "@/app_modules/_global/component/input_countdown";
|
||||
import { ComponentGlobal_NotifikasiBerhasil } from "@/app_modules/_global/notif_global/notifikasi_berhasil";
|
||||
import { ComponentGlobal_NotifikasiGagal } from "@/app_modules/_global/notif_global/notifikasi_gagal";
|
||||
import notifikasiToUser_funCreate from "@/app_modules/notifikasi/fun/create/create_notif_to_user";
|
||||
import { Stack, Paper, Group, Button, Divider } from "@mantine/core";
|
||||
import { useState } from "react";
|
||||
import dynamic from "next/dynamic";
|
||||
const ReactQuill = dynamic(
|
||||
() => {
|
||||
return import("react-quill");
|
||||
},
|
||||
{ ssr: false }
|
||||
);
|
||||
import { forum_funCreateKomentar } from "../../fun/create/fun_create_komentar";
|
||||
import { forum_funGetAllKomentarById } from "../../fun/get/get_all_komentar_by_id";
|
||||
import { MODEL_FORUM_POSTING } from "../../model/interface";
|
||||
import { useParams, useRouter } from "next/navigation";
|
||||
import { MainColor } from "@/app_modules/_global/color/color_pallet";
|
||||
import mqtt_client from "@/util/mqtt_client";
|
||||
import backendLogger from "@/util/backendLogger";
|
||||
import { clientLogger } from "@/util/clientLogger";
|
||||
export default function Forum_CompCreateComment({
|
||||
data,
|
||||
userLoginId,
|
||||
onSetNewKomentar,
|
||||
}: {
|
||||
data: MODEL_FORUM_POSTING;
|
||||
userLoginId: string;
|
||||
onSetNewKomentar: (val: string) => void;
|
||||
}) {
|
||||
const param = useParams<{ id: string }>();
|
||||
const postingId = param.id;
|
||||
const [value, setValue] = useState("");
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [isEmpty, setIsEmpty] = useState(false);
|
||||
|
||||
async function onComment() {
|
||||
if (value.length > 500) {
|
||||
return null;
|
||||
}
|
||||
|
||||
try {
|
||||
setLoading(true);
|
||||
const createComment = await forum_funCreateKomentar(postingId, value);
|
||||
if (createComment.status === 201) {
|
||||
onSetNewKomentar(value);
|
||||
setValue("");
|
||||
setIsEmpty(true);
|
||||
ComponentGlobal_NotifikasiBerhasil(createComment.message, 2000);
|
||||
|
||||
if (userLoginId !== data.Author.id) {
|
||||
const dataNotif = {
|
||||
appId: data.id,
|
||||
userId: data.authorId,
|
||||
pesan: value,
|
||||
kategoriApp: "FORUM",
|
||||
title: "Komentar baru",
|
||||
};
|
||||
|
||||
const createNotifikasi = await notifikasiToUser_funCreate({
|
||||
data: dataNotif as any,
|
||||
});
|
||||
|
||||
if (createNotifikasi.status === 201) {
|
||||
mqtt_client.publish(
|
||||
"USER",
|
||||
JSON.stringify({
|
||||
userId: dataNotif.userId,
|
||||
count: 1,
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
setLoading(false);
|
||||
ComponentGlobal_NotifikasiGagal(createComment.message);
|
||||
}
|
||||
} catch (error) {
|
||||
setLoading(false);
|
||||
clientLogger.error("Error create komentar forum", error);
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<Stack>
|
||||
<Paper withBorder shadow="lg">
|
||||
<ReactQuill
|
||||
value={value}
|
||||
theme="bubble"
|
||||
placeholder="Ketik komentar anda?"
|
||||
onChange={(val) => {
|
||||
setValue(val);
|
||||
}}
|
||||
style={{
|
||||
overflowY: "auto",
|
||||
maxHeight: 100,
|
||||
minHeight: 50,
|
||||
}}
|
||||
/>
|
||||
</Paper>
|
||||
|
||||
<Group position="apart">
|
||||
<ComponentGlobal_InputCountDown
|
||||
maxInput={500}
|
||||
lengthInput={value.length}
|
||||
/>
|
||||
<Button
|
||||
style={{
|
||||
transition: "0.5s",
|
||||
}}
|
||||
disabled={
|
||||
value === "" || value === "<p><br></p>" || value.length > 500
|
||||
? true
|
||||
: false
|
||||
}
|
||||
bg={MainColor.yellow}
|
||||
color={"yellow"}
|
||||
c="black"
|
||||
loaderPosition="center"
|
||||
loading={loading}
|
||||
radius={"xl"}
|
||||
onClick={() => onComment()}
|
||||
>
|
||||
Balas
|
||||
</Button>
|
||||
</Group>
|
||||
</Stack>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -34,7 +34,9 @@ export default function Forum_MainDetail({
|
||||
const [dataPosting, setDataPosting] = useState<MODEL_FORUM_POSTING | null>(
|
||||
null
|
||||
);
|
||||
const [listKomentar, setListKomentar] = useState<MODEL_FORUM_KOMENTAR[]>([]);
|
||||
const [listKomentar, setListKomentar] = useState<
|
||||
MODEL_FORUM_KOMENTAR[] | null
|
||||
>(null);
|
||||
const [activePage, setActivePage] = useState(1);
|
||||
const [newKomentar, setNewKomentar] = useState(false);
|
||||
const [isLoading, setIsLoading] = useState(false);
|
||||
@@ -130,7 +132,7 @@ export default function Forum_MainDetail({
|
||||
return (
|
||||
<>
|
||||
<Stack>
|
||||
{!dataPosting || !listKomentar ? (
|
||||
{!dataPosting ? (
|
||||
<CustomSkeleton height={200} width={"100%"} />
|
||||
) : (
|
||||
<ComponentForum_DetailForumView
|
||||
@@ -158,7 +160,7 @@ export default function Forum_MainDetail({
|
||||
)
|
||||
)}
|
||||
|
||||
{!listKomentar.length && isLoading ? (
|
||||
{!listKomentar ? (
|
||||
<Forum_SkeletonListKomentar />
|
||||
) : _.isEmpty(listKomentar) ? (
|
||||
<ComponentGlobal_IsEmptyData text="Tidak ada komentar" />
|
||||
@@ -172,7 +174,7 @@ export default function Forum_MainDetail({
|
||||
</Center>
|
||||
)}
|
||||
data={listKomentar}
|
||||
setData={setListKomentar}
|
||||
setData={setListKomentar as any}
|
||||
moreData={handleMoreDataKomentar}
|
||||
>
|
||||
{(item) => (
|
||||
|
||||
@@ -75,3 +75,8 @@ export interface MODEL_FORUM_REPORT_KOMENTAR {
|
||||
userId: string;
|
||||
User: MODEL_USER;
|
||||
}
|
||||
|
||||
export type CommentItem = {
|
||||
deskripsi: string;
|
||||
// Add any other properties that CommentItem should have
|
||||
};
|
||||
Reference in New Issue
Block a user