mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
83 lines
3.2 KiB
JavaScript
Vendored
83 lines
3.2 KiB
JavaScript
Vendored
/*
|
|
* dashboard.js
|
|
* Copyright (c) 2020 james@firefly-iii.org
|
|
*
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import Dashboard from "../components/dashboard/Dashboard";
|
|
import TopBoxes from "../components/dashboard/TopBoxes";
|
|
import MainAccount from "../components/dashboard/MainAccount";
|
|
import MainAccountList from "../components/dashboard/MainAccountList";
|
|
import MainBillsList from "../components/dashboard/MainBillsList";
|
|
import MainBudgetList from "../components/dashboard/MainBudgetList";
|
|
import MainCreditList from "../components/dashboard/MainCreditList";
|
|
import MainDebitList from "../components/dashboard/MainDebitList";
|
|
import MainPiggyList from "../components/dashboard/MainPiggyList";
|
|
import TransactionListLarge from "../components/transactions/TransactionListLarge";
|
|
import TransactionListMedium from "../components/transactions/TransactionListMedium";
|
|
import TransactionListSmall from "../components/transactions/TransactionListSmall";
|
|
import DatePicker from 'v-calendar/lib/components/date-picker.umd'
|
|
import Calendar from "../components/dashboard/Calendar";
|
|
import MainCategoryList from "../components/dashboard/MainCategoryList";
|
|
/**
|
|
* First we will load Axios via bootstrap.js
|
|
* jquery and bootstrap-sass preloaded in app.js
|
|
* vue, uiv and vuei18n are in app_vue.js
|
|
*/
|
|
|
|
require('../bootstrap');
|
|
require('chart.js');
|
|
Vue.config.devtools = false;
|
|
|
|
Vue.component('transaction-list-large', TransactionListLarge);
|
|
Vue.component('transaction-list-medium', TransactionListMedium);
|
|
Vue.component('transaction-list-small', TransactionListSmall);
|
|
|
|
// components as an example
|
|
Vue.component('date-picker', DatePicker)
|
|
Vue.component('dashboard', Dashboard);
|
|
Vue.component('top-boxes', TopBoxes);
|
|
Vue.component('main-account', MainAccount);
|
|
Vue.component('main-account-list', MainAccountList);
|
|
Vue.component('main-bills-list', MainBillsList);
|
|
Vue.component('main-budget-list', MainBudgetList);
|
|
Vue.component('main-category-list', MainCategoryList);
|
|
Vue.component('main-debit-list', MainDebitList);
|
|
Vue.component('main-credit-list', MainCreditList);
|
|
Vue.component('main-piggy-list', MainPiggyList);
|
|
|
|
// i18n
|
|
let i18n = require('../i18n');
|
|
|
|
|
|
let props = {};
|
|
|
|
new Vue({
|
|
i18n,
|
|
el: "#dashboard",
|
|
render: (createElement) => {
|
|
return createElement(Dashboard, {props: props});
|
|
},
|
|
});
|
|
|
|
new Vue({
|
|
i18n,
|
|
el: "#calendar",
|
|
render: (createElement) => {
|
|
return createElement(Calendar, {props: props});
|
|
},
|
|
}); |