You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
3.8 KiB
131 lines
3.8 KiB
@implements IDisposable; |
|
@inject IAgileService AgileService; |
|
|
|
@layout PageLayout |
|
|
|
@page "/agile" |
|
|
|
@if (!AgileService.IsLoaded()) |
|
{ |
|
<LoadingComponent/> |
|
} |
|
else |
|
|
|
|
|
{ |
|
<LayoutMediumContentComponent> |
|
|
|
<WebsiteTitleComponent>Agile</WebsiteTitleComponent> |
|
|
|
<div class="agileViewContainer"> |
|
@foreach (var sprint in AgileService.AgileSprintModels!.OrderBy(e => e.EndDate).Reverse()) |
|
{ |
|
<details class="sprintDisplayContainer @sprint.GetSprintType().ToLower()" open="@(sprint.GetSprintType() == SprintType.Current)"> |
|
<summary class="sprintSummary"> |
|
<div class="sprintTitle">@sprint.Name</div> |
|
<div style="flex: 1; flex-grow: 1;"></div> |
|
<div class="sprintDates"> |
|
<div class="sprintStartDate"> |
|
@if (sprint.StartDate != null) |
|
{ |
|
<b>Start: </b> |
|
@sprint.StartDate.Value.ToString("dd/MM/yyyy") |
|
} |
|
</div> |
|
<div class="sprintEndDate"> |
|
@if (sprint.EndDate != null) |
|
{ |
|
<b>End: </b> |
|
@sprint.EndDate.Value.ToString("dd/MM/yyyy") |
|
} |
|
|
|
</div> |
|
</div> |
|
</summary> |
|
<SprintComponent AgileSprint="sprint"></SprintComponent> |
|
|
|
</details> |
|
} |
|
|
|
<details class="sprintDisplayContainer"> |
|
<summary class="sprintSummary"> |
|
<div class="sprintTitle">Backlog</div> |
|
<div style="flex: 1; flex-grow: 1;"></div> |
|
</summary> |
|
<div> |
|
<BacklogComponent Backlog=backlog></BacklogComponent> |
|
</div> |
|
</details> |
|
</div> |
|
|
|
<ContentDividerComponent></ContentDividerComponent> |
|
|
|
<PaperComponent> |
|
|
|
<InfoBodyComponent> |
|
<InfoQuestionComponent>What is Agile?</InfoQuestionComponent> |
|
<InfoAnswerComponent> |
|
Agile is a work methodology for determing task assignment and release deadlines. |
|
<br/><br/> |
|
My agile practice will be creating tasks in a backlog. Assigning them to weekly sprints. And completing all tasks in the allotted time frame. |
|
<br/><br/> |
|
Any unfinished tasks are moved into the next sprint, or the sprint will be extended by a week. |
|
</InfoAnswerComponent> |
|
</InfoBodyComponent> |
|
</PaperComponent> |
|
</LayoutMediumContentComponent> |
|
} |
|
|
|
|
|
@code { |
|
|
|
#if NO_SQL |
|
|
|
#else |
|
[Inject] |
|
DatabaseContext Database { get; set; } |
|
|
|
[Parameter] |
|
public DbSet<TaskModel> Tasks { get; set; } |
|
|
|
[Parameter] |
|
public DbSet<SprintModel> Sprints { get; set; } |
|
#endif |
|
|
|
private readonly List<AgileTaskModel> backlog = new(); |
|
|
|
protected override void OnInitialized() |
|
{ |
|
AgileService.Subscribe(HasChanged); |
|
} |
|
|
|
void IDisposable.Dispose() |
|
{ |
|
AgileService.Unsubscribe(HasChanged); |
|
} |
|
|
|
void HasChanged() |
|
{ |
|
backlog.Clear(); |
|
|
|
foreach (var task in AgileService.AgileTaskModels!) |
|
{ |
|
if (task.AgileSprintModelId == null) |
|
{ |
|
backlog.Add(task); |
|
} |
|
} |
|
|
|
StateHasChanged(); |
|
} |
|
|
|
protected override async Task OnInitializedAsync() |
|
{ |
|
#if NO_SQL |
|
await AgileService.Load(); |
|
#else |
|
await AgileService.Load(Database); |
|
#endif |
|
} |
|
|
|
} |