Skip to content

Commit

Permalink
feat: minor ui modernization
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwep committed Jan 28, 2024
1 parent bc9d692 commit 0990670
Show file tree
Hide file tree
Showing 15 changed files with 42 additions and 28 deletions.
2 changes: 1 addition & 1 deletion src/app/components/base/button/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const classes = computed(() => [
cursor: pointer;
background: v-bind('theme.color.base');
color: v-bind('theme.text.base');
border-radius: var(--border-radius-m);
border-radius: var(--border-radius-full);
transition: all var(--transition-s);
padding: 10px;
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/base/form/Form.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<form :class="$style.fields" action="#" @submit="submit">
<slot />
<Button :class="$style.btn" :text="submitLabel" color="success" type="submit" />
<Button :class="$style.btn" :text="submitLabel" type="submit" />
</form>
</template>

Expand Down
1 change: 1 addition & 0 deletions src/app/components/charts/line-chart/LineChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const options = computed(
left: '3%',
right: '4%',
bottom: '3%',
top: '35px',
containLabel: true
},
xAxis: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ const element = computed(() => (props.to ? Link : 'div'));
.summaryPanel {
display: flex;
justify-content: space-between;
gap: 2px;
padding: 30px;
width: 100%;
height: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/dashboard/summary/Summary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:import="() => import('./widgets/charts/DevelopmentChart.vue')"
/>

<TotalsSummaryTable :title="t('page.dashboard.summary')" :income="income" :expenses="expenses" />
<TotalsSummaryTable :income="income" :expenses="expenses" />
<GroupsSummaryTable :title="t('page.dashboard.income')" :groups="state.income" />
<GroupsSummaryTable :title="t('page.dashboard.expenses')" :groups="state.expenses" />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:key="month"
:class="[$style.bold, { [$style.currentMonth]: isCurrentMonth(index) }]"
>
{{ month }}
<span>{{ month }}</span>
</span>
<span :class="$style.bold">{{ t('shared.total') }}</span>
<span :class="$style.bold">{{ t('shared.average') }}</span>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div :class="$style.summaryTable">
<h1 :class="$style.title">{{ title }}</h1>
<h1 v-if="title" :class="$style.title">{{ title }}</h1>

<div :class="$style.table">
<slot />
Expand All @@ -10,7 +10,7 @@

<script lang="ts" setup>
defineProps<{
title: string;
title?: string;
}>();
</script>

Expand All @@ -29,8 +29,8 @@ defineProps<{
}
.table {
padding: 10px;
border: 2px solid var(--app-border);
padding: 8px;
background: var(--c-dimmed-light);
border-radius: var(--border-radius-xxl);
overflow: auto;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<template>
<SummaryTable :title="title">
<SummaryTable>
<div :class="$style.table">
<!-- Header -->
<span />
<span
v-for="(month, index) of months"
:key="month"
:class="[$style.bold, { [$style.currentMonth]: isCurrentMonth(index) }]"
>{{ month }}</span
>
<span>{{ month }}</span>
</span>
<span :class="$style.bold">{{ t('shared.total') }}</span>
<span :class="$style.bold">{{ t('shared.average') }}</span>

Expand Down Expand Up @@ -75,7 +76,6 @@ const props = withDefaults(
defineProps<{
income?: number[];
expenses?: number[];
title: string;
}>(),
{
income: () => [],
Expand Down
16 changes: 14 additions & 2 deletions src/app/pages/dashboard/summary/widgets/tables/_shared.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,20 @@
color: var(--theme-text-muted);
}

.currentMonth {
color: var(--c-primary-pure);
.currentMonth > span {
color: var(--c-text-light);
display: inline-block;
position: relative;
z-index: 0;

&::before {
content: '';
position: absolute;
inset: -2px -6px;
border-radius: 100px;
background: var(--c-primary);
z-index: -1;
}
}

.current {
Expand Down
10 changes: 5 additions & 5 deletions src/app/pages/shared/BudgetGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

<!-- Footer -->
<span />
<Button icon="plus" textual color="success" @click="addBudget(group.id)" />
<Button icon="plus" textual @click="addBudget(group.id)" />
<span style="grid-column: 3 / 16" />
<Currency :class="[$style.meta, $style.bold]" :value="totalAmount" />
<Currency :class="[$style.meta, $style.bold]" :value="averageAmount" />
Expand Down Expand Up @@ -200,15 +200,15 @@ const performAction = (action: CellMenuActionId, budgetId: string, month: number
}
&.start {
border-top-left-radius: var(--border-radius-m);
border-bottom-left-radius: var(--border-radius-m);
border-top-left-radius: var(--border-radius-l);
border-bottom-left-radius: var(--border-radius-l);
padding-left: 8px;
cursor: text;
}
&.end {
border-top-right-radius: var(--border-radius-m);
border-bottom-right-radius: var(--border-radius-m);
border-top-right-radius: var(--border-radius-l);
border-bottom-right-radius: var(--border-radius-l);
padding-right: 8px;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/shared/Pane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ useScrollShadow(header, content, 'var(--app-scroll-box-shadow)');
.title {
display: flex;
align-items: end;
align-items: center;
gap: 8px;
font-size: var(--font-size-s);
font-weight: var(--font-weight-l);
Expand Down
5 changes: 2 additions & 3 deletions src/i18n/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
},
"info": {
"about": "Über Ocular",
"github": "Schauen dir sich dieses Projekt auf {link} an!",
"madeWithLove": "Entwickelt mit ❤️von Simon",
"github": "Schauen dir dieses Projekt auf {link} an!",
"madeWithLove": "Entwickelt mit ❤️ von Simon R.",
"meta": "{version} / {date} / {sha}"
},
"currency": {
Expand Down Expand Up @@ -117,7 +117,6 @@
"tables": "Tabellen",
"income": "Einnahmen",
"expenses": "Ausgaben",
"summary": "Zusammenfassung",
"endingBalance": "Endsaldo",
"header": "Jährliches Budget für {year}",
"remainingBalance": "Verbleibendes Netto bis {year}",
Expand Down
1 change: 0 additions & 1 deletion src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@
"tables": "Tables",
"income": "Income",
"expenses": "Expenses",
"summary": "Summary",
"endingBalance": "Ending Balance",
"header": "Annual budget for {year}",
"remainingBalance": "Remaining Balance until {year}",
Expand Down
6 changes: 4 additions & 2 deletions src/styles/themes/dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
--c-text-light-muted: #d2d2da;

--c-dimmed: #708dab;
--c-dimmed-light: #1b1d27;
--c-dimmed-hover: #5d758f;
--c-dimmed-text: var(--c-text-light);
--c-dimmed-text-hover: var(--c-dimmed-text);
Expand Down Expand Up @@ -114,6 +115,7 @@
--border-radius-xl: 8px;
--border-radius-xxl: 16px;
--border-radius-xxxl: 24px;
--border-radius-full: 1000px;

--input-field-transition: var(--transition-s);
--input-field-font-size: var(--font-size-xs);
Expand Down Expand Up @@ -147,9 +149,9 @@
--grid-background-even-hover: #1b1d26;
--grid-background-even-active: #2a2d3a;
--grid-border-color: #131316;
--grid-border-radius: var(--border-radius-m);
--grid-border-radius: var(--border-radius-l);

--grid-header-background: #1f2733;
--grid-header-background: #394480;
--grid-header-text: #dfe2e8;

--tooltip-backdrop: var(--context-menu-backdrop);
Expand Down
6 changes: 4 additions & 2 deletions src/styles/themes/light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
--c-text-light-muted: #d2d2da;

--c-dimmed: #a3aab0;
--c-dimmed-light: #f4f7f9;
--c-dimmed-hover: #8f979d;
--c-dimmed-text: var(--c-text-light);
--c-dimmed-text-hover: var(--c-dimmed-text);
Expand Down Expand Up @@ -114,6 +115,7 @@
--border-radius-xl: 8px;
--border-radius-xxl: 16px;
--border-radius-xxxl: 24px;
--border-radius-full: 1000px;

--input-field-transition: var(--transition-s);
--input-field-font-size: var(--font-size-xs);
Expand Down Expand Up @@ -147,9 +149,9 @@
--grid-background-even-hover: #f5f5f7;
--grid-background-even-active: #fafafa;
--grid-border-color: #e4e5e6;
--grid-border-radius: var(--border-radius-m);
--grid-border-radius: var(--border-radius-l);

--grid-header-background: #272d46;
--grid-header-background: #1b1e2a;
--grid-header-text: #dfe2e8;

--tooltip-backdrop: var(--context-menu-backdrop);
Expand Down

0 comments on commit 0990670

Please sign in to comment.