|
@@ -49,7 +49,7 @@ namespace GxPress.Service.Implement.Collection
|
|
|
public CollectionService(ICollectionRepository collectionRepository, IMiddleService middleService,
|
|
|
IArticleRepository articleRepository, ITopicRepository topicRepository, IMiddleRepository middleRepository,
|
|
|
INoteRepository noteRepository, IUserRepository userRepository, IArticleService articleService, INoticeRepository noticeRepository,
|
|
|
- IMissiveRepository missiveRepository, IMapper mapper,
|
|
|
+ IMissiveRepository missiveRepository, IMapper mapper,
|
|
|
IGroupRepository groupRepository, IMeetingSummaryRepository meetingSummaryRepository, IFolderUserRepository folderUserRepository, IAnalyzeService analyzeService, IFileLibraryRepository fileLibraryRepository, IUserMiddleService userMiddleService)
|
|
|
{
|
|
|
_collectionRepository = collectionRepository;
|
|
@@ -239,6 +239,42 @@ namespace GxPress.Service.Implement.Collection
|
|
|
return await _middleService.AddOrUpdateAsync(middleInsertTypeRequest);
|
|
|
}
|
|
|
/// <summary>
|
|
|
+ /// 收藏无文件夹分页列表
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<PagedList<CollectionListPageResult>> GetCollectionNoFolderPageListAsync(CollectionPageSearchRequest request)
|
|
|
+ {
|
|
|
+ var result = await _collectionRepository.GetCollectionNoFolderPageListAsync(request);
|
|
|
+ foreach (var item in result.Items)
|
|
|
+ {
|
|
|
+ item.Data = await StructCollectionData(item.CollectionDataId, item.CollectionType, item.SourceUserId);
|
|
|
+ if (string.IsNullOrWhiteSpace(item.Title))
|
|
|
+ {
|
|
|
+ item.Title = "";
|
|
|
+ if (item.Data.Type == 1)
|
|
|
+ item.Title = item.Data.Title;
|
|
|
+ else if (item.Data.Type == 400)
|
|
|
+ item.Title = item.Data.Title;
|
|
|
+ else
|
|
|
+ {
|
|
|
+ if (item.Data.Data != null)
|
|
|
+ {
|
|
|
+ if (item.Data.Type == 1)
|
|
|
+ item.Title = item.Data.Text;
|
|
|
+ else if (item.Data.Data.Type == 1)
|
|
|
+ item.Title = item.Data.Data.Text;
|
|
|
+ else if (item.Data.Data.Type == 2)
|
|
|
+ item.Title = "[图片]";
|
|
|
+ else
|
|
|
+ item.Title = "[附件]";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
/// 查询结果
|
|
|
/// </summary>
|
|
|
/// <param name="request"></param>
|