|
@@ -3,7 +3,10 @@ using System.Linq;
|
|
|
using System.Threading.Tasks;
|
|
|
using GxPress.Common.Exceptions;
|
|
|
using GxPress.Entity.Topic;
|
|
|
+using GxPress.EnumConst;
|
|
|
using GxPress.Request.App.Topic;
|
|
|
+using GxPress.Result;
|
|
|
+using Newtonsoft.Json;
|
|
|
|
|
|
namespace GxPress.Service.Implement.Topic
|
|
|
{
|
|
@@ -23,35 +26,22 @@ namespace GxPress.Service.Implement.Topic
|
|
|
topic.Title = request.Title;
|
|
|
if (!string.IsNullOrEmpty(request.Content))
|
|
|
{
|
|
|
+ topic.TextContent = string.Empty;
|
|
|
topic.Content = request.Content;
|
|
|
topic.HtmlContent = request.HtmlContent;
|
|
|
+ var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(request.Content);
|
|
|
+ foreach (var data in contentJsonData)
|
|
|
+ {
|
|
|
+ if (data.Type == AllTypeConst.Text.GetHashCode())
|
|
|
+ topic.TextContent += data.Text;
|
|
|
+ }
|
|
|
}
|
|
|
- //获取共享文件夹成员
|
|
|
- if (request.FolderId > 0)
|
|
|
- {
|
|
|
- var folderUsers = await _folderUserRepository.GetAllAsync(request.FolderId);
|
|
|
- request.TopicAddresseeUserIds = folderUsers.Select(n => n.UserId).ToList();
|
|
|
- //删除topicAddress
|
|
|
- await _topicAddresseeRepository.DeletByTopicIdAsync(request.Id);
|
|
|
- topic.FolderId = request.FolderId;
|
|
|
- }
|
|
|
- var topicAddressees = new List<TopicAddressee>();
|
|
|
- //
|
|
|
- request.TopicAddresseeUserIds.Add(request.UserId);
|
|
|
- //创建话题讨论成员
|
|
|
- foreach (var item in request.TopicAddresseeUserIds)
|
|
|
+ else
|
|
|
{
|
|
|
- //创建话题管理员
|
|
|
- var topicAddressee = new TopicAddressee
|
|
|
- {
|
|
|
- TopicId = request.Id,
|
|
|
- UserId = item,
|
|
|
- IsAdmin = item == request.UserId
|
|
|
- };
|
|
|
- topicAddressees.Add(topicAddressee);
|
|
|
+ topic.TextContent = "[]";
|
|
|
+ topic.Content = string.Empty;
|
|
|
+ topic.HtmlContent = string.Empty;
|
|
|
}
|
|
|
- //添加话题阅读成员
|
|
|
- await _topicAddresseeRepository.InsertAsync(topicAddressees);
|
|
|
//是否草稿
|
|
|
topic.IsDraft = request.IsDraft;
|
|
|
return await _topicRepository.UpdateAsync(topic);
|