73 lines
1.3 KiB
TypeScript
73 lines
1.3 KiB
TypeScript
import { addAPIProvider } from "@iconify/vue"
|
|
import { createPinia } from "pinia"
|
|
import { createRouter, createWebHistory } from "vue-router"
|
|
|
|
import {
|
|
ArcElement,
|
|
BarElement,
|
|
BarController,
|
|
CategoryScale,
|
|
Chart as ChartJS,
|
|
Colors,
|
|
Legend,
|
|
LinearScale,
|
|
LineController,
|
|
Title,
|
|
Tooltip,
|
|
LineElement,
|
|
PointElement,
|
|
} from "chart.js"
|
|
|
|
import { STORAGE_KEY } from "utils/constants"
|
|
import storage from "utils/storage"
|
|
|
|
import App from "./App.vue"
|
|
import { admins, ojs } from "./routes"
|
|
|
|
import { toggleLogin } from "./shared/composables/modal"
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(),
|
|
routes: [ojs, admins],
|
|
})
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
if (to.matched.some((record) => record.meta.requiresAuth)) {
|
|
if (!storage.get(STORAGE_KEY.AUTHED)) {
|
|
toggleLogin(true)
|
|
next("/")
|
|
} else {
|
|
next()
|
|
}
|
|
} else {
|
|
next()
|
|
}
|
|
})
|
|
|
|
ChartJS.register(
|
|
CategoryScale,
|
|
LinearScale,
|
|
BarElement,
|
|
BarController,
|
|
ArcElement,
|
|
LineElement,
|
|
LineController,
|
|
PointElement,
|
|
Colors,
|
|
Title,
|
|
Tooltip,
|
|
Legend,
|
|
)
|
|
|
|
const pinia = createPinia()
|
|
const app = createApp(App)
|
|
app.use(router)
|
|
app.use(pinia)
|
|
app.mount("#app")
|
|
|
|
if (!!import.meta.env.PUBLIC_ICONIFY_URL) {
|
|
addAPIProvider("", {
|
|
resources: [import.meta.env.PUBLIC_ICONIFY_URL],
|
|
})
|
|
}
|