From 92c873eda099b869e15108a79bf5223d3f0264a6 Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期三, 06 八月 2025 09:40:44 +0800
Subject: [PATCH] 调整商品可以进行排序
---
framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java | 37 ++++++++-----------------------------
1 files changed, 8 insertions(+), 29 deletions(-)
diff --git a/framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java b/framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java
index d5cd650..abc3a70 100644
--- a/framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java
+++ b/framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java
@@ -6,6 +6,7 @@
import cn.lili.modules.goods.entity.vos.GoodsVO;
import cn.lili.modules.lmk.domain.query.AuthorVideoQuery;
import cn.lili.modules.lmk.domain.vo.*;
+import cn.lili.modules.lmk.service.MySubscribeService;
import cn.lili.modules.lmk.service.VideoService;
import cn.lili.rocketmq.RocketmqSendCallbackBuilder;
import cn.lili.rocketmq.tags.CommentTagsEnum;
@@ -24,6 +25,7 @@
import com.xkcoding.http.util.StringUtil;
import org.apache.rocketmq.spring.core.RocketMQTemplate;
import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import lombok.RequiredArgsConstructor;
import cn.lili.utils.PageUtil;
@@ -32,10 +34,7 @@
import org.springframework.util.CollectionUtils;
import org.springframework.util.StringUtils;
-import java.util.Collections;
-import java.util.List;
-import java.util.Objects;
-import java.util.Optional;
+import java.util.*;
import java.util.stream.Collectors;
/**
@@ -52,14 +51,8 @@
private final RocketmqCustomProperties rocketmqCustomProperties;
private final LmkFileServiceImpl fileService;
private final RocketMQTemplate rocketMQTemplate;
- private VideoService videoService; // 绉婚櫎浜唂inal
- private COSUtil cOSUtil;
+ private final VideoServiceMakeUpImpl serviceMakeUp;
- @Autowired
- public void setVideoService(VideoService videoService) {
- // 杩欓噷鍙互娣诲姞棰濆鐨勫垵濮嬪寲閫昏緫
- this.videoService = videoService;
- }
/**
@@ -173,6 +166,9 @@
@Override
public List<SimpleMyCollectVO> getCollectsByVideoIds(List<String> videoIds) {
+ if (videoIds == null || videoIds.isEmpty()) {
+ return new ArrayList<>();
+ }
return baseMapper.getCollectsByVideoIds(videoIds, UserContext.getCurrentUserId());
}
@@ -202,24 +198,7 @@
videoQuery.setPageSize(query.getPageSize());
videoQuery.setPageNumber(query.getPageNumber());
- Result result = videoService.getAuthorCollectVideoPage(videoQuery);
- List<WxVideoVO> list = Optional.ofNullable(result.get("data"))
- .filter(data -> data instanceof List<?>)
- .map(data -> (List<?>) data)
- .orElse(Collections.emptyList())
- .stream()
- .filter(WxVideoVO.class::isInstance)
- .map(WxVideoVO.class::cast)
- .collect(Collectors.toList());
- for (WxVideoVO wxVideoVO : list){
- if (!CollectionUtils.isEmpty(wxVideoVO.getImgs())){
- List<String> newImages = wxVideoVO
- .getImgs().stream().map(item -> cOSUtil.getPreviewUrl(item)).collect(Collectors.toList());
- wxVideoVO.setImgs(newImages);
- }
-
- }
- return result;
+ return serviceMakeUp.getAuthorCollectVideoPage(videoQuery);
}else if (CollectTypeEnum.goods.getType().equals(query.getType())) {
baseMapper.getGoodsCollectPage(page, userId);
--
Gitblit v1.8.0