import { createApp } from 'vue'; import { createPinia } from 'pinia'; import { createI18n } from 'vue-i18n'; import Framework7 from 'framework7/lite'; import Framework7Dialog from 'framework7/components/dialog'; import Framework7Popup from 'framework7/components/popup'; import Framework7LoginScreen from 'framework7/components/login-screen'; import Framework7Popover from 'framework7/components/popover'; import Framework7Actions from 'framework7/components/actions'; import Framework7Sheet from 'framework7/components/sheet'; import Framework7Toast from 'framework7/components/toast'; import Framework7Preloader from 'framework7/components/preloader'; import Framework7Progressbar from 'framework7/components/progressbar'; import Framework7Sortable from 'framework7/components/sortable'; import Framework7Swipeout from 'framework7/components/swipeout'; import Framework7Accordion from 'framework7/components/accordion'; import Framework7Card from 'framework7/components/card'; import Framework7Chip from 'framework7/components/chip'; import Framework7Form from 'framework7/components/form'; import Framework7Input from 'framework7/components/input'; import Framework7Checkbox from 'framework7/components/checkbox'; import Framework7Radio from 'framework7/components/radio'; import Framework7Toggle from 'framework7/components/toggle'; import Framework7Range from 'framework7/components/range'; import Framework7SmartSelect from 'framework7/components/smart-select'; import Framework7Grid from 'framework7/components/grid'; import Framework7Picker from 'framework7/components/picker'; import Framework7InfiniteScroll from 'framework7/components/infinite-scroll'; import Framework7PullToRefresh from 'framework7/components/pull-to-refresh'; import Framework7Searchbar from 'framework7/components/searchbar'; import Framework7Tooltip from 'framework7/components/tooltip'; import Framework7Skeleton from 'framework7/components/skeleton'; import Framework7Treeview from 'framework7/components/treeview'; import Framework7Typography from 'framework7/components/typography'; import Framework7Vue, { registerComponents } from 'framework7-vue/bundle'; import 'framework7/css'; import 'framework7/components/dialog/css'; import 'framework7/components/popup/css'; import 'framework7/components/login-screen/css'; import 'framework7/components/popover/css'; import 'framework7/components/actions/css'; import 'framework7/components/sheet/css'; import 'framework7/components/toast/css'; import 'framework7/components/preloader/css'; import 'framework7/components/progressbar/css'; import 'framework7/components/sortable/css'; import 'framework7/components/swipeout/css'; import 'framework7/components/accordion/css'; import 'framework7/components/card/css'; import 'framework7/components/chip/css'; import 'framework7/components/form/css'; import 'framework7/components/input/css'; import 'framework7/components/checkbox/css'; import 'framework7/components/radio/css'; import 'framework7/components/toggle/css'; import 'framework7/components/range/css'; import 'framework7/components/smart-select/css'; import 'framework7/components/grid/css'; import 'framework7/components/picker/css'; import 'framework7/components/infinite-scroll/css'; import 'framework7/components/pull-to-refresh/css'; import 'framework7/components/searchbar/css'; import 'framework7/components/tooltip/css'; import 'framework7/components/skeleton/css'; import 'framework7/components/treeview/css'; import 'framework7/components/typography/css'; import 'framework7-icons'; import 'line-awesome/dist/line-awesome/css/line-awesome.css'; import VueDatePicker from '@vuepic/vue-datepicker'; import '@vuepic/vue-datepicker/dist/main.css'; import { getVersion, getBuildTime } from '@/lib/version.js'; import userstate from '@/lib/userstate.js'; import { getI18nOptions, translateIf, i18nFunctions } from '@/lib/i18n.js'; import { showAlert, showConfirm, showToast, showLoading, hideLoading, routeBackOnError } from '@/lib/ui.mobile.js'; import PinCodeInput from '@/components/common/PinCodeInput.vue'; import ItemIcon from '@/components/mobile/ItemIcon.vue'; import PieChart from '@/components/mobile/PieChart.vue'; import PinCodeInputSheet from '@/components/mobile/PinCodeInputSheet.vue'; import PasswordInputSheet from '@/components/mobile/PasswordInputSheet.vue'; import PasscodeInputSheet from '@/components/mobile/PasscodeInputSheet.vue'; import DateTimeSelectionSheet from '@/components/mobile/DateTimeSelectionSheet.vue'; import DateRangeSelectionSheet from '@/components/mobile/DateRangeSelectionSheet.vue'; import ListItemSelectionSheet from '@/components/mobile/ListItemSelectionSheet.vue'; import TwoColumnListItemSelectionSheet from '@/components/mobile/TwoColumnListItemSelectionSheet.vue'; import TreeViewSelectionSheet from '@/components/mobile/TreeViewSelectionSheet.vue'; import IconSelectionSheet from '@/components/mobile/IconSelectionSheet.vue'; import ColorSelectionSheet from '@/components/mobile/ColorSelectionSheet.vue'; import InformationSheet from '@/components/mobile/InformationSheet.vue'; import NumberPadSheet from '@/components/mobile/NumberPadSheet.vue'; import MapSheet from '@/components/mobile/MapSheet.vue'; import TransactionTagSelectionSheet from '@/components/mobile/TransactionTagSelectionSheet.vue'; import TextareaAutoSize from '@/directives/mobile/textareaAutoSize.js'; import '@/styles/mobile/global.css'; import '@/styles/mobile/font-size-default.css'; import '@/styles/mobile/font-size-small.css'; import '@/styles/mobile/font-size-large.css'; import '@/styles/mobile/font-size-x-large.css'; import '@/styles/mobile/font-size-xx-large.css'; import '@/styles/mobile/font-size-xxx-large.css'; import '@/styles/mobile/font-size-xxxx-large.css'; import App from '@/MobileApp.vue'; Framework7.use([ Framework7Dialog, Framework7Popup, Framework7LoginScreen, Framework7Popover, Framework7Actions, Framework7Sheet, Framework7Toast, Framework7Preloader, Framework7Progressbar, Framework7Sortable, Framework7Swipeout, Framework7Accordion, Framework7Card, Framework7Chip, Framework7Form, Framework7Input, Framework7Checkbox, Framework7Radio, Framework7Toggle, Framework7Range, Framework7SmartSelect, Framework7Grid, Framework7Picker, Framework7InfiniteScroll, Framework7PullToRefresh, Framework7Searchbar, Framework7Tooltip, Framework7Skeleton, Framework7Treeview, Framework7Typography, Framework7Vue ]); const app = createApp(App); const pinia = createPinia(); const i18n = createI18n(getI18nOptions()); registerComponents(app); app.use(pinia); app.use(i18n); app.component('VueDatePicker', VueDatePicker); app.component('PinCodeInput', PinCodeInput); app.component('ItemIcon', ItemIcon); app.component('PieChart', PieChart); app.component('PinCodeInputSheet', PinCodeInputSheet); app.component('PasswordInputSheet', PasswordInputSheet); app.component('PasscodeInputSheet', PasscodeInputSheet); app.component('DateTimeSelectionSheet', DateTimeSelectionSheet); app.component('DateRangeSelectionSheet', DateRangeSelectionSheet); app.component('ListItemSelectionSheet', ListItemSelectionSheet); app.component('TwoColumnListItemSelectionSheet', TwoColumnListItemSelectionSheet); app.component('TreeViewSelectionSheet', TreeViewSelectionSheet); app.component('IconSelectionSheet', IconSelectionSheet); app.component('ColorSelectionSheet', ColorSelectionSheet); app.component('InformationSheet', InformationSheet); app.component('NumberPadSheet', NumberPadSheet); app.component('MapSheet', MapSheet); app.component('TransactionTagSelectionSheet', TransactionTagSelectionSheet); app.directive('TextareaAutoSize', TextareaAutoSize); app.config.globalProperties.$version = getVersion(); app.config.globalProperties.$buildTime = getBuildTime(); app.config.globalProperties.$locale = i18nFunctions(i18n.global); app.config.globalProperties.$tIf = (text, isTranslate) => translateIf(text, isTranslate, i18n.global.t); app.config.globalProperties.$alert = (message, confirmCallback) => showAlert(message, confirmCallback, i18n.global.t); app.config.globalProperties.$confirm = (message, confirmCallback, cancelCallback) => showConfirm(message, confirmCallback, cancelCallback, i18n.global.t); app.config.globalProperties.$toast = (message, timeout) => showToast(message, timeout, i18n.global.t); app.config.globalProperties.$showLoading = showLoading; app.config.globalProperties.$hideLoading = hideLoading; app.config.globalProperties.$routeBackOnError = routeBackOnError; app.config.globalProperties.$user = userstate; app.mount('#app');