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.
224 lines
5.7 KiB
224 lines
5.7 KiB
<div class="sprintContainer"> |
|
<div class="sprintStatus"> |
|
<b>Status: </b>@AgileSprint.GetSprintType() |
|
</div> |
|
<div class="sprintDescription"> |
|
<b>Description: </b>@AgileSprint.Description |
|
</div> |
|
<div class="sprintNotes"> |
|
<b>Notes: </b>@AgileSprint.Notes |
|
</div> |
|
<div class="tasksContainer"> |
|
@if (AgileSprint.AgileTaskModels.Count > 0) |
|
{ |
|
@foreach (var task in AgileSprint.AgileTaskModels.OrderBy(x=>x.OrderPriority)) |
|
{ |
|
<div class="taskContainer @task.Status.ToLower() @task.Task.ToLower()"> |
|
<div class="taskName">@task.Name</div> |
|
<div class="taskDetails"> |
|
<LayoutRowComponent> |
|
<LayoutColumnComponent> |
|
<div class="taskType"> |
|
<b>Type: </b>@task.Task.Replace("_", " ") |
|
</div> |
|
<div class="taskStatus"> |
|
<b>Status: </b>@task.Status.Replace("_", " ") |
|
</div> |
|
<div class="taskPriority"> |
|
<b>Priority: </b>@task.Priority |
|
</div> |
|
|
|
</LayoutColumnComponent> |
|
<LayoutColumnComponent> |
|
@if (task.Finished != null) |
|
{ |
|
<div class="taskFinished"> |
|
<b>Finished: </b>@task.Finished.Value.ToString("dd/MM/yyyy") |
|
</div> |
|
} |
|
<div class="taskCreated"> |
|
<b>Created: </b>@task.Created!.Value.ToString("dd/MM/yyyy") |
|
</div> |
|
</LayoutColumnComponent> |
|
</LayoutRowComponent> |
|
</div> |
|
<div class="taskDescription"> |
|
<b>Description: </b>@task.Description |
|
</div> |
|
<div class="taskNotes"> |
|
<b>Notes: </b>@task.Notes |
|
</div> |
|
</div> |
|
} |
|
} |
|
else |
|
{ |
|
<div>Add Tasks...</div> |
|
} |
|
</div> |
|
</div> |
|
|
|
<style> |
|
.sprintContainer { |
|
display: flex; |
|
flex-direction: column; |
|
gap: 12px; |
|
padding-top: 16px; |
|
} |
|
|
|
.sprintDescription { |
|
grid-area: description; |
|
} |
|
|
|
|
|
|
|
@@media only screen and (max-width: 1025px) { |
|
.sprintContainer { |
|
display: flex; |
|
flex-direction: column; |
|
gap: 6px; |
|
border: none; |
|
margin-top: 12px; |
|
box-shadow: none; |
|
padding: 8px; |
|
} |
|
|
|
.sprintStartDate { |
|
text-align: left; |
|
} |
|
|
|
.sprintEndDate { |
|
text-align: left; |
|
} |
|
} |
|
|
|
.tasksContainer { |
|
grid-area: tasks; |
|
display: flex; |
|
flex-direction: column; |
|
gap: 20px; |
|
padding: 25px; |
|
align-items: stretch; |
|
justify-content: stretch; |
|
justify-items: stretch; |
|
} |
|
|
|
.taskContainer { |
|
padding: 25px; |
|
border: 1px dashed rgba(0,0,0,0.6); |
|
box-shadow: 0px 2px 6px rgba(0,0,0,0.1); |
|
} |
|
|
|
|
|
.taskContainer.@StatusType.In_Progress.ToLower() { |
|
border-color: #030129; |
|
background-color: #2c3a4c; |
|
} |
|
|
|
.taskContainer.@StatusType.Todo.ToLower() { |
|
border-color: #2a2000; |
|
background-color: #ffbf0029; |
|
} |
|
|
|
.taskContainer.@StatusType.To_Test.ToLower() { |
|
border-color: #030129; |
|
background-color: #2c3a4c; |
|
} |
|
|
|
.taskContainer.@StatusType.Canceled.ToLower() { |
|
border-color: #290102; |
|
background-color: #4C2C33; |
|
} |
|
|
|
.taskContainer.@StatusType.Done.ToLower() { |
|
border-color: #042901; |
|
background-color: #2E4C2C; |
|
} |
|
|
|
|
|
.taskContainer.@TaskType.Bug.ToLower() { |
|
border-style: dotted; |
|
border-width: 8px; |
|
} |
|
|
|
.taskContainer.@TaskType.Document.ToLower() { |
|
border-style: dashed; |
|
border-width: 2px; |
|
} |
|
|
|
.taskName { |
|
font-weight: bold; |
|
grid-area: name; |
|
font-size: 1.2rem; |
|
} |
|
|
|
.taskDetails { |
|
font-size: 0.8rem; |
|
} |
|
|
|
.taskCreated { |
|
grid-area: created; |
|
} |
|
|
|
.taskFinished { |
|
grid-area: finished; |
|
} |
|
|
|
.taskStatus { |
|
grid-area: status; |
|
} |
|
|
|
.taskDescription { |
|
margin-top: 10px; |
|
grid-area: description; |
|
} |
|
|
|
.taskNotes { |
|
grid-area: notes; |
|
} |
|
|
|
|
|
@@media only screen and (max-width: 1025px) { |
|
.tasksContainer { |
|
padding: 0px; |
|
margin-top: 12px; |
|
padding-top: 12px; |
|
border-top: 4px solid rgba(0,0,0,0.4) |
|
} |
|
|
|
.taskContainer { |
|
padding: 2px; |
|
border: none; |
|
box-shadow: none; |
|
} |
|
|
|
|
|
.taskContainer.@StatusType.In_Progress.ToLower() { |
|
border-color: transparent; |
|
background-color: transparent; |
|
} |
|
|
|
.taskContainer.@StatusType.Todo.ToLower() { |
|
border-color: transparent; |
|
background-color: transparent; |
|
} |
|
|
|
.taskContainer.@StatusType.Canceled.ToLower() { |
|
border-color: transparent; |
|
background-color: transparent; |
|
} |
|
|
|
.taskContainer.@StatusType.Done.ToLower() { |
|
border-color: transparent; |
|
background-color: transparent; |
|
} |
|
} |
|
|
|
</style> |
|
|
|
@code { |
|
|
|
[Parameter] |
|
public AgileSprintModel AgileSprint { get; set; } = default!; |
|
|
|
} |