diff --git a/src/views/Admin/DashboardView.vue b/src/views/Admin/DashboardView.vue index 33be75f..bf643d7 100644 --- a/src/views/Admin/DashboardView.vue +++ b/src/views/Admin/DashboardView.vue @@ -6,6 +6,7 @@ import CardBox from "@/components/CardBox.vue"; import CardBoxWidget from "@/components/CardBoxWidget.vue"; import LayoutAuthenticated from "@/layouts/LayoutAuthenticated.vue"; import SectionTitleLine from "@/components/SectionTitleLine.vue"; +import GeneralTable from "@/components/GeneralTable.vue"; import { APIAdminDashboard } from "@/stores/api/admin"; const dashboardData = ref({}); @@ -20,6 +21,99 @@ onMounted(async () => { console.log("Failed to fetch admin data:", error); } }); + +const eventHeaders = [ + { + text: "Timestamp", + value: "timestamp", + width: 120, + }, + { + text: "IP Address", + value: "data.ip", + width: 120, + }, + { + text: "Game", + value: "data.model", + width: 120, + }, + { + text: "PCBID", + value: "data.pcbid", + width: 120, + }, + { + text: "Name", + value: "data.name", + width: 120, + }, + { + text: "Value", + value: "data.value", + width: 120, + }, +]; + +const transactionHeaders = [ + { + text: "Timestamp", + value: "timestamp", + width: 120, + }, + { + text: "PCBID", + value: "data.pcbid", + width: 120, + }, + { + text: "Delta", + value: "data.delta", + width: 120, + }, + { + text: "Remaining Balance", + value: "data.balance", + width: 120, + }, + { + text: "Reason", + value: "data.reason", + width: 120, + }, +]; + +function formatTransactions(events) { + var formattedItems = []; + for (var item of events) { + if (item.type == "paseli_transaction") { + if (item.timestamp) { + const date = new Date(item.timestamp * 1000); + item.timestamp = date.toLocaleString(); + } + + formattedItems.push(item); + } + } + + return formattedItems; +} + +function formatEvents(events) { + var formattedItems = []; + for (var item of events) { + if (item.type == "pcbevent") { + if (item.timestamp) { + const date = new Date(item.timestamp * 1000); + item.timestamp = date.toLocaleString(); + } + + formattedItems.push(item); + } + } + + return formattedItems; +}