2020-10-17 13:12:00 +02:00
|
|
|
import { App, defineAsyncComponent } from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default function(app: App) {
|
2023-01-09 22:08:40 +01:00
|
|
|
app.component('WidgetProfile', defineAsyncComponent(() => import('./WidgetProfile.vue')));
|
|
|
|
app.component('WidgetInstanceInfo', defineAsyncComponent(() => import('./WidgetInstanceInfo.vue')));
|
|
|
|
app.component('WidgetMemo', defineAsyncComponent(() => import('./WidgetMemo.vue')));
|
|
|
|
app.component('WidgetNotifications', defineAsyncComponent(() => import('./WidgetNotifications.vue')));
|
|
|
|
app.component('WidgetTimeline', defineAsyncComponent(() => import('./WidgetTimeline.vue')));
|
|
|
|
app.component('WidgetCalendar', defineAsyncComponent(() => import('./WidgetCalendar.vue')));
|
|
|
|
app.component('WidgetRss', defineAsyncComponent(() => import('./WidgetRss.vue')));
|
|
|
|
app.component('WidgetRssTicker', defineAsyncComponent(() => import('./WidgetRssTicker.vue')));
|
|
|
|
app.component('WidgetTrends', defineAsyncComponent(() => import('./WidgetTrends.vue')));
|
|
|
|
app.component('WidgetClock', defineAsyncComponent(() => import('./WidgetClock.vue')));
|
|
|
|
app.component('WidgetActivity', defineAsyncComponent(() => import('./WidgetActivity.vue')));
|
|
|
|
app.component('WidgetPhotos', defineAsyncComponent(() => import('./WidgetPhotos.vue')));
|
|
|
|
app.component('WidgetDigitalClock', defineAsyncComponent(() => import('./WidgetDigitalClock.vue')));
|
|
|
|
app.component('WidgetUnixClock', defineAsyncComponent(() => import('./WidgetUnixClock.vue')));
|
|
|
|
app.component('WidgetFederation', defineAsyncComponent(() => import('./WidgetFederation.vue')));
|
|
|
|
app.component('WidgetPostForm', defineAsyncComponent(() => import('./WidgetPostForm.vue')));
|
|
|
|
app.component('WidgetSlideshow', defineAsyncComponent(() => import('./WidgetSlideshow.vue')));
|
|
|
|
app.component('WidgetServerMetric', defineAsyncComponent(() => import('./server-metric/index.vue')));
|
|
|
|
app.component('WidgetOnlineUsers', defineAsyncComponent(() => import('./WidgetOnlineUsers.vue')));
|
|
|
|
app.component('WidgetJobQueue', defineAsyncComponent(() => import('./WidgetJobQueue.vue')));
|
|
|
|
app.component('WidgetInstanceCloud', defineAsyncComponent(() => import('./WidgetInstanceCloud.vue')));
|
|
|
|
app.component('WidgetButton', defineAsyncComponent(() => import('./WidgetButton.vue')));
|
|
|
|
app.component('WidgetAiscript', defineAsyncComponent(() => import('./WidgetAiscript.vue')));
|
|
|
|
app.component('WidgetAiscriptApp', defineAsyncComponent(() => import('./WidgetAiscriptApp.vue')));
|
|
|
|
app.component('WidgetAichan', defineAsyncComponent(() => import('./WidgetAichan.vue')));
|
|
|
|
app.component('WidgetUserList', defineAsyncComponent(() => import('./WidgetUserList.vue')));
|
|
|
|
app.component('WidgetClicker', defineAsyncComponent(() => import('./WidgetClicker.vue')));
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
2020-07-11 03:13:11 +02:00
|
|
|
|
|
|
|
export const widgets = [
|
2023-01-09 12:23:06 +01:00
|
|
|
'profile',
|
2023-01-09 12:35:36 +01:00
|
|
|
'instanceInfo',
|
2020-07-11 03:13:11 +02:00
|
|
|
'memo',
|
|
|
|
'notifications',
|
|
|
|
'timeline',
|
|
|
|
'calendar',
|
|
|
|
'rss',
|
2022-07-03 09:50:51 +02:00
|
|
|
'rssTicker',
|
2020-07-11 03:13:11 +02:00
|
|
|
'trends',
|
|
|
|
'clock',
|
|
|
|
'activity',
|
|
|
|
'photos',
|
|
|
|
'digitalClock',
|
2022-08-04 15:20:00 +02:00
|
|
|
'unixClock',
|
2020-07-25 04:56:56 +02:00
|
|
|
'federation',
|
2022-06-30 16:45:11 +02:00
|
|
|
'instanceCloud',
|
2020-10-17 13:12:00 +02:00
|
|
|
'postForm',
|
2020-12-05 14:29:55 +01:00
|
|
|
'slideshow',
|
2021-01-03 14:38:32 +01:00
|
|
|
'serverMetric',
|
2020-12-30 05:07:16 +01:00
|
|
|
'onlineUsers',
|
2021-01-04 09:36:50 +01:00
|
|
|
'jobQueue',
|
2020-12-27 15:13:01 +01:00
|
|
|
'button',
|
2021-02-06 13:36:47 +01:00
|
|
|
'aiscript',
|
2023-01-05 05:59:48 +01:00
|
|
|
'aiscriptApp',
|
2021-09-04 10:54:24 +02:00
|
|
|
'aichan',
|
2022-12-26 02:29:47 +01:00
|
|
|
'userList',
|
2023-01-08 09:41:09 +01:00
|
|
|
'clicker',
|
2020-07-11 03:13:11 +02:00
|
|
|
];
|