2020-10-17 11:12:00 +00:00
|
|
|
import { App, defineAsyncComponent } from 'vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default function(app: App) {
|
2023-01-09 21:08:40 +00: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 11:12:00 +00:00
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
|
|
|
export const widgets = [
|
2023-01-09 11:23:06 +00:00
|
|
|
'profile',
|
2023-01-09 11:35:36 +00:00
|
|
|
'instanceInfo',
|
2020-07-11 01:13:11 +00:00
|
|
|
'memo',
|
|
|
|
'notifications',
|
|
|
|
'timeline',
|
|
|
|
'calendar',
|
|
|
|
'rss',
|
2022-07-03 07:50:51 +00:00
|
|
|
'rssTicker',
|
2020-07-11 01:13:11 +00:00
|
|
|
'trends',
|
|
|
|
'clock',
|
|
|
|
'activity',
|
|
|
|
'photos',
|
|
|
|
'digitalClock',
|
2022-08-04 13:20:00 +00:00
|
|
|
'unixClock',
|
2020-07-25 02:56:56 +00:00
|
|
|
'federation',
|
2022-06-30 14:45:11 +00:00
|
|
|
'instanceCloud',
|
2020-10-17 11:12:00 +00:00
|
|
|
'postForm',
|
2020-12-05 13:29:55 +00:00
|
|
|
'slideshow',
|
2021-01-03 13:38:32 +00:00
|
|
|
'serverMetric',
|
2020-12-30 04:07:16 +00:00
|
|
|
'onlineUsers',
|
2021-01-04 08:36:50 +00:00
|
|
|
'jobQueue',
|
2020-12-27 14:13:01 +00:00
|
|
|
'button',
|
2021-02-06 12:36:47 +00:00
|
|
|
'aiscript',
|
2023-01-05 04:59:48 +00:00
|
|
|
'aiscriptApp',
|
2021-09-04 08:54:24 +00:00
|
|
|
'aichan',
|
2022-12-26 01:29:47 +00:00
|
|
|
'userList',
|
2023-01-08 08:41:09 +00:00
|
|
|
'clicker',
|
2020-07-11 01:13:11 +00:00
|
|
|
];
|