Skip to content

Commit 6696dcb

Browse files
committed
feat: update headings to small size and add cost summary for BigQuery and bucket components
1 parent 676e4b3 commit 6696dcb

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

src/lib/components/AggregatedCostForApplications.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<GraphErrors errors={$costQuery.errors} />
4444
<div class="wrapper">
4545
<div class="heading">
46-
<Heading level="3">Applications cost</Heading>
46+
<Heading level="3" size="small">Applications cost</Heading>
4747

4848
<HelpText title="Aggregated workloads cost"
4949
>Aggregated cost for workloads. Current month is estimated.</HelpText

src/lib/components/AggregatedCostForJobs.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<GraphErrors errors={$costQuery.errors} />
4141
<div class="wrapper">
4242
<div class="heading">
43-
<Heading level="3">Jobs cost</Heading>
43+
<Heading level="3" size="small">Jobs cost</Heading>
4444

4545
<HelpText title="Aggregated jobs cost"
4646
>Aggregated cost for jobs. Current month is estimated.</HelpText

src/routes/team/[team]/[env]/bigquery/[bigquery]/+page.gql

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ query BigQueryDataset($environment: String!, $team: Slug!, $name: String!) {
1717
environment {
1818
name
1919
}
20+
cost {
21+
sum
22+
}
2023
workload {
2124
name
2225
__typename

src/routes/team/[team]/[env]/bigquery/[bigquery]/+page.svelte

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script lang="ts">
22
import GraphErrors from '$lib/GraphErrors.svelte';
33
import Time from '$lib/Time.svelte';
4+
import { euroValueFormatter } from '$lib/chart/cost_transformer';
45
import IconLabel from '$lib/components/IconLabel.svelte';
56
import TooltipAlignHack from '$lib/components/TooltipAlignHack.svelte';
67
import WorkloadLink from '$lib/components/WorkloadLink.svelte';
@@ -99,7 +100,7 @@
99100
</div>
100101
<div class="sidebar">
101102
<div>
102-
<Heading level="3">Owner</Heading>
103+
<Heading level="3" size="small">Owner</Heading>
103104
{#if bq.workload}
104105
<WorkloadLink workload={bq.workload} />
105106
{:else}
@@ -109,6 +110,12 @@
109110
</div>
110111
{/if}
111112
</div>
113+
<div>
114+
<Heading level="3" size="small">Cost last 30 days</Heading>
115+
<BodyShort>
116+
{bq.cost.sum ? euroValueFormatter(bq.cost.sum) : 'No cost data available'}
117+
</BodyShort>
118+
</div>
112119
</div>
113120
</div>
114121
{/if}

src/routes/team/[team]/[env]/bucket/[bucket]/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
</div>
9090
<div class="sidebar">
9191
<div>
92-
<Heading level="3">Owner</Heading>
92+
<Heading level="3" size="small">Owner</Heading>
9393
{#if bucket.workload}
9494
<WorkloadLink workload={bucket.workload} />
9595
{:else}

0 commit comments

Comments
 (0)