Files
Disco/Disco.Web/Areas/Config/Models/JobPreferences/IndexModel.cs
T
Gary Sharp 723eeec91e Feature #25: Job General Preferences
Initially to make 'long running job threshold' configurable. Updates to
ManagedJobList and fix for missing GetClaimKeys method (#24).
2013-10-24 18:19:05 +11:00

43 lines
1.7 KiB
C#

using Disco.Models.UI.Config.JobPreferences;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Disco.Web.Areas.Config.Models.JobPreferences
{
public class IndexModel : ConfigJobPreferencesIndexModel
{
public int LongRunningJobDaysThreshold { get; set; }
public List<KeyValuePair<int, string>> LongRunningJobDaysThresholdOptions()
{
var options = new List<KeyValuePair<int, string>>() {
new KeyValuePair<int, string>(1, "1 Day"),
new KeyValuePair<int, string>(2, "2 Days"),
new KeyValuePair<int, string>(3, "3 Days"),
new KeyValuePair<int, string>(4, "4 Days"),
new KeyValuePair<int, string>(5, "5 Days"),
new KeyValuePair<int, string>(6, "6 Days"),
new KeyValuePair<int, string>(7, "1 Week"),
new KeyValuePair<int, string>(14, "2 Weeks"),
new KeyValuePair<int, string>(21, "3 Weeks"),
new KeyValuePair<int, string>(28, "4 Weeks"),
new KeyValuePair<int, string>(35, "5 Weeks"),
new KeyValuePair<int, string>(42, "6 Weeks"),
new KeyValuePair<int, string>(49, "7 Weeks"),
new KeyValuePair<int, string>(56, "8 Weeks")
};
var current = this.LongRunningJobDaysThreshold;
if (!options.Any(o => o.Key == current))
{
options.Add(new KeyValuePair<int, string>(current, string.Format("{0} Days", current)));
options = options.OrderBy(o => o.Key).ToList();
}
return options;
}
}
}