abstract
2 years ago
components
2 years ago
mixins
2 years ago
store
2 years ago
styles
2 years ago
constants.js
2 years ago
event-bus.js
2 years ago
functions.js
2 years ago
manager.js
2 years ago
manager.js
87 lines
| 1 | import './event-bus'; |
| 2 | import PaymentsPage from './components/PaymentsPage'; |
| 3 | import EntriesTable from './components/EntriesTable'; |
| 4 | import DetailsTableWithStore from './components/DetailsTableWithStore'; |
| 5 | import TablePagination from './components/TablePagination'; |
| 6 | import ChooseAction from './components/ChooseAction'; |
| 7 | import Constants from './constants'; |
| 8 | import ClearFiltersButton from './components/ClearFiltersButton'; |
| 9 | import FilterMixin from './mixins/FilterMixin'; |
| 10 | import GetColumnComponent from './mixins/GetColumnComponent'; |
| 11 | import BaseStore from './store/base-store'; |
| 12 | import TableSeedPlugin from './store/plugins/table-seed'; |
| 13 | import TableModulePlugin from './store/plugins/table-module'; |
| 14 | import SingleMetaBoxesPlugin from './store/plugins/single-meta-boxes'; |
| 15 | import NoticesPlugin from './store/plugins/NoticesPlugin'; |
| 16 | import PostBoxSkeleton from './components/PostBoxSkeleton'; |
| 17 | import PostBoxGrid from './components/PostBoxGrid'; |
| 18 | import PostBoxContainer from './components/PostBoxContainer'; |
| 19 | import PostBoxSimple from './components/PostBoxSimple'; |
| 20 | import EntriesList from './components/EntriesList'; |
| 21 | import * as ChooseColumn from './components/TableColumns/choose'; |
| 22 | import * as LinkTypeColumn from './components/TableColumns/link-type'; |
| 23 | import * as ActionsColumn from './components/TableColumns/actions'; |
| 24 | import ScopeStoreMixin from './mixins/ScopeStoreMixin'; |
| 25 | import EditTableSwitcher from './components/BoxActions/EditTableSwitcher'; |
| 26 | import AlertsList from './components/Alerts/AlertsList'; |
| 27 | import DashboardPanel from './components/VuiBoxes/DashboardPanel'; |
| 28 | import SideBarBoxes from './components/SideBarBoxes'; |
| 29 | import FormBuilderPage from './components/FormBuilderPage'; |
| 30 | import PageActionsPlugin from './store/plugins/PageActions'; |
| 31 | import MessagesPlugin from './store/plugins/MessagesPlugin'; |
| 32 | import OnUpdateEditableCellPlugin |
| 33 | from './store/plugins/OnUpdateEditableCellPlugin'; |
| 34 | import EditCollectorPlugin from './store/plugins/EditCollectorPlugin'; |
| 35 | import PortalVue from 'portal-vue'; |
| 36 | import { PortalTarget, Portal } from 'portal-vue'; |
| 37 | import ActionsWithFilters from './components/ActionsWithFilters'; |
| 38 | |
| 39 | Vue.use( Vuex ); |
| 40 | Vue.use( PortalVue ); |
| 41 | |
| 42 | window.JetFBComponents = { |
| 43 | ...window.JetFBComponents, |
| 44 | EntriesTable, |
| 45 | PaymentsPage, |
| 46 | DetailsTableWithStore, |
| 47 | TablePagination, |
| 48 | ChooseAction, |
| 49 | ClearFiltersButton, |
| 50 | PostBoxSkeleton, |
| 51 | PostBoxGrid, |
| 52 | PostBoxContainer, |
| 53 | PostBoxSimple, |
| 54 | EntriesList, |
| 55 | ChooseColumn, |
| 56 | ActionsColumn, |
| 57 | LinkTypeColumn, |
| 58 | EditTableSwitcher, |
| 59 | AlertsList, |
| 60 | DashboardPanel, |
| 61 | SideBarBoxes, |
| 62 | FormBuilderPage, |
| 63 | ActionsWithFilters, |
| 64 | PortalTarget, |
| 65 | Portal, |
| 66 | }; |
| 67 | |
| 68 | window.JetFBMixins = { |
| 69 | ...window.JetFBMixins, |
| 70 | FilterMixin, |
| 71 | GetColumnComponent, |
| 72 | ScopeStoreMixin, |
| 73 | }; |
| 74 | |
| 75 | window.JetFBStore = { |
| 76 | BaseStore, |
| 77 | TableSeedPlugin, |
| 78 | TableModulePlugin, |
| 79 | SingleMetaBoxesPlugin, |
| 80 | NoticesPlugin, |
| 81 | PageActionsPlugin, |
| 82 | MessagesPlugin, |
| 83 | OnUpdateEditableCellPlugin, |
| 84 | EditCollectorPlugin, |
| 85 | }; |
| 86 | |
| 87 | window.JetFBConst = Constants; |