mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
* add dark mode in dashboard stats & chart * fix indentation on dashboard chart --------- Co-authored-by: yogesh-gohil <yogeshgohil1611@gmail.com>
197 lines
5.3 KiB
Vue
197 lines
5.3 KiB
Vue
<template>
|
|
<div>
|
|
<div
|
|
v-if="dashboardStore.isDashboardDataLoaded"
|
|
class="
|
|
grid
|
|
grid-cols-10
|
|
mt-8
|
|
bg-white
|
|
rounded shadow
|
|
dark:text-white
|
|
dark:backdrop-blur-xl
|
|
dark:shadow-glass
|
|
dark:border
|
|
dark:bg-opacity-70
|
|
dark:border-white/10
|
|
dark:bg-gray-800
|
|
relative
|
|
"
|
|
>
|
|
<BaseDarkHighlight />
|
|
<!-- Chart -->
|
|
<div
|
|
class="
|
|
grid grid-cols-1
|
|
col-span-10
|
|
px-4
|
|
py-5
|
|
lg:col-span-7
|
|
xl:col-span-8
|
|
sm:p-6
|
|
"
|
|
>
|
|
<div class="flex justify-between mt-1 mb-4 flex-col md:flex-row">
|
|
<h6 class="flex items-center sw-section-title h-10">
|
|
<BaseIcon name="ChartSquareBarIcon" class="text-primary-400 mr-1" />
|
|
{{ $t('dashboard.monthly_chart.title') }}
|
|
</h6>
|
|
|
|
<div class="w-full my-2 md:m-0 md:w-40 h-10">
|
|
<BaseMultiselect
|
|
v-model="selectedYear"
|
|
:options="years"
|
|
:allow-empty="false"
|
|
:show-labels="false"
|
|
:placeholder="$t('dashboard.select_year')"
|
|
:can-deselect="false"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<LineChart
|
|
:invoices="dashboardStore.chartData.invoiceTotals"
|
|
:expenses="dashboardStore.chartData.expenseTotals"
|
|
:receipts="dashboardStore.chartData.receiptTotals"
|
|
:income="dashboardStore.chartData.netIncomeTotals"
|
|
:labels="dashboardStore.chartData.months"
|
|
class="sm:w-full"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Chart Labels -->
|
|
<div
|
|
class="
|
|
grid grid-cols-3
|
|
col-span-10
|
|
text-center
|
|
border-t border-l border-gray-200 border-solid
|
|
lg:border-t-0 lg:text-right lg:col-span-3
|
|
xl:col-span-2
|
|
lg:grid-cols-1
|
|
dark:border-white/10
|
|
"
|
|
>
|
|
<div class="p-6">
|
|
<span class="text-xs leading-5 lg:text-sm">
|
|
{{ $t('dashboard.chart_info.total_sales') }}
|
|
</span>
|
|
<br />
|
|
<span class="block mt-1 text-xl font-semibold leading-8 lg:text-2xl">
|
|
<BaseFormatMoney
|
|
:amount="dashboardStore.totalSales"
|
|
:currency="companyStore.selectedCompanyCurrency"
|
|
/>
|
|
</span>
|
|
</div>
|
|
<div class="p-6">
|
|
<span class="text-xs leading-5 lg:text-sm">
|
|
{{ $t('dashboard.chart_info.total_receipts') }}
|
|
</span>
|
|
<br />
|
|
<span
|
|
class="
|
|
block
|
|
mt-1
|
|
text-xl
|
|
font-semibold
|
|
leading-8
|
|
lg:text-2xl
|
|
text-green-400
|
|
"
|
|
>
|
|
<BaseFormatMoney
|
|
:amount="dashboardStore.totalReceipts"
|
|
:currency="companyStore.selectedCompanyCurrency"
|
|
/>
|
|
</span>
|
|
</div>
|
|
<div class="p-6">
|
|
<span class="text-xs leading-5 lg:text-sm">
|
|
{{ $t('dashboard.chart_info.total_expense') }}
|
|
</span>
|
|
<br />
|
|
<span
|
|
class="block mt-1 text-xl font-semibold leading-8 lg:text-2xl text-red-400"
|
|
>
|
|
<BaseFormatMoney
|
|
:amount="dashboardStore.totalExpenses"
|
|
:currency="companyStore.selectedCompanyCurrency"
|
|
/>
|
|
</span>
|
|
</div>
|
|
<div
|
|
class="
|
|
col-span-3
|
|
p-6
|
|
border-t
|
|
border-gray-200 border-solid
|
|
lg:col-span-1
|
|
dark:border-white/10
|
|
"
|
|
>
|
|
<span class="text-xs leading-5 lg:text-sm">
|
|
{{ $t('dashboard.chart_info.net_income') }}
|
|
</span>
|
|
<br />
|
|
<span
|
|
class="
|
|
block
|
|
mt-1
|
|
text-xl
|
|
font-semibold
|
|
leading-8
|
|
lg:text-2xl
|
|
text-primary-500 dark:text-primary-400
|
|
"
|
|
>
|
|
<BaseFormatMoney
|
|
:amount="dashboardStore.totalNetIncome"
|
|
:currency="companyStore.selectedCompanyCurrency"
|
|
/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<ChartPlaceholder v-else />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, watch, inject } from 'vue'
|
|
import { useDashboardStore } from '@/scripts/admin/stores/dashboard'
|
|
import { useCompanyStore } from '@/scripts/admin/stores/company'
|
|
import LineChart from '@/scripts/admin/components/charts/LineChart.vue'
|
|
import ChartPlaceholder from './DashboardChartPlaceholder.vue'
|
|
import abilities from '@/scripts/admin/stub/abilities'
|
|
import { useUserStore } from '@/scripts/admin/stores/user'
|
|
|
|
const dashboardStore = useDashboardStore()
|
|
const companyStore = useCompanyStore()
|
|
|
|
const utils = inject('utils')
|
|
const userStore = useUserStore()
|
|
const years = ref(['This year', 'Previous year'])
|
|
const selectedYear = ref('This year')
|
|
|
|
watch(
|
|
selectedYear,
|
|
(val) => {
|
|
if (val === 'Previous year') {
|
|
let params = { previous_year: true }
|
|
loadData(params)
|
|
} else {
|
|
loadData()
|
|
}
|
|
},
|
|
{ immediate: true }
|
|
)
|
|
|
|
async function loadData(params) {
|
|
if (userStore.hasAbilities(abilities.DASHBOARD)) {
|
|
await dashboardStore.loadData(params)
|
|
}
|
|
}
|
|
</script>
|