mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
6c4e8f75d4
The useful bit for sending stickers. Implements the rest of #156
189 lines
8.7 KiB
TypeScript
189 lines
8.7 KiB
TypeScript
import { RouterModule, Routes } from "@angular/router";
|
|
import { HomeComponent } from "./home/home.component";
|
|
import { RiotComponent } from "./riot/riot.component";
|
|
import { GenericWidgetWrapperComponent } from "./widget-wrappers/generic/generic.component";
|
|
import { VideoWidgetWrapperComponent } from "./widget-wrappers/video/video.component";
|
|
import { JitsiWidgetWrapperComponent } from "./widget-wrappers/jitsi/jitsi.component";
|
|
import { GCalWidgetWrapperComponent } from "./widget-wrappers/gcal/gcal.component";
|
|
import { RiotHomeComponent } from "./riot/riot-home/home.component";
|
|
import { CustomWidgetConfigComponent } from "./configs/widget/custom/custom.widget.component";
|
|
import { EtherpadWidgetConfigComponent } from "./configs/widget/etherpad/etherpad.widget.component";
|
|
import { GoogleCalendarWidgetConfigComponent } from "./configs/widget/google-calendar/gcal.widget.component";
|
|
import { GoogleDocsWidgetConfigComponent } from "./configs/widget/google-docs/gdoc.widget.component";
|
|
import { JitsiWidgetConfigComponent } from "./configs/widget/jitsi/jitsi.widget.component";
|
|
import { TwitchWidgetConfigComponent } from "./configs/widget/twitch/twitch.widget.component";
|
|
import { YoutubeWidgetConfigComponent } from "./configs/widget/youtube/youtube.widget.component";
|
|
import { AdminComponent } from "./admin/admin.component";
|
|
import { AdminHomeComponent } from "./admin/home/home.component";
|
|
import { AdminWidgetsComponent } from "./admin/widgets/widgets.component";
|
|
import { AdminNebComponent } from "./admin/neb/neb.component";
|
|
import { AdminEditNebComponent } from "./admin/neb/edit/edit.component";
|
|
import { AdminAddSelfhostedNebComponent } from "./admin/neb/add-selfhosted/add-selfhosted.component";
|
|
import { RssComplexBotConfigComponent } from "./configs/complex-bot/rss/rss.complex-bot.component";
|
|
import { TravisCiComplexBotConfigComponent } from "./configs/complex-bot/travisci/travisci.complex-bot.component";
|
|
import { AdminBridgesComponent } from "./admin/bridges/bridges.component";
|
|
import { AdminIrcBridgeComponent } from "./admin/bridges/irc/irc.component";
|
|
import { IrcBridgeConfigComponent } from "./configs/bridge/irc/irc.bridge.component";
|
|
import { AdminStickerPacksComponent } from "./admin/sticker-packs/sticker-packs.component";
|
|
import { StickerpickerComponent } from "./configs/stickerpicker/stickerpicker.component";
|
|
import { StickerPickerWidgetWrapperComponent } from "./widget-wrappers/sticker-picker/sticker-picker.component";
|
|
|
|
const routes: Routes = [
|
|
{path: "", component: HomeComponent},
|
|
{path: "riot", pathMatch: "full", redirectTo: "riot-app"},
|
|
{
|
|
path: "riot-app",
|
|
component: RiotComponent,
|
|
data: {breadcrumb: "Home", name: "Dimension"},
|
|
children: [
|
|
{
|
|
path: "",
|
|
component: RiotHomeComponent,
|
|
},
|
|
{
|
|
path: "admin",
|
|
component: AdminComponent,
|
|
data: {breadcrumb: "Admin", name: "Settings"},
|
|
children: [
|
|
{
|
|
path: "",
|
|
component: AdminHomeComponent,
|
|
},
|
|
{
|
|
path: "widgets",
|
|
component: AdminWidgetsComponent,
|
|
data: {breadcrumb: "Widgets", name: "Widgets"},
|
|
},
|
|
{
|
|
path: "neb",
|
|
data: {breadcrumb: "go-neb", name: "go-neb configuration"},
|
|
children: [
|
|
{
|
|
path: "",
|
|
component: AdminNebComponent,
|
|
},
|
|
{
|
|
path: ":nebId/edit",
|
|
component: AdminEditNebComponent,
|
|
data: {breadcrumb: "Edit go-neb", name: "Edit go-neb"},
|
|
},
|
|
{
|
|
path: "new/selfhosted",
|
|
component: AdminAddSelfhostedNebComponent,
|
|
data: {breadcrumb: "Add self-hosted go-neb", name: "Add self-hosted go-neb"},
|
|
},
|
|
]
|
|
},
|
|
{
|
|
path: "bridges",
|
|
data: {breadcrumb: "Bridges", name: "Bridges"},
|
|
children: [
|
|
{
|
|
path: "",
|
|
component: AdminBridgesComponent,
|
|
},
|
|
{
|
|
path: "irc",
|
|
component: AdminIrcBridgeComponent,
|
|
data: {breadcrumb: "IRC Bridge", name: "IRC Bridge"},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "stickerpacks",
|
|
data: {breadcrumb: "Sticker Packs", name: "Sticker Packs"},
|
|
children: [
|
|
{
|
|
path: "",
|
|
component: AdminStickerPacksComponent,
|
|
},
|
|
],
|
|
}
|
|
],
|
|
},
|
|
{
|
|
path: "widget",
|
|
children: [
|
|
{
|
|
path: "custom",
|
|
component: CustomWidgetConfigComponent,
|
|
data: {breadcrumb: "Custom Widgets", name: "Custom Widgets"},
|
|
},
|
|
{
|
|
path: "etherpad",
|
|
component: EtherpadWidgetConfigComponent,
|
|
data: {breadcrumb: "Etherpad Widgets", name: "Etherpad Widgets"},
|
|
},
|
|
{
|
|
path: "googlecalendar",
|
|
component: GoogleCalendarWidgetConfigComponent,
|
|
data: {breadcrumb: "Google Calendar Widgets", name: "Google Calendar Widgets"},
|
|
},
|
|
{
|
|
path: "googledocs",
|
|
component: GoogleDocsWidgetConfigComponent,
|
|
data: {breadcrumb: "Google Doc Widgets", name: "Google Doc Widgets"},
|
|
},
|
|
{
|
|
path: "jitsi",
|
|
component: JitsiWidgetConfigComponent,
|
|
data: {breadcrumb: "Jitsi Widgets", name: "Jitsi Widgets"},
|
|
},
|
|
{
|
|
path: "twitch",
|
|
component: TwitchWidgetConfigComponent,
|
|
data: {breadcrumb: "Twitch Livestream Widgets", name: "Twitch Livestream Widgets"},
|
|
},
|
|
{
|
|
path: "youtube",
|
|
component: YoutubeWidgetConfigComponent,
|
|
data: {breadcrumb: "Youtube Video Widgets", name: "Youtube Video Widgets"},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "complex-bot",
|
|
children: [
|
|
{
|
|
path: "rss",
|
|
component: RssComplexBotConfigComponent,
|
|
data: {breadcrumb: "RSS Bot Configuration", name: "RSS Bot Configuration"},
|
|
},
|
|
{
|
|
path: "travisci",
|
|
component: TravisCiComplexBotConfigComponent,
|
|
data: {breadcrumb: "Travis CI Configuration", name: "Travis CI Configuration"},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "bridge",
|
|
children: [
|
|
{
|
|
path: "irc",
|
|
component: IrcBridgeConfigComponent,
|
|
data: {breadcrumb: "IRC Bridge Configuration", name: "IRC Bridge Configuration"},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "stickerpicker",
|
|
component: StickerpickerComponent,
|
|
data: {breadcrumb: "Your Sticker Packs", name: "Your Sticker Packs"},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "widgets",
|
|
children: [
|
|
{path: "generic", component: GenericWidgetWrapperComponent},
|
|
{path: "video", component: VideoWidgetWrapperComponent},
|
|
{path: "jitsi", component: JitsiWidgetWrapperComponent},
|
|
{path: "gcal", component: GCalWidgetWrapperComponent},
|
|
{path: "stickerpicker", component: StickerPickerWidgetWrapperComponent},
|
|
]
|
|
},
|
|
];
|
|
|
|
export const routing = RouterModule.forRoot(routes);
|