about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/util/async-components.js
blob: 91e85fed557cf5bfac0d3a6efb6e2f8509678d89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
export function EmojiPicker () {
  return import(/* webpackChunkName: "themes/glitch/async/emoji_picker" */'themes/glitch/util/emoji/emoji_picker');
}

export function Compose () {
  return import(/* webpackChunkName: "themes/glitch/async/compose" */'themes/glitch/features/compose');
}

export function Notifications () {
  return import(/* webpackChunkName: "themes/glitch/async/notifications" */'themes/glitch/features/notifications');
}

export function HomeTimeline () {
  return import(/* webpackChunkName: "themes/glitch/async/home_timeline" */'themes/glitch/features/home_timeline');
}

export function PublicTimeline () {
  return import(/* webpackChunkName: "themes/glitch/async/public_timeline" */'themes/glitch/features/public_timeline');
}

export function CommunityTimeline () {
  return import(/* webpackChunkName: "themes/glitch/async/community_timeline" */'themes/glitch/features/community_timeline');
}

export function HashtagTimeline () {
  return import(/* webpackChunkName: "themes/glitch/async/hashtag_timeline" */'themes/glitch/features/hashtag_timeline');
}

export function DirectTimeline() {
  return import(/* webpackChunkName: "themes/glitch/async/direct_timeline" */'themes/glitch/features/direct_timeline');
}

export function Status () {
  return import(/* webpackChunkName: "themes/glitch/async/status" */'themes/glitch/features/status');
}

export function GettingStarted () {
  return import(/* webpackChunkName: "themes/glitch/async/getting_started" */'themes/glitch/features/getting_started');
}

export function PinnedStatuses () {
  return import(/* webpackChunkName: "themes/glitch/async/pinned_statuses" */'themes/glitch/features/pinned_statuses');
}

export function AccountTimeline () {
  return import(/* webpackChunkName: "themes/glitch/async/account_timeline" */'themes/glitch/features/account_timeline');
}

export function AccountGallery () {
  return import(/* webpackChunkName: "themes/glitch/async/account_gallery" */'themes/glitch/features/account_gallery');
}

export function Followers () {
  return import(/* webpackChunkName: "themes/glitch/async/followers" */'themes/glitch/features/followers');
}

export function Following () {
  return import(/* webpackChunkName: "themes/glitch/async/following" */'themes/glitch/features/following');
}

export function Reblogs () {
  return import(/* webpackChunkName: "themes/glitch/async/reblogs" */'themes/glitch/features/reblogs');
}

export function Favourites () {
  return import(/* webpackChunkName: "themes/glitch/async/favourites" */'themes/glitch/features/favourites');
}

export function FollowRequests () {
  return import(/* webpackChunkName: "themes/glitch/async/follow_requests" */'themes/glitch/features/follow_requests');
}

export function GenericNotFound () {
  return import(/* webpackChunkName: "themes/glitch/async/generic_not_found" */'themes/glitch/features/generic_not_found');
}

export function FavouritedStatuses () {
  return import(/* webpackChunkName: "themes/glitch/async/favourited_statuses" */'themes/glitch/features/favourited_statuses');
}

export function Blocks () {
  return import(/* webpackChunkName: "themes/glitch/async/blocks" */'themes/glitch/features/blocks');
}

export function Mutes () {
  return import(/* webpackChunkName: "themes/glitch/async/mutes" */'themes/glitch/features/mutes');
}

export function OnboardingModal () {
  return import(/* webpackChunkName: "themes/glitch/async/onboarding_modal" */'themes/glitch/features/ui/components/onboarding_modal');
}

export function MuteModal () {
  return import(/* webpackChunkName: "themes/glitch/async/mute_modal" */'themes/glitch/features/ui/components/mute_modal');
}

export function ReportModal () {
  return import(/* webpackChunkName: "themes/glitch/async/report_modal" */'themes/glitch/features/ui/components/report_modal');
}

export function SettingsModal () {
  return import(/* webpackChunkName: "themes/glitch/async/settings_modal" */'themes/glitch/features/local_settings');
}

export function MediaGallery () {
  return import(/* webpackChunkName: "themes/glitch/async/media_gallery" */'themes/glitch/components/media_gallery');
}

export function Video () {
  return import(/* webpackChunkName: "themes/glitch/async/video" */'themes/glitch/features/video');
}

export function EmbedModal () {
  return import(/* webpackChunkName: "themes/glitch/async/embed_modal" */'themes/glitch/features/ui/components/embed_modal');
}