|
@@ -9,6 +9,9 @@ using GxPress.Request.ArticleGroup;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
using Datory;
|
|
|
using Dapper;
|
|
|
+using GxPress.Result.Article;
|
|
|
+using System;
|
|
|
+using GxPress.EnumConst;
|
|
|
|
|
|
namespace GxPress.Repository.Implement
|
|
|
{
|
|
@@ -44,11 +47,28 @@ namespace GxPress.Repository.Implement
|
|
|
return await _repository.InsertAsync(processGroup);
|
|
|
}
|
|
|
|
|
|
- public async Task<ArticleGroup> GetAsync(int id)
|
|
|
+ public async Task<ArticleGroupResult> GetAsync(int id)
|
|
|
+ {
|
|
|
+ if (id == 0)
|
|
|
+ {
|
|
|
+ var result = new ArticleGroupResult();
|
|
|
+ result.StyleCssDictionary = new Dictionary<string, string>();
|
|
|
+ Type t = typeof(AppPageStyleCssConst);
|
|
|
+ Array arrays = Enum.GetValues(t);
|
|
|
+ for (int i = 0; i < arrays.LongLength; i++)
|
|
|
+ {
|
|
|
+ var appPageStyleCssConst = (AppPageStyleCssConst)arrays.GetValue(i);
|
|
|
+ var descriptionattrib = appPageStyleCssConst.GetDescriptionOriginal();
|
|
|
+ result.StyleCssDictionary.Add(descriptionattrib, appPageStyleCssConst.ToString());
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ return await _repository.GetAsync<ArticleGroupResult>(Q.Where(nameof(Entity.ArticleGroup.Id), id));
|
|
|
+ }
|
|
|
+ public async Task<ArticleGroup> GetArticleGroupAsync(int id)
|
|
|
{
|
|
|
return await _repository.GetAsync(id);
|
|
|
}
|
|
|
-
|
|
|
public async Task<bool> UpdateAsync(ArticleGroup processGroup)
|
|
|
{
|
|
|
return await _repository.UpdateAsync(processGroup);
|
|
@@ -75,9 +95,12 @@ namespace GxPress.Repository.Implement
|
|
|
var group = new ArticleGroup
|
|
|
{
|
|
|
Name = request.Name,
|
|
|
- Sort = request.Sort
|
|
|
+ Sort = request.Sort,
|
|
|
+ IsMiddleLable = request.IsMiddleLable,
|
|
|
+ IsSystemDefault = request.IsSystemDefault,
|
|
|
+ MiddleLableId = request.MiddleLableId,
|
|
|
+ StyleCss = request.StyleCss
|
|
|
};
|
|
|
-
|
|
|
group.Id = await InsertAsync(group);
|
|
|
return group;
|
|
|
}
|
|
@@ -90,18 +113,15 @@ namespace GxPress.Repository.Implement
|
|
|
/// <returns></returns>
|
|
|
public async Task<bool> UpdateAsync(int id, ArticleGroupAddRequest request)
|
|
|
{
|
|
|
- var group = await GetAsync(id);
|
|
|
+ var group = await GetArticleGroupAsync(id);
|
|
|
if (group == null) throw new BusinessException("该分组不存在");
|
|
|
-
|
|
|
if (group.Name != request.Name)
|
|
|
{
|
|
|
var exist = await IsNameExistsAsync(request.Name);
|
|
|
if (exist) throw new BusinessException("分组名不能重复");
|
|
|
}
|
|
|
-
|
|
|
group.Name = request.Name;
|
|
|
group.Sort = request.Sort;
|
|
|
-
|
|
|
return await UpdateAsync(group);
|
|
|
}
|
|
|
|