tiefen_space_h5/app/space/[id]/page.js

693 lines
24 KiB
JavaScript
Raw Normal View History

2024-07-06 11:05:19 +08:00
"use client";
2024-07-06 16:03:15 +08:00
import React, { useEffect, useState, useRef, useMemo } from "react";
2024-07-06 11:05:19 +08:00
import {
FloatingPanel,
JumboTabs,
List,
InfiniteScroll,
Toast,
2024-11-05 20:37:22 +08:00
Popup,
2024-07-06 11:05:19 +08:00
} from "antd-mobile";
import { useRouter, useParams } from "next/navigation";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faAngleLeft, faRefresh } from "@fortawesome/free-solid-svg-icons";
import PostItem from "@/components/PostItem";
import PostItemSkeleton from "@/components/skeletons/PostItemSkeleton";
2024-07-22 16:07:41 +08:00
import requireAPI from "@/utils/requireAPI";
2024-07-06 11:05:19 +08:00
import AddWeChat from "@/components/AddWeChat";
2024-08-05 19:29:34 +08:00
import SeeTiefen from "@/components/SeeTiefen";
2024-07-06 11:05:19 +08:00
import DefaultMask from "@/components/DefaultMask";
2024-07-06 16:03:15 +08:00
import { getSpaceData, getStreamerInfo } from "@/api/space";
2024-07-22 14:38:59 +08:00
import baseRequest from "@/utils/baseRequest";
2024-12-20 20:47:20 +08:00
import OwnIcon from "@/components/OwnIcon";
import OwnImage from "@/components/OwnImage";
2024-07-06 11:05:19 +08:00
const anchors = [
2024-08-22 15:44:10 +08:00
typeof window !== "undefined" ? window.innerHeight - 280 : "100vh",
typeof window !== "undefined" ? window.innerHeight - 180 : "100vh",
typeof window !== "undefined" ? window.innerHeight - 60 : "100vh",
// 200, 300, 400,
2024-07-06 11:05:19 +08:00
];
2024-07-10 16:50:53 +08:00
2024-07-06 11:05:19 +08:00
export default function PersonSpace() {
2024-07-22 14:38:59 +08:00
const base = baseRequest();
2024-07-06 11:05:19 +08:00
const router = useRouter();
const { id } = useParams();
const contentBox = useRef();
const [hasMore, setHasMore] = useState(true);
const [scrollHeight, setScrollHeight] = useState(0);
const [postList, setPostList] = useState([]);
2024-07-10 16:50:53 +08:00
const [tabItems, setTabItems] = useState([]);
2024-07-06 11:05:19 +08:00
const [offset, setOffset] = useState(0);
const [maskVisible, setMaskVisible] = useState({ visible: false, type: "" });
const [currentKey, setCurrentKey] = useState("all");
const [loading, setLoading] = useState(false);
const [streamerInfo, setStreamerInfo] = useState(null);
const [currentTime, setCurrentTime] = useState();
2024-07-06 16:03:15 +08:00
const scrollRef = useRef(null);
2024-11-05 20:37:22 +08:00
const [createPostMask, setCreatePostMask] = useState(false);
const [popVisible, setPopVisible] = useState(false);
// 通知弹框数据
const [noticesMaskInformation, setNoticesMaskInformation] = useState(false);
2024-07-06 11:05:19 +08:00
//退款中Modal是否展示
const [isRefundingModalVisible, setIsRefundingModalVisible] = useState(false);
const ironFanProgress = useMemo(
2024-07-06 16:03:15 +08:00
() =>
Math.floor(
(streamerInfo?.expenditure / streamerInfo?.ironfanship_price) * 100
),
2024-07-06 11:05:19 +08:00
[streamerInfo]
);
useEffect(() => {
// 通知弹窗信息
getNoticesMaskInformation();
2024-07-06 11:05:19 +08:00
setScrollHeight(window.innerHeight - 126);
if (contentBox.current) {
contentBox.current.style.transform = "translateY(-12px)";
// debugger
}
2024-07-06 16:03:15 +08:00
getStreamerInfo(Number(id)).then((res) => {
2024-11-05 20:37:22 +08:00
let tabitems = res?.is_superfanship_enabled
2024-07-10 16:50:53 +08:00
? [
{ label: "全部", key: "all" },
{ label: "铁粉专享", key: "ironFan" },
{ label: "超粉专享", key: "chaofen" },
]
: [
{ label: "全部", key: "all" },
{ label: "铁粉专享", key: "ironFan" },
];
setTabItems(tabitems);
2024-07-06 16:03:15 +08:00
setStreamerInfo(res);
});
2024-07-06 11:05:19 +08:00
getCurrentTime();
2024-07-06 16:03:15 +08:00
getSpaceData(Number(id)).then((res) => {
if (res) {
const { isRefunding, noRole } = res;
isRefunding && router.push("/");
noRole && router.replace("/space/person_space_introduce/" + id);
2024-07-06 16:03:15 +08:00
}
});
2024-07-06 11:05:19 +08:00
}, []);
useEffect(() => {
2024-07-06 16:03:15 +08:00
if (currentKey) {
firstRequest(currentKey);
2024-07-06 11:05:19 +08:00
}
}, [currentKey, streamerInfo]);
useEffect(() => {
setPopVisible(noticesMaskInformation?.enable);
}, [noticesMaskInformation]);
2024-07-06 11:05:19 +08:00
const getCurrentTime = async () => {
setCurrentTime(Math.floor(new Date().getTime() / 1000));
};
async function loadMore() {
2024-08-07 20:41:51 +08:00
// if (!offset) return;
2024-07-06 16:03:15 +08:00
const append = await getPostList(streamerInfo.id, currentKey, offset);
2024-07-06 11:05:19 +08:00
if (append) {
setPostList((val) => [...val, ...append]);
2024-07-25 19:52:30 +08:00
// setHasMore(append.length > 0);
2024-07-06 11:05:19 +08:00
}
}
const getNoticesMaskInformation = async () => {
const userMid = base?.b_mid;
if (userMid != id) return;
try {
const data = await requireAPI("POST", "/api/zone/pop_up", {
body: {
mid: parseInt(id),
},
});
if (data.ret === -1) {
Toast.show({
icon: "fail",
content: data.msg,
position: "top",
});
return;
}
setNoticesMaskInformation(data.data);
} catch (error) {
// console.error(error);
}
};
2024-07-06 16:03:15 +08:00
const getPostList = async (zid, activeKey, offset) => {
if (streamerInfo.visitor_role === 4) return;
2024-07-06 11:05:19 +08:00
try {
setLoading(true);
let body = {
zid: zid,
ct_upper_bound: Math.floor(new Date().getTime() / 1000),
2024-07-06 16:03:15 +08:00
offset,
2024-07-06 11:05:19 +08:00
limit: 4,
};
2024-07-25 19:52:30 +08:00
2024-07-06 11:05:19 +08:00
switch (activeKey) {
case "all":
body = body;
break;
case "ironFan":
body = {
...body,
c_type: 1,
is_ironfan_visible: 1,
};
break;
case "chaofen":
body = {
...body,
c_type: 1,
};
break;
default:
break;
}
2024-08-05 18:59:30 +08:00
// console.log("body",body)
2024-07-22 16:07:41 +08:00
const data = await requireAPI("POST", "/api/zone_moment/list_by_zid", {
2024-07-06 11:05:19 +08:00
body,
});
if (data.ret === -1) {
Toast.show({
icon: "fail",
content: data.msg,
position: "top",
});
return;
}
setLoading(false);
2024-07-25 19:52:30 +08:00
setOffset(data.data.offset);
2024-08-15 21:03:10 +08:00
setHasMore(data.data.more);
2024-07-06 11:05:19 +08:00
return data.data.list;
} catch (error) {
2024-07-08 20:07:36 +08:00
setLoading(false);
2024-07-06 11:05:19 +08:00
}
};
2024-07-06 16:03:15 +08:00
const firstRequest = (currentKey) => {
2024-08-15 21:03:10 +08:00
if (typeof window == "undefined") return;
2024-07-06 16:03:15 +08:00
let floatingPanel = document.getElementsByClassName(
"adm-floating-panel-content"
)[0];
floatingPanel?.scrollTo(0, 0);
setOffset(0);
2024-08-15 21:03:10 +08:00
if (!postList.length) return;
2024-07-06 16:03:15 +08:00
if (streamerInfo) {
getPostList(streamerInfo.id, currentKey, 0).then((res) => {
setPostList(res || []);
});
}
};
2024-07-06 11:05:19 +08:00
return (
2024-07-17 16:58:27 +08:00
<div
className={`${
!!streamerInfo?.is_superfanship_enabled
? "spaceBoxThree"
: "spaceBoxTwo"
}`}
>
2024-07-06 11:05:19 +08:00
<div className="flex justify-between items-center p-4 fixed top-0 z-10 w-full">
<div className="w-9 h-9 flex items-center justify-center bg-[#FFFFFF1A] rounded-full">
<FontAwesomeIcon
icon={faAngleLeft}
size="xl"
style={{ maxWidth: "12px" }}
2024-07-06 11:05:19 +08:00
onClick={() => {
router.back();
}}
/>
</div>
2024-11-20 12:13:27 +08:00
<div onClick={() => router.push("setting/" + streamerInfo?.mid)}>
2024-12-20 20:47:20 +08:00
<OwnIcon className="w-[42px] h-[42px]" src="/icons/setting.png" />
2024-08-21 13:55:16 +08:00
</div>
2024-07-06 11:05:19 +08:00
</div>
{/* 内容 */}
<div>
<div
2024-07-10 16:50:53 +08:00
className="bg-no-repeat bg-cover bg-center"
2024-07-06 11:05:19 +08:00
style={{
2024-08-15 21:03:10 +08:00
backgroundImage: `url(${
streamerInfo?.streamer_ext?.cover?.images[0]?.urls[0] || ""
})`,
2024-07-06 11:05:19 +08:00
}}
>
<div className="px-4 pt-24 pb-8 bg-[#181818a9]">
<div className="flex justify-between items-center">
<div className="flex items-center">
2024-12-20 20:47:20 +08:00
<OwnImage
roundedFull
className="w-[64px] h-[64px] rounded-full mr-2 border-2 border-white"
2024-07-06 11:05:19 +08:00
fit="cover"
src={streamerInfo?.streamer_ext?.avatar?.images[0]?.urls[0]}
/>
<div>
2024-07-23 20:56:25 +08:00
<p className="text-2xl mb-1">
2024-07-06 11:05:19 +08:00
{streamerInfo?.streamer_ext?.name}
</p>
<div className="flex">
<div className="h-4 flex items-center text-xs bg-[#ffffff18] rounded-full px-2 py-2.5 mb-1 w-max mr-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/info/ID.png"
className="w-[14px] h-[14px]"
outClassName="mr-1"
2024-07-06 11:05:19 +08:00
/>
<span>{streamerInfo?.streamer_ext?.user_id}</span>
</div>
<div className="h-4 flex items-center text-xs bg-[#ffffff18] rounded-full px-2 py-2.5 mb-1 w-max">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/edit.png"
className="w-[14px] h-[14px]"
outClassName="mr-1"
2024-07-06 11:05:19 +08:00
/>
<span>{streamerInfo?.zone_moment_count}</span>
</div>
</div>
</div>
</div>
<div
className="flex flex-col items-center"
2024-07-17 16:58:27 +08:00
onClick={() =>
router.push("/share/" + streamerInfo?.streamer_ext?.mid)
}
2024-07-06 11:05:19 +08:00
>
<p className="text-base px-3 py-1 rounded-full bg-primary">
分享
</p>
</div>
</div>
<ul className="flex mt-8">
<li
className="flex flex-col items-center mr-4"
2024-07-06 11:05:19 +08:00
onClick={() =>
setMaskVisible({ visible: true, type: "weChat" })
}
>
<div className="w-9 h-9 flex items-center justify-center bg-[#1d1d1d71] rounded-full mb-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/images/wechat_bg.png"
className="w-[32px] h-[32px]"
outClassName="mr-1"
2024-07-06 11:05:19 +08:00
/>
</div>
<p className="text-xs whitespace-nowrap">查看微信</p>
2024-07-06 11:05:19 +08:00
</li>
<li
className="flex flex-col items-center mr-6"
onClick={() =>
setMaskVisible({ visible: true, type: "ironFan" })
}
>
<div className="w-9 h-9 flex items-center justify-center bg-[#1d1d1d71] rounded-full mb-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/tiefen_bg.png"
className="w-[32px] h-[32px]"
2024-07-06 11:05:19 +08:00
/>
</div>
<p className="text-xs whitespace-nowrap">
2024-07-06 11:05:19 +08:00
{streamerInfo?.is_ironfanship_unlocked === 1
? "已是铁粉"
: "成为铁粉"}
</p>
<p className="text-[#ffffff54] text-[10px]">{`${parseInt(
streamerInfo?.expenditure / 100,
10
)}/${parseInt(streamerInfo?.ironfanship_price / 100, 10)}`}</p>
</li>
2024-07-11 23:57:26 +08:00
{!!streamerInfo?.is_superfanship_enabled && (
2024-07-10 16:50:53 +08:00
<li
className="flex flex-col items-center mr-6"
onClick={() => {
2024-08-05 18:59:30 +08:00
// console.log(
// "streamerInfo?.is_superfanship_unlocked === 1",
// streamerInfo?.is_superfanship_unlocked === 1
// );
2024-07-10 16:50:53 +08:00
streamerInfo?.is_superfanship_unlocked === 1
? setCurrentKey("chaofen")
2024-07-22 14:38:59 +08:00
: router.push(
"/webView/" +
encodeURIComponent(
`${process.env.NEXT_PUBLIC_WEB_URL}/zone/pay/${
streamerInfo?.id
}/h5_zone_superfanship/0?base=${encodeURIComponent(
JSON.stringify(base)
)}`
2024-07-22 14:38:59 +08:00
)
);
2024-07-10 16:50:53 +08:00
}}
>
<div className="w-9 h-9 flex items-center justify-center bg-[#1d1d1d71] rounded-full mb-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/chaofen_bg.png"
className="w-[32px] h-[32px]"
2024-07-10 16:50:53 +08:00
/>
</div>
<p className="text-xs whitespace-nowrap">
2024-07-10 16:50:53 +08:00
{streamerInfo?.is_superfanship_unlocked === 1
? "尊贵超粉"
: "成为超粉"}
</p>
</li>
)}
2024-07-06 11:05:19 +08:00
<li
2024-11-05 20:37:22 +08:00
className="flex flex-col items-center mr-6"
2024-07-11 23:57:26 +08:00
onClick={() => {
router.push("/messageDetail");
}}
2024-07-06 11:05:19 +08:00
>
<div className="w-9 h-9 flex items-center justify-center bg-[#1d1d1d71] rounded-full mb-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/report_bg.png"
className="w-[32px] h-[32px]"
2024-07-06 11:05:19 +08:00
/>
</div>
<p className="text-xs whitespace-nowrap">举报</p>
2024-07-06 11:05:19 +08:00
</li>
2024-11-05 20:37:22 +08:00
{streamerInfo?.visitor_role === 3 && (
<li
onClick={() => router.push("visibleToOneselfSpacePosts")}
className="flex flex-col items-center"
>
<div className="w-9 h-9 flex items-center justify-center bg-[#1d1d1d71] rounded-full mb-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/review_fail_bg.png"
className="w-[32px] h-[32px]"
2024-11-05 20:37:22 +08:00
/>
</div>
<p className="text-xs whitespace-nowrap">审核未通过</p>
2024-11-05 20:37:22 +08:00
</li>
)}
2024-07-06 11:05:19 +08:00
</ul>
</div>
</div>
2024-08-22 15:44:10 +08:00
<FloatingPanel
anchors={anchors}
ref={scrollRef}
2024-12-25 21:18:17 +08:00
className="bg-deepBg"
2024-08-22 15:44:10 +08:00
style={{ height: "calc(100vh - 60px)" }}
>
2024-07-06 11:05:19 +08:00
<JumboTabs
onChange={(key) => setCurrentKey(key)}
activeKey={currentKey}
2024-07-08 20:07:36 +08:00
className="bg-deepBg pb-12"
2024-07-06 11:05:19 +08:00
>
{tabItems.map((it) => (
<JumboTabs.Tab
title={it.label}
key={it.key}
description={
currentKey == it.key && (
<div className="titlePinkLine relative w-full"></div>
)
}
destroyOnClose={true}
>
2024-07-06 16:03:15 +08:00
<div className="overflow-y-auto scrollbarBox_hidden px-1">
<List>
2024-08-05 15:48:59 +08:00
{loading && !postList.length && (
2024-07-06 16:03:15 +08:00
<>
<PostItemSkeleton />
<PostItemSkeleton />
<PostItemSkeleton />
<PostItemSkeleton />
</>
)}
2024-07-23 20:56:25 +08:00
{/* {!postList.length && !loading && (
2024-07-06 16:03:15 +08:00
<div
className={`flex flex-col items-center mt-20`}
style={{ height: `${scrollHeight}px` }}
>
<Empty type="nodata" />
</div>
2024-07-23 20:56:25 +08:00
)} */}
2024-07-06 16:03:15 +08:00
{postList.map((item, index) => (
<List.Item key={item.id + "_" + index} className="!p-0">
2024-07-17 16:58:27 +08:00
<PostItem
type="space"
data={item}
date={new Date(item.ct * 1000)}
/>
2024-07-06 16:03:15 +08:00
</List.Item>
))}
2024-07-06 11:05:19 +08:00
<InfiniteScroll loadMore={loadMore} hasMore={hasMore} />
2024-07-06 16:03:15 +08:00
</List>
</div>
2024-07-06 11:05:19 +08:00
</JumboTabs.Tab>
))}
</JumboTabs>
</FloatingPanel>
<div
2024-11-05 20:37:22 +08:00
className={`fixed bottom-[136px] right-4 z-[50] w-10 h-10 flex items-center justify-center bg-[#1d1d1d71] rounded-full text-white ${
2024-07-06 16:03:15 +08:00
loading && !offset ? "animate-spin" : ""
2024-07-06 11:05:19 +08:00
}`}
2024-11-05 20:37:22 +08:00
style={{ zIndex: 999 }}
2024-07-06 11:05:19 +08:00
>
<FontAwesomeIcon
icon={faRefresh}
2024-11-05 20:37:22 +08:00
style={{ maxWidth: "32px" }}
size="2xl"
2024-07-06 16:03:15 +08:00
// onClick={() => {
// router.refresh();
// }}
2024-07-06 11:05:19 +08:00
onClick={() => {
2024-07-06 16:03:15 +08:00
firstRequest();
2024-07-06 11:05:19 +08:00
}}
/>
</div>
2024-07-23 20:56:25 +08:00
{streamerInfo?.visitor_role != 3 && (
<ul className="flex justify-around mt-8 px-4 py-2 fixed bottom-0 z-[999] bg-deepBg w-full border-t-2 border-[#FFFFFF1A]">
<li
className="flex flex-col items-center"
onClick={() => setMaskVisible({ visible: true, type: "weChat" })}
>
<div className="w-9 h-9 flex items-center justify-center bg-[#1d1d1d71] rounded-full mb-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/images/wechat.png"
className="w-[22px] h-[22px]"
2024-07-23 20:56:25 +08:00
/>
</div>
<p className="text-xs">查看微信</p>
</li>
2024-07-10 16:50:53 +08:00
<li
className="flex flex-col items-center"
2024-07-23 20:56:25 +08:00
onClick={() => setMaskVisible({ visible: true, type: "ironFan" })}
2024-07-10 16:50:53 +08:00
>
<div className="w-9 h-9 flex items-center justify-center bg-[#1d1d1d71] rounded-full mb-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/tiefen.png"
className="w-[22px] h-[22px]"
2024-07-10 16:50:53 +08:00
/>
</div>
<p className="text-xs">
2024-07-23 20:56:25 +08:00
{streamerInfo?.is_ironfanship_unlocked === 1
? "已是铁粉"
: "成为铁粉"}
2024-07-10 16:50:53 +08:00
</p>
2024-07-23 20:56:25 +08:00
{/* <p className="text-[#ffffff54] text-[10px]">0/299</p> */}
2024-07-10 16:50:53 +08:00
</li>
2024-07-23 20:56:25 +08:00
{!!streamerInfo?.is_superfanship_enabled && (
<li
className="flex flex-col items-center"
onClick={() => {
2024-07-25 19:52:30 +08:00
streamerInfo?.is_superfanship_unlocked === 1
? setCurrentKey("chaofen")
: router.push(
"/webView/" +
encodeURIComponent(
`${process.env.NEXT_PUBLIC_WEB_URL}/zone/pay/${
streamerInfo?.id
}/h5_zone_superfanship/0?base=${encodeURIComponent(
JSON.stringify(base)
)}`
2024-07-25 19:52:30 +08:00
)
);
2024-07-23 20:56:25 +08:00
}}
>
<div className="w-9 h-9 flex items-center justify-center bg-[#1d1d1d71] rounded-full mb-1">
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/chaofen.png"
className="w-[22px] h-[22px]"
2024-07-23 20:56:25 +08:00
/>
</div>
<p className="text-xs">
{streamerInfo?.is_superfanship_unlocked === 1
? "尊贵超粉"
: "成为超粉"}
</p>
</li>
)}
</ul>
)}
2024-07-06 16:03:15 +08:00
{maskVisible.type == "weChat" && (
<AddWeChat
visible={maskVisible.visible}
closeMask={(close) => setMaskVisible({ visible: false, type: "" })}
price={streamerInfo?.streamer_ext?.wechat_coin_price}
name={streamerInfo?.streamer_ext?.name}
streamerMid={streamerInfo?.streamer_ext?.mid}
avatar={streamerInfo?.streamer_ext?.avatar?.images[0]?.urls[0]}
2024-07-08 20:07:36 +08:00
streamerData={streamerInfo}
2024-07-06 16:03:15 +08:00
/>
)}
{maskVisible.type == "ironFan" && (
<SeeTiefen
visible={maskVisible.visible}
ironFanProgress={ironFanProgress}
expenditure={streamerInfo.expenditure}
ironfanship_price={streamerInfo.ironfanship_price}
closeMask={() => {
setMaskVisible({ visible: false, type: "" });
getStreamerInfo(Number(id)).then((res) => {
setStreamerInfo(res);
});
2024-07-06 16:03:15 +08:00
}}
id={streamerInfo.id}
2024-07-06 16:03:15 +08:00
handleClick={() => {
setCurrentKey("ironFan");
setMaskVisible({ visible: false, type: "" });
}}
/>
)}
<DefaultMask
title="当前空间正在退款中"
content="退款中空间不支持查看,请关注原支付渠道退款进度,退款后无法再次进入当前空间。"
visible={isRefundingModalVisible}
2024-07-06 11:05:19 +08:00
closeMask={() => {
2024-07-06 16:03:15 +08:00
setIsRefundingModalVisible(false);
2024-07-06 11:05:19 +08:00
}}
2024-07-06 16:03:15 +08:00
/>
2024-07-06 11:05:19 +08:00
</div>
2024-11-05 20:37:22 +08:00
{streamerInfo?.visitor_role === 3 && (
<div
// onClick={() => setIsCreatePostModalVisible(!isCreatePostModalVisible)}
className="fixed right-6 bottom-12"
style={{ zIndex: 999 }}
onClick={() => {
setCreatePostMask(true);
}}
>
2024-12-20 20:47:20 +08:00
<OwnIcon src="/icons/createpost.png" className="w-[88px] h-[88px]" />
2024-11-05 20:37:22 +08:00
</div>
)}
<Popup
visible={createPostMask}
onMaskClick={() => {
setCreatePostMask(false);
}}
className="p-4"
bodyStyle={{
borderRadius: "16px",
width: "calc(100% - 48px)",
margin: "24px",
padding: "14px",
}}
>
<div className="flex justify-around items-center pt-4 pb-6">
<div
className="flex flex-col justify-center items-center"
onClick={() => {
setCreatePostMask(false);
router.push("createImagePost");
}}
>
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/image_post.png"
className="w-[48px] h-[48px]"
2024-11-05 20:37:22 +08:00
/>
<p className="mt-2">发图片</p>
</div>
<div
className="flex flex-col justify-center items-center"
onClick={() => {
setCreatePostMask(false);
router.push("createVideoPost");
}}
>
2024-12-20 20:47:20 +08:00
<OwnIcon
src="/icons/video_post.png"
className="w-[48px] h-[48px]"
2024-11-05 20:37:22 +08:00
/>
<p className="mt-2">发视频</p>
</div>
</div>
<p
className="pt-4 text-center border-t border-[#ffffff40]"
onClick={() => setCreatePostMask(false)}
>
取消
</p>
</Popup>
<Popup
className="z-[9999!important]"
closeOnSwipe={true}
visible={popVisible}
onMaskClick={() => {
setPopVisible(false);
// setIframePageUrl(null);
}}
onClose={() => {
setPopVisible(false);
// setIframePageUrl(null);
}}
position="bottom"
bodyStyle={{
height: "430px",
backgroundColor: "#17161A",
paddingBottom: 0,
borderTopRightRadius: "15px",
borderTopLeftRadius: "15px",
}}
style={{
"--background-color": "#fff",
}}
>
{/* {iframePage} */}
<div className="w-full -mt-[46px]">
<OwnImage
className="w-full h-[160px]"
outClassName="w-full h-[160px]"
fit="cover"
src={process.env.NEXT_PUBLIC_WEB_ASSETS_URL + "/images/newM.png"}
/>
<div className="p-[14px] w-full flex justify-center items-center flex-col">
<p className="text-[#FFFFFFB2] text-[13px] text-center mb-[28px]">
{noticesMaskInformation.content}
</p>
<div className="w-full">
{noticesMaskInformation.action?.map((item, index) => {
return (
<div
key={index}
style={{ display: item.count > 0 ? "flex" : "none" }}
className="w-full h-[56px] p-[14px] rounded-[12px] bg-[#2F2E32] flex justify-between items-center mt-[10px]"
>
<div className="flex items-center">
<OwnIcon
src={item?.icon_url}
className="w-[28px] h-[28px]"
outClassName="w-[28px] h-[28px] mr-[3.5px]"
/>
<span>
{item.text} {item.count}
</span>
</div>
<div
onClick={() => router.push(item.h5_url)}
className="py-[5px] px-[12px] rounded-full text-[13px] font-bold bg-[#FF669E]"
>
前往处理
</div>
</div>
);
})}
</div>
<div
onClick={() => setPopVisible(false)}
className="w-[221px] h-[46px] mt-[41px] flex justify-center items-center rounded-full text-[15px] bg-[#FF669E]"
>
回到空间
</div>
</div>
</div>
</Popup>
2024-07-06 11:05:19 +08:00
</div>
);
}