2020-10-17 04:12:00 -07:00
|
|
|
import { App, defineAsyncComponent } from 'vue';
|
2020-01-29 11:37:25 -08:00
|
|
|
|
2020-10-17 04:12:00 -07:00
|
|
|
export default function(app: App) {
|
|
|
|
app.component('MkwMemo', defineAsyncComponent(() => import('./memo.vue')));
|
|
|
|
app.component('MkwNotifications', defineAsyncComponent(() => import('./notifications.vue')));
|
|
|
|
app.component('MkwTimeline', defineAsyncComponent(() => import('./timeline.vue')));
|
|
|
|
app.component('MkwCalendar', defineAsyncComponent(() => import('./calendar.vue')));
|
|
|
|
app.component('MkwRss', defineAsyncComponent(() => import('./rss.vue')));
|
2022-07-03 00:50:51 -07:00
|
|
|
app.component('MkwRssTicker', defineAsyncComponent(() => import('./rss-ticker.vue')));
|
2020-10-17 04:12:00 -07:00
|
|
|
app.component('MkwTrends', defineAsyncComponent(() => import('./trends.vue')));
|
|
|
|
app.component('MkwClock', defineAsyncComponent(() => import('./clock.vue')));
|
|
|
|
app.component('MkwActivity', defineAsyncComponent(() => import('./activity.vue')));
|
|
|
|
app.component('MkwPhotos', defineAsyncComponent(() => import('./photos.vue')));
|
|
|
|
app.component('MkwDigitalClock', defineAsyncComponent(() => import('./digital-clock.vue')));
|
2022-08-04 06:20:00 -07:00
|
|
|
app.component('MkwUnixClock', defineAsyncComponent(() => import('./unix-clock.vue')));
|
2020-10-17 04:12:00 -07:00
|
|
|
app.component('MkwFederation', defineAsyncComponent(() => import('./federation.vue')));
|
|
|
|
app.component('MkwPostForm', defineAsyncComponent(() => import('./post-form.vue')));
|
2020-12-05 05:29:55 -08:00
|
|
|
app.component('MkwSlideshow', defineAsyncComponent(() => import('./slideshow.vue')));
|
2021-01-03 05:38:32 -08:00
|
|
|
app.component('MkwServerMetric', defineAsyncComponent(() => import('./server-metric/index.vue')));
|
2020-12-29 20:07:16 -08:00
|
|
|
app.component('MkwOnlineUsers', defineAsyncComponent(() => import('./online-users.vue')));
|
2021-01-04 00:36:50 -08:00
|
|
|
app.component('MkwJobQueue', defineAsyncComponent(() => import('./job-queue.vue')));
|
2022-06-29 07:28:52 -07:00
|
|
|
app.component('MkwInstanceCloud', defineAsyncComponent(() => import('./instance-cloud.vue')));
|
2020-12-27 06:13:01 -08:00
|
|
|
app.component('MkwButton', defineAsyncComponent(() => import('./button.vue')));
|
2021-02-06 04:36:47 -08:00
|
|
|
app.component('MkwAiscript', defineAsyncComponent(() => import('./aiscript.vue')));
|
2023-01-04 20:59:48 -08:00
|
|
|
app.component('MkwAiscriptApp', defineAsyncComponent(() => import('./aiscript-app.vue')));
|
2021-09-04 01:54:24 -07:00
|
|
|
app.component('MkwAichan', defineAsyncComponent(() => import('./aichan.vue')));
|
2022-12-25 17:29:47 -08:00
|
|
|
app.component('MkwUserList', defineAsyncComponent(() => import('./user-list.vue')));
|
2020-10-17 04:12:00 -07:00
|
|
|
}
|
2020-07-10 18:13:11 -07:00
|
|
|
|
|
|
|
export const widgets = [
|
|
|
|
'memo',
|
|
|
|
'notifications',
|
|
|
|
'timeline',
|
|
|
|
'calendar',
|
|
|
|
'rss',
|
2022-07-03 00:50:51 -07:00
|
|
|
'rssTicker',
|
2020-07-10 18:13:11 -07:00
|
|
|
'trends',
|
|
|
|
'clock',
|
|
|
|
'activity',
|
|
|
|
'photos',
|
|
|
|
'digitalClock',
|
2022-08-04 06:20:00 -07:00
|
|
|
'unixClock',
|
2020-07-24 19:56:56 -07:00
|
|
|
'federation',
|
2022-06-30 07:45:11 -07:00
|
|
|
'instanceCloud',
|
2020-10-17 04:12:00 -07:00
|
|
|
'postForm',
|
2020-12-05 05:29:55 -08:00
|
|
|
'slideshow',
|
2021-01-03 05:38:32 -08:00
|
|
|
'serverMetric',
|
2020-12-29 20:07:16 -08:00
|
|
|
'onlineUsers',
|
2021-01-04 00:36:50 -08:00
|
|
|
'jobQueue',
|
2020-12-27 06:13:01 -08:00
|
|
|
'button',
|
2021-02-06 04:36:47 -08:00
|
|
|
'aiscript',
|
2023-01-04 20:59:48 -08:00
|
|
|
'aiscriptApp',
|
2021-09-04 01:54:24 -07:00
|
|
|
'aichan',
|
2022-12-25 17:29:47 -08:00
|
|
|
'userList',
|
2020-07-10 18:13:11 -07:00
|
|
|
];
|