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