-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathmain.ts
107 lines (85 loc) · 2.61 KB
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
* Nextcloud Cookbook app
* Vue frontend entry file
* ---------------------------
* @license AGPL3 or later
*/
/// <reference types="@nextcloud/typings" />
// Markdown
import VueShowdown from 'vue-showdown';
import Vue from 'vue';
import * as ModalDialogs from 'vue-modal-dialogs';
import { linkTo } from '@nextcloud/router';
import helpers from './js/helper';
import setupLogging from './js/logging';
import router from './router';
import { useStore } from './store';
import AppMain from './components/AppMain.vue';
declare global {
interface Window {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
OC:
| Nextcloud.v16.OC
| Nextcloud.v17.OC
| Nextcloud.v18.OC
| Nextcloud.v19.OC
| Nextcloud.v20.OC;
n: string;
t: string;
escapeHTML(text: string): string;
}
}
declare module 'vue/types/vue' {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export interface VueConstructor<V extends Vue = Vue> {
$log: {
debug(...args: (string | object)[]): void;
info(...args: (string | object)[]): void;
warn(...args: (string | object)[]): void;
error(...args: (string | object)[]): void;
fatal(...args: (string | object)[]): void;
};
}
}
const isDevServer = process.env.WEBPACK_DEV_SERVER;
// eslint-disable-next-line camelcase,no-undef
if (isDevServer || false) {
// eslint-disable-next-line camelcase,no-undef
__webpack_public_path__ = 'http://127.0.0.1:3000/apps/cookbook/js/';
}
// eslint-disable-next-line camelcase,no-undef
__webpack_public_path__ = `${linkTo('cookbook', 'js')}/`;
// Fetch Nextcloud nonce identifier for dynamic script loading
// eslint-disable-next-line camelcase,no-undef
__webpack_nonce__ = btoa(window.OC.requestToken);
helpers.useRouter(router);
// A simple function to sanitize HTML tags
// eslint-disable-next-line no-param-reassign
window.escapeHTML = helpers.escapeHTML;
// Also make the injections available in Vue components
Vue.prototype.$window = window;
Vue.prototype.OC = window.OC;
// Markdown for Vue
Vue.use(VueShowdown, {
// set default flavor for Markdown
flavor: 'vanilla',
});
// TODO: Equivalent library for Vue3 when we make that transition:
// https://github.com/rlemaigre/vue3-promise-dialog
Vue.use(ModalDialogs);
setupLogging(Vue);
const store = useStore();
store.dispatch('refreshConfig');
// Pass translation engine to Vue
Vue.prototype.t = window.t;
Vue.prototype.n = window.n;
// Start the app once document is done loading
Vue.$log.info('Main is done. Creating App.');
const App = Vue.extend(AppMain);
new App({
store,
router,
beforeCreate() {
this.$store.commit('initializeStore');
},
}).$mount('#content');