refactot: remove GlobalMixin
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/877/head
parent
449e36e9a1
commit
2c18198c37
|
@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
- **Breaking**: Nextcloud 26+ and PHP 8 are now required.
|
- **Breaking**: Nextcloud 26+ and PHP 8 are now required.
|
||||||
|
- Significant improvements to code quality and maintainability.
|
||||||
|
|
||||||
## [v5.5.0] - 2023-10-06
|
## [v5.5.0] - 2023-10-06
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,19 @@
|
||||||
// Library imports
|
// Library imports
|
||||||
import 'reflect-metadata';
|
import 'reflect-metadata';
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
|
|
||||||
import { generateFilePath } from '@nextcloud/router';
|
import { generateFilePath } from '@nextcloud/router';
|
||||||
import { getRequestToken } from '@nextcloud/auth';
|
import { getRequestToken } from '@nextcloud/auth';
|
||||||
|
import { translate, translatePlural } from '@nextcloud/l10n';
|
||||||
|
|
||||||
// Global components
|
// Global components
|
||||||
import XImg from './components/frame/XImg.vue';
|
import XImg from './components/frame/XImg.vue';
|
||||||
import XLoadingIcon from './components/XLoadingIcon.vue';
|
import XLoadingIcon from './components/XLoadingIcon.vue';
|
||||||
import GlobalMixin from './mixins/GlobalMixin';
|
|
||||||
import VueVirtualScroller from 'vue-virtual-scroller';
|
import VueVirtualScroller from 'vue-virtual-scroller';
|
||||||
|
|
||||||
// Locals
|
// Locals
|
||||||
import router from './router';
|
import router from './router';
|
||||||
|
import { c, initState } from './services/utils';
|
||||||
|
|
||||||
// CSS for components
|
// CSS for components
|
||||||
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css';
|
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css';
|
||||||
|
@ -59,7 +61,13 @@ if ('virtualKeyboard' in navigator) {
|
||||||
(<any>navigator.virtualKeyboard).overlaysContent = true;
|
(<any>navigator.virtualKeyboard).overlaysContent = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Vue.mixin(GlobalMixin as any);
|
// Register global components and plugins
|
||||||
Vue.use(VueVirtualScroller);
|
Vue.use(VueVirtualScroller);
|
||||||
Vue.component('XImg', XImg);
|
Vue.component('XImg', XImg);
|
||||||
Vue.component('XLoadingIcon', XLoadingIcon);
|
Vue.component('XLoadingIcon', XLoadingIcon);
|
||||||
|
|
||||||
|
// Register global constants and functions
|
||||||
|
Vue.prototype.c = c;
|
||||||
|
Vue.prototype.initState = initState;
|
||||||
|
Vue.prototype.t = translate;
|
||||||
|
Vue.prototype.n = translatePlural;
|
||||||
|
|
|
@ -95,7 +95,7 @@ declare global {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// GlobalMixin.ts types, present on all components
|
// types present on all components (bootstrap.ts, router.ts)
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
interface ComponentCustomProperties extends GlobalRouteCheckers {
|
interface ComponentCustomProperties extends GlobalRouteCheckers {
|
||||||
t: typeof translate;
|
t: typeof translate;
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
import { translate as t, translatePlural as n } from '@nextcloud/l10n';
|
|
||||||
import { c, initState } from '../services/utils';
|
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'GlobalMixin',
|
|
||||||
|
|
||||||
data: () => ({
|
|
||||||
c,
|
|
||||||
initState,
|
|
||||||
}),
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
t,
|
|
||||||
n,
|
|
||||||
},
|
|
||||||
});
|
|
Loading…
Reference in New Issue