Gisle Aune
4 years ago
5 changed files with 5215 additions and 3 deletions
-
5087svelte-ui/package-lock.json
-
6svelte-ui/src/components/GoalEntry.svelte
-
7svelte-ui/src/components/ParentEntry.svelte
-
112svelte-ui/src/components/ProgressNumbers.svelte
-
6svelte-ui/src/components/ProjectEntry.svelte
5087
svelte-ui/package-lock.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,112 @@ |
|||
<script lang="ts"> |
|||
import type { ProjectResult } from "../models/project"; |
|||
import type { GoalResult } from "../models/goal"; |
|||
|
|||
export let project: ProjectResult | undefined | null; |
|||
export let goal: GoalResult | undefined | null; |
|||
|
|||
let progressAmount: number = 0; |
|||
let progressTarget: number = 0; |
|||
let timeProgress: number | null = null; |
|||
|
|||
let boat: number | null = null; |
|||
let boatNegative = false; |
|||
let boatPositive = false; |
|||
let boatString: string | null = null; |
|||
|
|||
$: { |
|||
if (project != null) { |
|||
progressAmount = (project.tasks||[]).map(t => (t.active || t.statusTag === "to do" || t.statusTag === "on hold") |
|||
? Math.min(t.completedAmount, t.itemAmount) * (t.item.groupWeight || 1) |
|||
: t.itemAmount * (t.item.groupWeight || 1) |
|||
).reduce((n,m) => n+m, 0); |
|||
|
|||
progressTarget = Math.max((project.tasks||[]).map(t => t.itemAmount * (t.item.groupWeight || 1)).reduce((n,m) => n+m, 0), 1); |
|||
|
|||
if (project.endTime) { |
|||
const start = Date.parse(project.createdTime); |
|||
const end = Date.parse(project.endTime); |
|||
const now = Math.min(Date.now(), end); |
|||
|
|||
timeProgress = (now - start) / (end - start); |
|||
} else { |
|||
timeProgress = null; |
|||
} |
|||
} |
|||
|
|||
if (goal != null) { |
|||
const start = Date.parse(goal.startTime); |
|||
const end = Date.parse(goal.endTime); |
|||
const now = Math.min(Date.now(), end); |
|||
|
|||
progressAmount = goal.completedAmount; |
|||
progressTarget = goal.amount; |
|||
timeProgress = (now - start) / (end - start); |
|||
} |
|||
} |
|||
|
|||
$: { |
|||
if (timeProgress != null) { |
|||
const boatTarget = Math.ceil(timeProgress * progressTarget); |
|||
|
|||
boat = progressAmount - boatTarget; |
|||
console.log(progressTarget, boatTarget); |
|||
} else { |
|||
boat = null; |
|||
} |
|||
} |
|||
|
|||
$: { |
|||
if (boat != null) { |
|||
boatNegative = boat < 0; |
|||
boatPositive = boat > 0; |
|||
|
|||
boatString = Math.round(boat).toString(10); |
|||
if (boatPositive) { |
|||
boatString = '+' + boatString; |
|||
} |
|||
} |
|||
} |
|||
|
|||
$: { |
|||
console.log(boat); |
|||
} |
|||
</script> |
|||
|
|||
<div class="progress"> |
|||
<div class="amount">{progressAmount}</div> |
|||
<div class="slash">/</div> |
|||
<div class="target">{progressTarget}</div> |
|||
{#if boat} |
|||
<div class="boat" class:positive={boatPositive} class:negative={boatNegative}> |
|||
({boatString}) |
|||
</div> |
|||
{/if} |
|||
</div> |
|||
|
|||
<style> |
|||
div.progress { |
|||
padding: 0 0.25ch; |
|||
color: #555; |
|||
} |
|||
|
|||
div.progress > div { |
|||
display: inline-block; |
|||
} |
|||
|
|||
div.slash { |
|||
padding: 0 0.125ch; |
|||
color: #333; |
|||
} |
|||
|
|||
div.boat { |
|||
padding-left: 0.25ch; |
|||
} |
|||
|
|||
div.boat.negative { |
|||
color: #852a24; |
|||
} |
|||
div.boat.positive { |
|||
color: #484; |
|||
} |
|||
</style> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue