Skip to content

Instantly share code, notes, and snippets.

@davidsonsousa
Created July 15, 2019 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsonsousa/ce11a48dd2abcf09e4f07b6a4b3261f2 to your computer and use it in GitHub Desktop.
Save davidsonsousa/ce11a48dd2abcf09e4f07b6a4b3261f2 to your computer and use it in GitHub Desktop.
using ReportsWeb.Attributes;
using ReportsWeb.Models.DataTable;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Reflection;
namespace ReportsWeb.Helpers
{
public static class DataTableHelper
{
public static TableViewModel BuildDataTable(IEnumerable<PersonTableViewModel> listItems, int recordsCount)
{
var listString = new List<List<string>>();
// Get the properties which should appear in the DataTable
var properties = GetProperties(listItems.FirstOrDefault());
foreach (PersonTableViewModel item in listItems)
{
var listProperties = PrepareDataTable(properties, item).ToList();
listString.Add(listProperties);
}
return new TableViewModel
{
Data = listString,
RecordsTotal = 0, //TODO: Add total here
RecordsFiltered = recordsCount,
Draw = 0
};
}
public static IEnumerable<string> BuildDataTableHeader(PersonTableViewModel tableViewModel)
{
var headerString = new List<string>();
// Get the properties which should appear in the DataTable
var properties = GetProperties(tableViewModel);
foreach (var property in properties)
{
var listProperties = WebUtility.HtmlEncode(tableViewModel.GetType()
.GetProperty(property.Name)
.GetCustomAttributes(false)
.OfType<ShowOnDataTable>().First().ColumnName
?? property.Name);
// VanityId must *always* be the last property
//listProperties.Add(item.VanityId.ToString());
headerString.Add(listProperties);
}
return headerString;
}
private static IOrderedEnumerable<PropertyInfo> GetProperties(PersonTableViewModel item)
{
return item.GetType().GetProperties()
.Where(p => Attribute.IsDefined(p, typeof(ShowOnDataTable)))
.OrderBy(o => o.GetCustomAttributes(false).OfType<ShowOnDataTable>().First().Order);
}
private static IEnumerable<string> PrepareDataTable(IOrderedEnumerable<PropertyInfo> properties, PersonTableViewModel item)
{
var listProperties = new List<string>();
foreach (var property in properties)
{
listProperties.Add(GetValue(property, item));
}
return listProperties;
}
private static string GetValue(PropertyInfo property, PersonTableViewModel item)
{
return WebUtility.HtmlEncode(item.GetType()
.GetProperty(property.Name)
.GetValue(item)?.ToString())
?? string.Empty;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment