diff --git a/src/components/ImageUploader/index.jsx b/src/components/ImageUploader/index.jsx index a72fa54..e47f431 100644 --- a/src/components/ImageUploader/index.jsx +++ b/src/components/ImageUploader/index.jsx @@ -1,7 +1,7 @@ -import React, { useState } from "react"; +import React, { useEffect, useState } from "react"; import { uploadImage } from "../../utils/upload"; -const ImageUploader = ({ setIds, uploadOne }) => { +const ImageUploader = ({ ids = [], setIds, uploadOne }) => { const [selectedImages, setSelectedImages] = useState([]); const [uploading, setUploading] = useState(false); @@ -25,7 +25,11 @@ const ImageUploader = ({ setIds, uploadOne }) => { } } }; - + useEffect(() => { + if (!ids.length) { + setSelectedImages([]); + } + }, [ids]); const uploadImageAsync = async (image) => { try { setUploading(true); @@ -43,7 +47,9 @@ const ImageUploader = ({ setIds, uploadOne }) => { // 上传成功 image.uploadStatus = "success"; // 将上传成功的整数传递给父组件 - setIds((prevIds) => [...prevIds, uploadResult]); + setIds((prevIds) => { + return [...prevIds, uploadResult]; + }); } else { // 上传失败 image.uploadStatus = "fail"; diff --git a/src/components/PagesManage/index.js b/src/components/PagesManage/index.js index 482d7bf..2b8af44 100644 --- a/src/components/PagesManage/index.js +++ b/src/components/PagesManage/index.js @@ -167,6 +167,7 @@ export default function PagesManage() {
{ @@ -177,6 +178,7 @@ export default function PagesManage() { }} /> { setFormData((old) => ({ @@ -187,6 +189,7 @@ export default function PagesManage() { placeholder="APP页面值" /> { setFormData((old) => ({ @@ -198,6 +201,7 @@ export default function PagesManage() { />
-
+
handleShowDialog(it)} diff --git a/src/pages/HotManage/components/BannerList/index.jsx b/src/pages/HotManage/components/BannerList/index.jsx index fdd3686..c109526 100644 --- a/src/pages/HotManage/components/BannerList/index.jsx +++ b/src/pages/HotManage/components/BannerList/index.jsx @@ -23,6 +23,7 @@ import debounce from "lodash/debounce"; import dayjs from "dayjs"; const BannerList = (props) => { const [form] = Form.useForm(); + const [messageApi, contextHolder] = message.useMessage(); const current = props.current; //表头 const columns = [ @@ -30,7 +31,8 @@ const BannerList = (props) => { title: "主图", dataIndex: "image", key: "image", - width: 240, + fixed: "left", + width: 140, render: (data) => (
@@ -49,17 +51,45 @@ const BannerList = (props) => { title: "跳转链接", dataIndex: "hyperlinks", key: "hyperlinks", + width: 240, render: (data) => (
- {data.map((hyperlink, index) => ( -
-

{index ? "H5:" : "App:"}

- {hyperlink.url} -
- ))} + {data && + data.map((hyperlink, index) => ( +
+

{index ? "H5:" : "App:"}

+ {hyperlink.url} +
+ ))}
), }, + { + title: "开始时间", + dataIndex: "st", + key: "st", + width: 120, + render: (item) => { + return ( + + {item ? dayjs(item * 1000).format("YYYY-MM-DD HH:mm:ss") : "-"} + + ); + }, + }, + { + title: "结束时间", + dataIndex: "et", + key: "et", + width: 120, + render: (item) => { + return ( + + {item ? dayjs(item * 1000).format("YYYY-MM-DD HH:mm:ss") : "-"} + + ); + }, + }, { title: "优先级", dataIndex: "priority", @@ -71,7 +101,7 @@ const BannerList = (props) => { dataIndex: "status", key: "status", width: 120, - + fixed: "right", render: (item) => { return ( @@ -93,6 +123,7 @@ const BannerList = (props) => { dataIndex: "opeartion", key: "opeartion", width: 120, + fixed: "right", render: (_, record) => { return (
@@ -149,33 +180,72 @@ const BannerList = (props) => { }; //提交表单 const handleSubmit = async (value) => { - const { action, params, pageName, st, et, link, id } = value; - const paramsObj = pageName ? JSON.parse(pageName) : null; - const hyperlinks = paramsObj - ? [ - { - url: paramsObj.h5_route_path + "?" + params, - action, - }, - { - url: paramsObj.app_route_path + "?" + params, - action, - }, - ] - : [ - { - url: link, - action, - }, - ]; + const { + action, + status, + image, + pageName, + hyperlinks, + st, + et, + link, + ueser_id, + id, + } = value; + let newHyperlinks = []; + if (hyperlinks) { + newHyperlinks = hyperlinks; + } else { + const paramsObj = pageName ? JSON.parse(pageName) : null; + newHyperlinks = paramsObj + ? [ + { + url: paramsObj.h5_route_path + "?" + value.mid, + action, + }, + { + url: paramsObj.app_route_path + "?" + value.mid, + action, + }, + ] + : [ + { + url: link, + action, + }, + ]; + } + if (!status && new Date(st).getTime() < new Date().getTime()) { + messageApi.open({ + type: "warning", + content: "开始时间不能小于当前时间", + }); + return; + } else if (!status && new Date(st).getTime() > new Date(et).getTime()) { + messageApi.open({ + type: "warning", + content: "开始时间不能大于结束时间", + }); + return; + } else if ( + new Date(et).getTime() - new Date(st).getTime() < + 10 * 60 * 1000 + ) { + messageApi.open({ + type: "warning", + content: "两个时间间隔最短不小于10分钟", + }); + return; + } try { //通过图片审核,如果是视频直接跳过 const base = baseRequest(); const body = JSON.stringify({ ...value, - st: new Date(st).getTime(), - et: new Date(et).getTime(), - hyperlinks, + st: Math.floor(new Date(st).getTime() / (60 * 1000)) * 60, + et: Math.floor(new Date(et).getTime() / (60 * 1000)) * 60, + hyperlinks: newHyperlinks, + image: image?.images ? image : { image_ids: displayImageId }, ...base, }); const response = await fetch( @@ -205,14 +275,16 @@ const BannerList = (props) => { const [offset, setOffset] = useState(0); const [isModalOpen, setIsModalOpen] = useState(false); const [more, setMore] = useState(1); - const [displayImageId, setDisplayImageId] = useState(null); + const [displayImageId, setDisplayImageId] = useState([]); const [pagesOptions, setPagesOptions] = useState([]); + const [currentPageName, setCurrentPageName] = useState(""); + const [currentItem, setCurrentItem] = useState(null); const [formData] = useState({ title: "", image: "", hyperlinks: "", priority: null, - st: "", + st: dayjs(new Date()), et: "", status: 0, action: null, @@ -307,12 +379,12 @@ const BannerList = (props) => { }; const handleEditBanner = async (data) => { setIsModalOpen(true); - const { hyperlinks, st, et, mid, image } = data; - const newSt = dayjs(st); - const newEt = dayjs(et); - const currentPageName = hyperlinks[0].url.split("?")[0]; - const params = hyperlinks[0].url.split("?")[1]; - const action = hyperlinks[0].action; + const { hyperlinks, st, et, mid, status, user_id, id } = data; + const newSt = dayjs(st * 1000); + const newEt = dayjs(et * 1000); + const currentPageName = hyperlinks?.[0].url.split("?")[0]; + const params = hyperlinks?.[0].url.split("?")[1]; + const action = hyperlinks?.[0].action; const link = action === "inward" ? "" : hyperlinks[0].url; const isCurrentPagePath = pagesOptions.filter( @@ -323,8 +395,8 @@ const BannerList = (props) => { const pageName = action === "inward" ? JSON.stringify(isCurrentPagePath[0]) : ""; setPathMethod(action); - console.log("-----", [...image.images, image.images[0].id]); - setDisplayImageId(image.images[0].urls[0]); + setCurrentItem(data); + setDisplayImageId(data.image.image_ids); form.setFieldsValue({ ...data, st: newSt, @@ -334,6 +406,9 @@ const BannerList = (props) => { link, params, hyperlinks: "", + mid: params, + user_id, + id, }); }; const handleStopAndStart = (data) => { @@ -386,14 +461,68 @@ const BannerList = (props) => { setDisplayImageId([]); }; + // const currentStreamerImage = useMemo(() => { + // if (displayImageId) { + // return displayImageId; + // } else { + // return null; + // } + // }, [displayImageId]); const currentStreamerImage = useMemo(() => { - if (displayImageId) { - return displayImageId; + if (displayImageId.length > 0 && currentItem) { + if (currentItem.image.image_ids[0] === displayImageId[0]) { + return currentItem.image.images[0].urls[0]; + } else { + return null; + } } else { return null; } - }, [displayImageId]); + }, [displayImageId, currentItem]); + const findBracketedFields = (text) => { + const regex = /\[(.*?)\]/g; + const matches = []; + let match; + while ((match = regex.exec(text)) !== null) { + matches.push(match[1]); + } + + return matches; + }; + const splitParams = useMemo(() => { + const newCurrentPageName = form.getFieldValue("pageName"); + if (!newCurrentPageName) return []; + const CurrentPageNameObj = JSON.parse(newCurrentPageName); + const { app_route_path, h5_route_path } = CurrentPageNameObj; + const newCurrentPageNameStr = app_route_path || h5_route_path; + if ( + newCurrentPageNameStr.indexOf("?") !== -1 || + newCurrentPageNameStr.indexOf("[") !== -1 + ) { + if (newCurrentPageNameStr.indexOf("?") !== -1) { + const splitParamsStr = newCurrentPageNameStr.split("?")[1]; + return splitParamsStr.split("&").map((item) => item.split("=")[0]); + } + + // const regex = /\[.*?\]/g; + if (newCurrentPageNameStr) { + // const matches = []; + // let match; + // while ((match = regex.exec(newCurrentPageNameStr)) !== null) { + // matches.push(match[1]); + // console.log("Regex: ", match[1]); + // } + const matches = findBracketedFields(newCurrentPageNameStr); + console.log("Regex: ", matches); + return matches; + } else { + return []; + } + } else { + return []; + } + }, [currentPageName, pathMethod]); return (
@@ -405,6 +534,7 @@ const BannerList = (props) => { 新建Banner图
+ {contextHolder} { ]} className="mb-6" > - {currentStreamerImage ? ( -
+
+ {currentStreamerImage ? ( -
setDisplayImageId(null)} - > - -
+ ) : ( + + )} +
setDisplayImageId([])} + > +
- ) : ( - - )} +
{ width: 140, }} // value={formData.action} - onChange={setPathMethod} + onChange={(e) => { + form.setFieldsValue({ + pageName: "", + link: "", + params: "", + hyperlinks: "", + mid: "", + }); + setPathMethod(e); + }} options={[ { value: "inward", @@ -508,9 +651,10 @@ const BannerList = (props) => { { required: pathMethod == "outward", message: "请填写具体链接地址", + pattern: /^(https?:\/\/).*$/, }, ]} - label="添加链接" + label="跳转位置" name="link" className="mb-2" > @@ -525,58 +669,68 @@ const BannerList = (props) => { }} > -
- - - -
?
- + {currentPagesOptions.length > 0 && + currentPagesOptions.map((it) => { + return ( + + {it.label} + + ); + })} + {/* x1 + x2 + x3 + x5 */} + + + {splitParams.length > 0 && ( +
?
+ )} + + - { - // console.log("value", value); - // setFormData((old) => ({ - // ...old, - // params: value.target.value, - // })); - // }} - /> - + {splitParams.map((it) => ( + + {it}:} + /> + + ))} +
@@ -619,13 +773,14 @@ const BannerList = (props) => { > { // console.log("Time: ", new Date()); - setMiniDate(value); + setMiniDate(value ? value : dayjs(new Date())); console.log("Selected Time: ", value); console.log("Formatted Selected Time: ", dateString); }} @@ -645,7 +800,7 @@ const BannerList = (props) => { className="mb-6" > { + const [messageApi, contextHolder] = message.useMessage(); + const { confirm } = Modal; const [form] = Form.useForm(); //表头 const columns = [ @@ -30,6 +38,7 @@ const HotList = (props) => { dataIndex: "image", key: "image", width: 120, + fixed: "left", render: (data) => (
@@ -81,12 +90,38 @@ const HotList = (props) => { key: "priority", width: 90, }, + { + title: "开始时间", + dataIndex: "st", + key: "st", + width: 120, + render: (item) => { + return ( + + {item ? dayjs(item * 1000).format("YYYY-MM-DD HH:mm:ss") : "-"} + + ); + }, + }, + { + title: "结束时间", + dataIndex: "et", + key: "et", + width: 120, + render: (item) => { + return ( + + {item ? dayjs(item * 1000).format("YYYY-MM-DD HH:mm:ss") : "-"} + + ); + }, + }, { title: "状态", dataIndex: "status", key: "status", width: 120, - + fixed: "right", render: (item) => { return ( @@ -108,6 +143,7 @@ const HotList = (props) => { dataIndex: "opeartion", key: "opeartion", width: 120, + fixed: "right", render: (_, record) => { return (
@@ -121,9 +157,35 @@ const HotList = (props) => { + + + @@ -149,38 +211,117 @@ const HotList = (props) => { }; //提交表单 const handleSubmit = async (value) => { - const { action, params, pageName, st, et, link, ueser_id, id } = value; - const paramsObj = pageName ? JSON.parse(pageName) : null; - const hyperlinks = paramsObj - ? [ - { - url: paramsObj.h5_route_path + "?" + params, - action, - }, - { - url: paramsObj.app_route_path + "?" + params, - action, - }, - ] - : [ - { - url: link, - action, - }, - ]; + const { + action, + status, + image, + pageName, + hyperlinks, + st, + et, + link, + ueser_id, + id, + } = value; + + // const hyperlinks = + // action === "inward" + // ? ["app_route_path", "h5_route_path"].map((item, index) => { + // if (index == 1) { + // let pathName = paramsObj[item]; + // splitParams.forEach((it) => { + // console.log(pathName, it); + // pathName = pathName.replace(it, value[it]); + // }); + // return { + // action, + // params: pathName, + // }; + // } + // let pathName = paramsObj[item]; + // splitParams.forEach((it) => { + // console.log(pathName, it.toUpperCase()); + // pathName = pathName.replace(it.toUpperCase(), value[it]); + // }); + // return { + // action, + // params: pathName, + // }; + // }) + // : [ + // { + // action, + // params: link, + // }, + // ]; + let newHyperlinks = []; + if (hyperlinks) { + newHyperlinks = hyperlinks; + } else { + const paramsObj = pageName ? JSON.parse(pageName) : null; + newHyperlinks = paramsObj + ? [ + { + url: paramsObj.h5_route_path + "?" + value.mid, + action, + }, + { + url: paramsObj.app_route_path + "?" + value.mid, + action, + }, + ] + : [ + { + url: link, + action, + }, + ]; + } + if (!id) { + if (!status && new Date(st).getTime() < new Date().getTime()) { + messageApi.open({ + type: "warning", + content: "开始时间不能小于当前时间", + }); + return; + } else if (!status && new Date(st).getTime() > new Date(et).getTime()) { + messageApi.open({ + type: "warning", + content: "开始时间不能大于结束时间", + }); + return; + } else if ( + new Date(et).getTime() - new Date(st).getTime() < + 10 * 60 * 1000 + ) { + messageApi.open({ + type: "warning", + content: "两个时间间隔最短不小于10分钟", + }); + return; + } + } try { //通过图片审核,如果是视频直接跳过 + const dataObj = { + ...value, + st: Math.floor(new Date(st).getTime() / (60 * 1000)) * 60, + et: Math.floor(new Date(et).getTime() / (60 * 1000)) * 60, + hyperlinks: newHyperlinks, + image: image?.images ? image : { image_ids: displayImageId }, + user_id: "", + }; + if (id) { + delete dataObj.st; + delete dataObj.et; + } const base = baseRequest(); const body = JSON.stringify({ - ...value, - st: new Date(st).getTime(), - et: new Date(et).getTime(), - hyperlinks, - user_id: "", + ...dataObj, ...base, }); const response = await fetch( - `/op/activity_hot/${id ? "update" : "create"}`, + `/op/activity_hot/${id !== null ? "update" : "create"}`, { method: "POST", headers: { @@ -208,7 +349,8 @@ const HotList = (props) => { const [more, setMore] = useState(1); const [displayImageId, setDisplayImageId] = useState([]); const [pagesOptions, setPagesOptions] = useState([]); - const [currentStatus, setCurrentStatus] = useState("新建推送"); + const [currentStatus, setCurrentStatus] = useState(null); + const [currentPageName, setCurrentPageName] = useState(""); const [formData] = useState({ mid: null, title: "", @@ -243,12 +385,14 @@ const HotList = (props) => { }; const currentPagesOptions = useMemo(() => { if (!pagesOptions.length) return []; - const pages = pagesOptions.map((it) => { - return { - label: it.desc, - value: JSON.stringify(it), - }; - }); + const pages = pagesOptions + .filter((it) => it.desc === "达人空间") + .map((it) => { + return { + label: it.desc, + value: JSON.stringify(it), + }; + }); return pages; }, [pagesOptions, formData.action]); const onTimeOk = (value) => { @@ -278,7 +422,6 @@ const HotList = (props) => { value: 2, }, ]; - //创建页面路由 const getPages = async () => { try { const base = baseRequest(); @@ -316,7 +459,7 @@ const HotList = (props) => { }, body: JSON.stringify({ offset, - limit: 200, + limit: 2000, status, ...base, }), @@ -335,6 +478,7 @@ const HotList = (props) => { setData((old) => isFirst ? temData.data.list : [...old, ...temData.data.list] ); + setOffset(temData.data.offset); setMore(temData.data.more); } catch (error) { @@ -346,8 +490,8 @@ const HotList = (props) => { const handleEditHot = async (data) => { setIsModalOpen(true); const { hyperlinks, st, et, mid, status, user_id, id } = data; - const newSt = dayjs(st); - const newEt = dayjs(et); + const newSt = dayjs(st * 1000); + const newEt = dayjs(et * 1000); const currentPageName = hyperlinks[0].url.split("?")[0]; const params = hyperlinks[0].url.split("?")[1]; const action = hyperlinks[0].action; @@ -360,6 +504,7 @@ const HotList = (props) => { ); const pageName = action === "inward" ? JSON.stringify(isCurrentPagePath[0]) : ""; + setCurrentPageName(pageName); setPathMethod(action); setCurrentStatus( !status @@ -370,7 +515,7 @@ const HotList = (props) => { ? "已失效" : "未开始" ); - setSelectedStreamer(true); + setSelectedStreamer(data); await handleSearchMid(user_id); form.setFieldsValue({ ...data, @@ -386,8 +531,25 @@ const HotList = (props) => { id, }); }; - const handleStopAndStart = (data) => { - handleSubmit({ ...data, status: 2 }); + const handlePauseOrStopAndStart = (data, status) => { + const { st, et, hyperlinks } = data; + const isCurrentPagePath = pagesOptions.filter( + (it) => + it.h5_route_path.indexOf(currentPageName) !== -1 || + it.app_route_path.indexOf(currentPageName) !== -1 + ); + const action = hyperlinks[0].action; + const pageName = + action === "inward" + ? JSON.stringify(isCurrentPagePath[0]) + : hyperlinks[0].url; + handleSubmit({ + ...data, + pageName, + st: st * 1000, + et: et * 1000, + status, + }); }; //搜索空间 const handleSearchMid = async (mid) => { @@ -411,6 +573,11 @@ const HotList = (props) => { alert(detailData.msg); return; } + console.log( + "temData.data.list 621957", + detailData.data.list[0].streamer_ext.avatar.image_ids + ); + setDisplayImageId(detailData.data.list[0].streamer_ext.avatar.image_ids); const zonesArr = detailData.data.list; setZones(zonesArr); } catch (error) { @@ -444,16 +611,69 @@ const HotList = (props) => { setIsModalOpen(false); setZones(null); setDisplayImageId([]); + setCurrentStatus(null); }; const currentStreamerImage = useMemo(() => { - console.log("form.validateFields", selectedStreamer); - if (selectedStreamer && zones && displayImageId) { - return zones[0]?.streamer_ext.avatar.images[0].urls[0]; + console.log("form.validateFields", displayImageId); + if (selectedStreamer && zones && displayImageId.length > 0) { + if (zones[0].streamer_ext.avatar.image_ids[0] === displayImageId[0]) { + return zones[0]?.streamer_ext.avatar.images[0].urls[0]; + } else { + return null; + } } else { return null; } }, [zones, selectedStreamer, displayImageId]); + const findBracketedFields = (text) => { + const regex = /\[(.*?)\]/g; + const matches = []; + let match; + + while ((match = regex.exec(text)) !== null) { + matches.push(match[1]); + } + + return matches; + }; + const getSplitParams = useCallback((currentPageName) => { + const newCurrentPageName = + form.getFieldValue("pageName") || currentPageName; + if (!newCurrentPageName) return []; + const CurrentPageNameObj = JSON.parse(newCurrentPageName); + const { app_route_path, h5_route_path } = CurrentPageNameObj; + const newCurrentPageNameStr = app_route_path || h5_route_path; + if ( + newCurrentPageNameStr.indexOf("?") !== -1 || + newCurrentPageNameStr.indexOf("[") !== -1 + ) { + if (newCurrentPageNameStr.indexOf("?") !== -1) { + const splitParamsStr = newCurrentPageNameStr.split("?")[1]; + return splitParamsStr.split("&").map((item) => item.split("=")[0]); + } + // const regex = /\[.*?\]/g; + if (newCurrentPageNameStr) { + // const matches = []; + // let match; + // while ((match = regex.exec(newCurrentPageNameStr)) !== null) { + // matches.push(match[1]); + // console.log("Regex: ", match[1]); + // } + const matches = findBracketedFields(newCurrentPageNameStr); + console.log("Regex: ", matches); + return matches; + } else { + return []; + } + } else { + return []; + } + }); + const splitParams = useMemo( + () => getSplitParams(currentPageName), + [currentPageName, pathMethod] + ); return (
@@ -473,21 +693,31 @@ const HotList = (props) => { 新建推送+
+ {contextHolder}
( +
获得总数:{showData.length}
+ )} + onScroll={(e) => { + const { scrollHeight, scrollTop, clientHeight } = e.currentTarget; + if (scrollTop + clientHeight + 5 >= scrollHeight && more) { + getData(hotStatus, false, offset); + } + }} /> -

+

推送状态: {currentStatus}

@@ -512,6 +742,7 @@ const HotList = (props) => { // style={{ // width: 240, // }} + disabled={currentStatus} className="w-full" showSearch allowClear @@ -523,9 +754,9 @@ const HotList = (props) => { setSelectedStreamer(currentIt); form.setFieldsValue({ mid: v, - title: currentIt.profile, + title: currentIt.streamer_ext.name, image: currentIt.streamer_ext.avatar, - text: currentIt.streamer_ext.name, + text: currentIt.profile, }); } else { setSelectedStreamer(null); @@ -544,7 +775,9 @@ const HotList = (props) => { value: it.mid, label: (
-

ID:{it?.mid}

+

+ ID:{it?.streamer_ext?.user_id} +

昵称:{it?.streamer_ext.name}

@@ -572,23 +805,30 @@ const HotList = (props) => { ]} className="mb-6" > - {currentStreamerImage ? ( -
+
+ {currentStreamerImage ? ( -
setDisplayImageId(null)} - > - -
+ ) : ( + + )} +
setDisplayImageId([])} + > +
- ) : ( - - )} +
{ direction="vertical" className="bg-[#00000011] rounded-md p-4 mb-4" > - + + {currentPagesOptions.length > 0 && + currentPagesOptions.map((it) => { + return ( + + {it.label} + + ); + })} + {/* x1 + x2 + x3 + x5 */} + + + {splitParams.length > 0 && ( +
?
+ )} + + {/* + {splitParams.map((it) => ( + + {it}:} + /> + + ))} + */} + -
-
?
- - { - // console.log("value", value); - // setFormData((old) => ({ - // ...old, - // params: value.target.value, - // })); + // style={{ + // width: 240, // }} + className="w-full" + style={{ display: selectedStreamer ? "none" : "block" }} + showSearch + allowClear + placeholder="通过ID搜索主播" + // optionFilterProp="label" + onChange={(v) => { + // const currentIt = zones?.filter( + // (it) => it.mid == v + // )[0]; + // if (currentIt) { + // setSelectedStreamer(currentIt); + // } else { + // setSelectedStreamer(null); + // } + }} + filterOption={false} + onSearch={debounce(handleSearchMid, 1000)} + notFoundContent={ + isLoading ? : null + } + options={zones?.map((it) => ({ + value: it.mid, + label: ( +
+

ID:{it?.mid}

+

+ 昵称:{it?.streamer_ext.name} +

+
+ ), + }))} + labelRender={({ value }) => { + const currentIt = zones?.filter( + (it) => it.mid == value + )[0]; + if (currentIt) { + return currentIt.streamer_ext.name; + } + return No option match; + }} /> -
+ {splitParams.map((it) => ( + +
+ {it}:{selectedStreamer?.mid} +
+ {/* {it}:} + value={selectedStreamer?.mid} + /> */} +
+ ))} +
@@ -764,13 +1109,15 @@ const HotList = (props) => { > { // console.log("Time: ", new Date()); - setMiniDate(value); + setMiniDate(value ? value : dayjs(new Date())); console.log("Selected Time: ", value); console.log("Formatted Selected Time: ", dateString); }} @@ -790,7 +1137,8 @@ const HotList = (props) => { className="mb-6" > { + const [messageApi, contextHolder] = message.useMessage(); //控制创建动态modal是否出现 const [isModalOpen, setIsModalOpen] = useState(false); const [isPagesModalOpen, setIsPagesModalOpen] = useState(false); @@ -34,9 +36,11 @@ const NoticesContent = (props) => { const [form] = Form.useForm(); const [pagesOptions, setPagesOptions] = useState([]); const [pathMethod, setPathMethod] = useState(""); + const [selectedStreamer, setSelectedStreamer] = useState(null); const { TextArea } = Input; const current = props.current; - + const [zones, setZones] = useState(null); + const [displayImageId, setDisplayImageId] = useState([]); //表头 const columns = [ { @@ -111,6 +115,7 @@ const NoticesContent = (props) => { }, { title: "链接标语", + width: 90, dataIndex: "link_text", key: "link_text", render: (data) =>
{data || "-"}
, @@ -149,8 +154,14 @@ const NoticesContent = (props) => { title: "推送时间", dataIndex: "push_time", key: "push_time", - render: (data) => { - return
{formatDeadline(data * 1000)}
; + render: (data, record) => { + return ( +
+ {dayjs(!!data ? data * 1000 : record.ct * 1000).format( + "YYYY-MM-DD HH:mm:ss" + )} +
+ ); }, }, { @@ -159,9 +170,13 @@ const NoticesContent = (props) => { dataIndex: "obj_mids", key: "obj_mids", render: (data) => ( -
+
{data?.length > 0 - ? data.map((it) => {it}) + ? data.map((it) => ( + + {it} + + )) : "-"}
), @@ -177,9 +192,9 @@ const NoticesContent = (props) => { {data == 0 ? "所有主播" : data == 1 - ? "所有个人" + ? "所有普通用户" : data == 2 - ? "所有主播和个人" + ? "全部" : "自定义角色"}
); @@ -335,16 +350,17 @@ const NoticesContent = (props) => { const [data, setData] = useState([]); const [offset, setOffset] = useState(0); const [more, setMore] = useState(1); + const [total, setTotal] = useState(0); const [formData, setFormData] = useState({ title: "", message: "", n_type: 0, - obj_mids: [], - // push_time: 1111111111111, + obj_user_ids: [], + push_time: dayjs(new Date()), params: "", pageName: null, link: null, - action: "inward", + action: null, link_text: null, thumbnail: null, obj_type: "0", @@ -353,16 +369,18 @@ const NoticesContent = (props) => { const currentPagesOptions = useMemo(() => { if (!pagesOptions.length) return []; - const pages = pagesOptions.map((it) => { - return { - label: it.desc, - value: JSON.stringify(it), - }; - }); + const pages = pagesOptions + .filter((it) => it.desc === "达人空间") + .map((it) => { + return { + label: it.desc, + value: JSON.stringify(it), + }; + }); return pages; }, [pagesOptions, formData.action]); - const getData = async () => { + const getData = async (offset) => { if (!more) return; let querryStatus; switch (current) { @@ -390,10 +408,10 @@ const NoticesContent = (props) => { }, body: JSON.stringify({ n_type: 0, - // push_time: 0, - // status: querryStatus, - // offset: offset, - // limit: 200, + push_type: 1, + status: querryStatus, + offset: 0, + limit: 20 + offset, ...base, }), }); @@ -405,6 +423,9 @@ const NoticesContent = (props) => { return; } setShowData([...temData.data.list]); + if (temData.data.offset > total) { + setTotal(temData.data.offset); + } setOffset(temData.data.offset); setMore(temData.data.more); } catch (error) { @@ -412,7 +433,7 @@ const NoticesContent = (props) => { } }; useEffect(() => { - getData(); + getData(0); }, [current]); //展示的数据 @@ -427,48 +448,63 @@ const NoticesContent = (props) => { form.resetFields(); setPathMethod(""); setIsModalOpen(false); + setZones(null); + getData(0); }; const handleSubmit = async (value) => { // if (!selectedUser) { // alert("还未选中用户"); // return; // } - const { action, params, link, pageName, obj_mids, push_time, obj_type } = - value; + const { + action, + params, + status, + link, + hyperlinks, + pageName, + obj_user_ids, + push_time, + obj_type, + id, + thumbnail, + } = value; debugger; - const obj_midsArr = obj_mids?.split(" ").map((it) => Number(it)); - const paramsObj = JSON.parse(pageName); - const hyperlinks = - action === "inward" - ? ["app_route_path", "h5_route_path"].map((item, index) => { - if (index == 1) { - let pathName = paramsObj[item]; - splitParams.forEach((it) => { - console.log(pathName, it); - pathName = pathName.replace(it, value[it]); - }); - return { - action, - params: pathName, - }; - } - let pathName = paramsObj[item]; - splitParams.forEach((it) => { - console.log(pathName, it.toUpperCase()); - pathName = pathName.replace(it.toUpperCase(), value[it]); - }); - return { + const obj_midsArr = obj_user_ids?.split(" ").map((it) => Number(it)); + let newHyperlinks = []; + if (hyperlinks) { + newHyperlinks = hyperlinks; + } else { + const paramsObj = pageName ? JSON.parse(pageName) : null; + newHyperlinks = paramsObj + ? [ + { + params: paramsObj.h5_route_path + "?" + value.mid, action, - params: pathName, - }; - }) + }, + { + params: paramsObj.app_route_path + "?" + value.mid, + action, + }, + ] : [ { - action, params: link, + action, }, ]; + } + if (!id) { + if (!status && new Date(push_time).getTime() < new Date().getTime()) { + messageApi.open({ + type: "warning", + content: "开始时间不能小于当前时间", + }); + return; + } + } debugger; + try { const base = baseRequest(); const response = await fetch(`/op/notification/create`, { @@ -478,12 +514,15 @@ const NoticesContent = (props) => { }, body: JSON.stringify({ ...value, - obj_mids: obj_midsArr, + obj_user_ids: obj_midsArr, push_time: Math.floor(new Date(push_time).getTime() / (60 * 1000)) * 60, obj_type: parseInt(obj_type, 10), - hyperlinks, + hyperlinks: newHyperlinks, sub_mid: 0, + thumbnail: thumbnail?.images + ? thumbnail + : { image_ids: displayImageId }, ...base, }), }); @@ -492,6 +531,7 @@ const NoticesContent = (props) => { alert(data.msg); return; } + handleCancelModal(); message.success("发布成功"); } catch (error) { console.error(error); @@ -563,7 +603,48 @@ const NoticesContent = (props) => { return []; } }, [currentPageName]); - + //搜索空间 + const handleSearchMid = async (mid) => { + // const mid = form.getFieldValue("mid"); + if (!mid) return; + setLoading(true); + try { + const base = baseRequest(); + const detailResponse = await fetch(`/op/zone/list_by_user_id`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + user_id: parseInt(mid, 10), + ...base, + }), + }); + const detailData = await detailResponse.json(); + if (detailData.ret === -1) { + alert(detailData.msg); + return; + } + const zonesArr = detailData.data.list; + setZones(zonesArr); + } catch (error) { + console.error(error); + } finally { + setLoading(false); + } + }; + const currentStreamerImage = useMemo(() => { + console.log("form.validateFields", displayImageId); + if (selectedStreamer && zones && displayImageId.length > 0) { + if (zones[0].streamer_ext.avatar.image_ids[0] === displayImageId[0]) { + return zones[0]?.streamer_ext.avatar.images[0].urls[0]; + } else { + return null; + } + } else { + return null; + } + }, [zones, selectedStreamer, displayImageId]); return (
@@ -583,12 +664,27 @@ const NoticesContent = (props) => { 新建推送+
+ {contextHolder}
( +
获得总数:{showData.length}
+ )} + onScroll={(e) => { + const { scrollHeight, scrollTop, clientHeight } = e.currentTarget; + console.log(scrollHeight, scrollTop + clientHeight); + + if (scrollTop + clientHeight + 5 >= scrollHeight) { + getData(offset); + } + }} /> {/* 重复判断isModalOpen是为了重新渲染ImageUploader和VideoUploader组件 */} { footer={null} open={isModalOpen} onCancel={handleCancelModal} + onChange={setFormData} >
{ onFinish={handleSubmit} layout="vertical" initialValues={formData} + onChange={setFormData} > { ]} className={formData.obj_type == 3 ? "mb-2" : "mb-6"} > -
- - 所有主播 - 所有个人 - 所有主播和个人 - 自定义角色 - -
+ + 所有主播 + 所有普通用户 + 全部 + 自定义角色 +
- {formData.obj_type == 3 && ( + {form.getFieldValue("obj_type") == 3 && ( { >