serverless-ircd 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (247) hide show
  1. package/.github/workflows/ci.yml +6 -1
  2. package/.gitmodules +3 -0
  3. package/CHANGELOG.md +214 -0
  4. package/README.md +110 -23
  5. package/apps/aws-stack/package.json +1 -1
  6. package/apps/cf-tcp-container/package.json +1 -1
  7. package/apps/cf-worker/package.json +1 -1
  8. package/apps/cf-worker/src/origin-allowlist.ts +99 -0
  9. package/apps/cf-worker/src/worker.ts +89 -9
  10. package/apps/cf-worker/tests/fixtures/web-dist/app/index.html +18 -0
  11. package/apps/cf-worker/tests/fixtures/web-dist/index.html +18 -0
  12. package/apps/cf-worker/tests/origin-allowlist.test.ts +101 -0
  13. package/apps/cf-worker/tests/smoke.test.ts +28 -2
  14. package/apps/cf-worker/tests/ws-origin.test.ts +89 -0
  15. package/apps/cf-worker/wrangler.test.toml +23 -0
  16. package/apps/cf-worker/wrangler.toml +54 -0
  17. package/apps/local-cli/package.json +1 -1
  18. package/apps/web/landing/index.html +217 -0
  19. package/apps/web/package.json +28 -0
  20. package/apps/web/scripts/build.mjs +125 -0
  21. package/apps/web/src/build-env.ts +43 -0
  22. package/apps/web/src/config-schema.ts +138 -0
  23. package/apps/web/static/config.json +28 -0
  24. package/apps/web/static/config.prod.json +28 -0
  25. package/apps/web/static/config.staging.json +28 -0
  26. package/apps/web/tests/build-env.test.ts +63 -0
  27. package/apps/web/tests/build-smoke.test.ts +103 -0
  28. package/apps/web/tests/config-schema.test.ts +432 -0
  29. package/apps/web/tests/workspace.test.ts +12 -0
  30. package/apps/web/tsconfig.json +10 -0
  31. package/apps/web/upstream/.browserslistrc +3 -0
  32. package/apps/web/upstream/.editorconfig +9 -0
  33. package/apps/web/upstream/.eslintignore +3 -0
  34. package/apps/web/upstream/.eslintrc.js +90 -0
  35. package/apps/web/upstream/.github/FUNDING.yml +12 -0
  36. package/apps/web/upstream/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  37. package/apps/web/upstream/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  38. package/apps/web/upstream/.github/workflows/push.yml +26 -0
  39. package/apps/web/upstream/.github/workflows/release.yml +33 -0
  40. package/apps/web/upstream/.github/workflows/release_manual.yml +55 -0
  41. package/apps/web/upstream/.prettierrc.js +9 -0
  42. package/apps/web/upstream/.stylelintignore +5 -0
  43. package/apps/web/upstream/.stylelintrc.js +21 -0
  44. package/apps/web/upstream/LICENSE +201 -0
  45. package/apps/web/upstream/README.md +76 -0
  46. package/apps/web/upstream/babel.config.js +25 -0
  47. package/apps/web/upstream/crowdin.yml +3 -0
  48. package/apps/web/upstream/index.html +35 -0
  49. package/apps/web/upstream/jest.config.js +7 -0
  50. package/apps/web/upstream/jsdoc.json +22 -0
  51. package/apps/web/upstream/package.json +80 -0
  52. package/apps/web/upstream/scripts/pre-commit +43 -0
  53. package/apps/web/upstream/src/components/App.vue +516 -0
  54. package/apps/web/upstream/src/components/AppSettings.vue +587 -0
  55. package/apps/web/upstream/src/components/AutoComplete.vue +284 -0
  56. package/apps/web/upstream/src/components/Avatar.vue +105 -0
  57. package/apps/web/upstream/src/components/AwayStatusIndicator.vue +77 -0
  58. package/apps/web/upstream/src/components/BufferKey.vue +121 -0
  59. package/apps/web/upstream/src/components/BufferSettings.vue +97 -0
  60. package/apps/web/upstream/src/components/Captcha.vue +85 -0
  61. package/apps/web/upstream/src/components/ChannelBanlist.vue +96 -0
  62. package/apps/web/upstream/src/components/ChannelInfo.vue +159 -0
  63. package/apps/web/upstream/src/components/ChannelInvitelist.vue +276 -0
  64. package/apps/web/upstream/src/components/ChannelList.vue +345 -0
  65. package/apps/web/upstream/src/components/Container.vue +401 -0
  66. package/apps/web/upstream/src/components/ContainerHeader.vue +522 -0
  67. package/apps/web/upstream/src/components/ControlInput.vue +1016 -0
  68. package/apps/web/upstream/src/components/LoadingAnimation.vue +104 -0
  69. package/apps/web/upstream/src/components/MediaViewer.vue +199 -0
  70. package/apps/web/upstream/src/components/MessageInfo.vue +192 -0
  71. package/apps/web/upstream/src/components/MessageList.vue +1028 -0
  72. package/apps/web/upstream/src/components/MessageListAvatar.vue +20 -0
  73. package/apps/web/upstream/src/components/MessageListMessageCompact.vue +361 -0
  74. package/apps/web/upstream/src/components/MessageListMessageInline.vue +257 -0
  75. package/apps/web/upstream/src/components/MessageListMessageModern.vue +430 -0
  76. package/apps/web/upstream/src/components/NetworkSettings.vue +528 -0
  77. package/apps/web/upstream/src/components/Nicklist.vue +309 -0
  78. package/apps/web/upstream/src/components/NicklistUser.vue +181 -0
  79. package/apps/web/upstream/src/components/NotConnected.vue +271 -0
  80. package/apps/web/upstream/src/components/SelfUser.vue +283 -0
  81. package/apps/web/upstream/src/components/ServerSelector.vue +162 -0
  82. package/apps/web/upstream/src/components/ServerView.vue +126 -0
  83. package/apps/web/upstream/src/components/SettingsAdvanced.vue +232 -0
  84. package/apps/web/upstream/src/components/SettingsAliases.vue +121 -0
  85. package/apps/web/upstream/src/components/Sidebar.vue +429 -0
  86. package/apps/web/upstream/src/components/SidebarAboutBuffer.vue +288 -0
  87. package/apps/web/upstream/src/components/SidebarState.vue +145 -0
  88. package/apps/web/upstream/src/components/StartupError.vue +35 -0
  89. package/apps/web/upstream/src/components/StateBrowser.vue +420 -0
  90. package/apps/web/upstream/src/components/StateBrowserBuffer.vue +124 -0
  91. package/apps/web/upstream/src/components/StateBrowserNetwork.vue +823 -0
  92. package/apps/web/upstream/src/components/StateBrowserUsermenu.vue +162 -0
  93. package/apps/web/upstream/src/components/TypingStatusIndicator.vue +34 -0
  94. package/apps/web/upstream/src/components/TypingUsersList.vue +56 -0
  95. package/apps/web/upstream/src/components/UrlEmbed.vue +149 -0
  96. package/apps/web/upstream/src/components/UserBox.vue +728 -0
  97. package/apps/web/upstream/src/components/inputtools/Emoji.vue +67 -0
  98. package/apps/web/upstream/src/components/inputtools/TextStyle.vue +142 -0
  99. package/apps/web/upstream/src/components/startups/CommonLayout.vue +208 -0
  100. package/apps/web/upstream/src/components/startups/CustomServer.vue +495 -0
  101. package/apps/web/upstream/src/components/startups/KiwiBnc.vue +361 -0
  102. package/apps/web/upstream/src/components/startups/Personal.vue +317 -0
  103. package/apps/web/upstream/src/components/startups/Welcome.vue +544 -0
  104. package/apps/web/upstream/src/components/startups/ZncLogin.vue +229 -0
  105. package/apps/web/upstream/src/components/utils/InputConfirm.vue +68 -0
  106. package/apps/web/upstream/src/components/utils/InputPrompt.vue +118 -0
  107. package/apps/web/upstream/src/components/utils/InputText.vue +172 -0
  108. package/apps/web/upstream/src/components/utils/IrcInput.vue +579 -0
  109. package/apps/web/upstream/src/components/utils/PluginWrapper.vue +26 -0
  110. package/apps/web/upstream/src/components/utils/TabbedView.vue +149 -0
  111. package/apps/web/upstream/src/components/utils/TransitionExpand.vue +97 -0
  112. package/apps/web/upstream/src/helpers/Colours.js +128 -0
  113. package/apps/web/upstream/src/helpers/IrcdDiffs.js +26 -0
  114. package/apps/web/upstream/src/helpers/Md5.js +193 -0
  115. package/apps/web/upstream/src/helpers/Misc.js +401 -0
  116. package/apps/web/upstream/src/helpers/TextFormatting.js +237 -0
  117. package/apps/web/upstream/src/libs/AliasRewriter.js +157 -0
  118. package/apps/web/upstream/src/libs/AudioManager.js +60 -0
  119. package/apps/web/upstream/src/libs/BouncerMiddleware.js +247 -0
  120. package/apps/web/upstream/src/libs/BouncerProvider.js +551 -0
  121. package/apps/web/upstream/src/libs/ChathistoryMiddleware.js +153 -0
  122. package/apps/web/upstream/src/libs/ConfigLoader.js +94 -0
  123. package/apps/web/upstream/src/libs/EmojiProvider.js +46 -0
  124. package/apps/web/upstream/src/libs/GlobalApi.js +346 -0
  125. package/apps/web/upstream/src/libs/IPC.js +51 -0
  126. package/apps/web/upstream/src/libs/InputHandler.js +921 -0
  127. package/apps/web/upstream/src/libs/IrcClient.js +1506 -0
  128. package/apps/web/upstream/src/libs/Logger.js +71 -0
  129. package/apps/web/upstream/src/libs/Message.js +169 -0
  130. package/apps/web/upstream/src/libs/MessageFormatter.js +364 -0
  131. package/apps/web/upstream/src/libs/MessageParser.js +249 -0
  132. package/apps/web/upstream/src/libs/Notifications.js +78 -0
  133. package/apps/web/upstream/src/libs/ServerConnection.js +270 -0
  134. package/apps/web/upstream/src/libs/ServerSession.js +102 -0
  135. package/apps/web/upstream/src/libs/SoundBleep.js +20 -0
  136. package/apps/web/upstream/src/libs/StatePersistence.js +90 -0
  137. package/apps/web/upstream/src/libs/ThemeManager.js +128 -0
  138. package/apps/web/upstream/src/libs/TypingMiddleware.js +105 -0
  139. package/apps/web/upstream/src/libs/WindowTitle.js +63 -0
  140. package/apps/web/upstream/src/libs/batchedAdd.js +74 -0
  141. package/apps/web/upstream/src/libs/bufferTools.js +177 -0
  142. package/apps/web/upstream/src/libs/polyfill/Element.closest.js +18 -0
  143. package/apps/web/upstream/src/libs/renderers/Html.js +113 -0
  144. package/apps/web/upstream/src/libs/settingTools.js +31 -0
  145. package/apps/web/upstream/src/libs/state/BufferState.js +703 -0
  146. package/apps/web/upstream/src/libs/state/NetworkState.js +158 -0
  147. package/apps/web/upstream/src/libs/state/UserState.js +89 -0
  148. package/apps/web/upstream/src/libs/state/common.js +26 -0
  149. package/apps/web/upstream/src/libs/state.js +961 -0
  150. package/apps/web/upstream/src/libs/storage/Local.js +51 -0
  151. package/apps/web/upstream/src/main.js +566 -0
  152. package/apps/web/upstream/src/res/autocompleteCommands.js +31 -0
  153. package/apps/web/upstream/src/res/configTemplates.js +373 -0
  154. package/apps/web/upstream/src/res/globalStyle.css +277 -0
  155. package/apps/web/upstream/src/res/kiwiLoadingLogo.png +0 -0
  156. package/apps/web/upstream/src/res/locales/app.af-ZA.po +1145 -0
  157. package/apps/web/upstream/src/res/locales/app.ar-SA.po +1145 -0
  158. package/apps/web/upstream/src/res/locales/app.bg-BG.po +1145 -0
  159. package/apps/web/upstream/src/res/locales/app.bs-BA.po +1145 -0
  160. package/apps/web/upstream/src/res/locales/app.ca-ES.po +1145 -0
  161. package/apps/web/upstream/src/res/locales/app.cs-CZ.po +1145 -0
  162. package/apps/web/upstream/src/res/locales/app.da-DK.po +1145 -0
  163. package/apps/web/upstream/src/res/locales/app.de-DE.po +1145 -0
  164. package/apps/web/upstream/src/res/locales/app.dev.po +1246 -0
  165. package/apps/web/upstream/src/res/locales/app.el-GR.po +1145 -0
  166. package/apps/web/upstream/src/res/locales/app.en-US.po +1145 -0
  167. package/apps/web/upstream/src/res/locales/app.es-419.po +1145 -0
  168. package/apps/web/upstream/src/res/locales/app.es-AR.po +1145 -0
  169. package/apps/web/upstream/src/res/locales/app.es-EM.po +536 -0
  170. package/apps/web/upstream/src/res/locales/app.es-ES.po +1145 -0
  171. package/apps/web/upstream/src/res/locales/app.es-US.po +1145 -0
  172. package/apps/web/upstream/src/res/locales/app.eu-ES.po +1145 -0
  173. package/apps/web/upstream/src/res/locales/app.fi-FI.po +1145 -0
  174. package/apps/web/upstream/src/res/locales/app.fr-FR.po +1145 -0
  175. package/apps/web/upstream/src/res/locales/app.gl-ES.po +1145 -0
  176. package/apps/web/upstream/src/res/locales/app.he-IL.po +1145 -0
  177. package/apps/web/upstream/src/res/locales/app.hi-IN.po +1145 -0
  178. package/apps/web/upstream/src/res/locales/app.hu-HU.po +1145 -0
  179. package/apps/web/upstream/src/res/locales/app.id-ID.po +1145 -0
  180. package/apps/web/upstream/src/res/locales/app.it-IT.po +1145 -0
  181. package/apps/web/upstream/src/res/locales/app.ja-JP.po +1145 -0
  182. package/apps/web/upstream/src/res/locales/app.ko-KR.po +1145 -0
  183. package/apps/web/upstream/src/res/locales/app.nl-NL.po +1145 -0
  184. package/apps/web/upstream/src/res/locales/app.no-NO.po +1145 -0
  185. package/apps/web/upstream/src/res/locales/app.pl-PL.po +1145 -0
  186. package/apps/web/upstream/src/res/locales/app.pt-BR.po +1145 -0
  187. package/apps/web/upstream/src/res/locales/app.pt-PT.po +1145 -0
  188. package/apps/web/upstream/src/res/locales/app.ro-RO.po +1145 -0
  189. package/apps/web/upstream/src/res/locales/app.ru-RU.po +1145 -0
  190. package/apps/web/upstream/src/res/locales/app.sl-SI.po +1145 -0
  191. package/apps/web/upstream/src/res/locales/app.sq-AL.po +1145 -0
  192. package/apps/web/upstream/src/res/locales/app.sr-SP.po +1145 -0
  193. package/apps/web/upstream/src/res/locales/app.sv-SE.po +1145 -0
  194. package/apps/web/upstream/src/res/locales/app.tr-TR.po +1145 -0
  195. package/apps/web/upstream/src/res/locales/app.uk-UA.po +1145 -0
  196. package/apps/web/upstream/src/res/locales/app.vi-VN.po +1145 -0
  197. package/apps/web/upstream/src/res/locales/app.zh-CN.po +1145 -0
  198. package/apps/web/upstream/src/res/locales/app.zh-TW.po +1145 -0
  199. package/apps/web/upstream/src/res/localesList.json +27 -0
  200. package/apps/web/upstream/src/res/logo.png +0 -0
  201. package/apps/web/upstream/src/thirdparty/about.html +43 -0
  202. package/apps/web/upstream/src/thirdparty/index.js +5 -0
  203. package/apps/web/upstream/src/thirdparty/kiwiirccom.vue +185 -0
  204. package/apps/web/upstream/static/config.json +28 -0
  205. package/apps/web/upstream/static/emoticons/smile.png +0 -0
  206. package/apps/web/upstream/static/favicon.png +0 -0
  207. package/apps/web/upstream/static/highlight.mp3 +0 -0
  208. package/apps/web/upstream/static/highlight.ogg +0 -0
  209. package/apps/web/upstream/static/locales/.gitignore +2 -0
  210. package/apps/web/upstream/static/plugins/customise.html.example +10 -0
  211. package/apps/web/upstream/static/themes/coffee/theme.css +145 -0
  212. package/apps/web/upstream/static/themes/common/base.css +1064 -0
  213. package/apps/web/upstream/static/themes/dark/theme.css +196 -0
  214. package/apps/web/upstream/static/themes/default/theme.css +92 -0
  215. package/apps/web/upstream/static/themes/elite/theme.css +248 -0
  216. package/apps/web/upstream/static/themes/grayfox/theme.css +143 -0
  217. package/apps/web/upstream/static/themes/nightswatch/theme.css +367 -0
  218. package/apps/web/upstream/static/themes/osprey/theme.css +115 -0
  219. package/apps/web/upstream/static/themes/radioactive/theme.css +1211 -0
  220. package/apps/web/upstream/static/themes/sky/theme.css +107 -0
  221. package/apps/web/upstream/tests/unit/BatchAdd.spec.js +174 -0
  222. package/apps/web/upstream/tests/unit/MessageParser.spec.js +125 -0
  223. package/apps/web/upstream/tests/unit/Misc.spec.js +24 -0
  224. package/apps/web/upstream/tests/unit/NetworkState.spec.js +58 -0
  225. package/apps/web/upstream/tests/unit/StartupError.spec.js +20 -0
  226. package/apps/web/upstream/vue.config.js +150 -0
  227. package/apps/web/upstream/yarn.lock +9767 -0
  228. package/apps/web/vitest.config.ts +13 -0
  229. package/biome.json +1 -0
  230. package/docs/Home.md +1 -0
  231. package/docs/WebClientGuide.md +535 -0
  232. package/package.json +2 -2
  233. package/packages/aws-adapter/package.json +1 -1
  234. package/packages/cf-adapter/package.json +1 -1
  235. package/packages/cf-adapter/tests/cf-harness.ts +12 -1
  236. package/packages/in-memory-runtime/package.json +1 -1
  237. package/packages/irc-core/package.json +1 -1
  238. package/packages/irc-core/reports/mutation/mutation.html +342 -0
  239. package/packages/irc-core/tests/batch.test.ts +15 -0
  240. package/packages/irc-core/tests/numerics.test.ts +13 -0
  241. package/packages/irc-core/tests/parser.test.ts +109 -0
  242. package/packages/irc-server/package.json +1 -1
  243. package/packages/irc-test-support/package.json +1 -1
  244. package/packages/irc-test-support/src/scenarios.ts +24 -2
  245. package/tools/ci-hardening/package.json +1 -1
  246. package/tools/load-test/package.json +1 -1
  247. package/tools/tcp-ws-forwarder/package.json +1 -1
@@ -0,0 +1,345 @@
1
+ <template>
2
+ <div :class="{'kiwi-channellist-padding-top': !list.length}" class="kiwi-channellist">
3
+ <div class="kiwi-channellist-content-container">
4
+ <div class="kiwi-channellist-nav">
5
+ <form class="u-form u-form--big kiwi-channellist-search" @submit.prevent>
6
+ <input v-model="search" :placeholder="$t('do_search')" class="u-input">
7
+ <a
8
+ :class="{
9
+ 'u-button-primary': !isLoading,
10
+ 'u-button-secondary': isLoading,
11
+ }"
12
+ class="u-button kiwi-channellist-refresh"
13
+ @click="maybeUpdateList"
14
+ >
15
+ <i v-if="!isLoading" class="fa fa-refresh" aria-hidden="true" />
16
+ <i v-else class="fa fa-refresh fa-spin" aria-hidden="true" />
17
+ </a>
18
+ </form>
19
+ <div v-if="list.length" class="kiwi-channellist-pagination">
20
+ <a @click="prevPage"><i class="fa fa-step-backward" aria-hidden="true" /></a>
21
+ {{ page + 1 }} / {{ maxPages + 1 }}
22
+ <a @click="nextPage"><i class="fa fa-step-forward" aria-hidden="true" /></a>
23
+ </div>
24
+ </div>
25
+ <div v-if="!isLoading && !noResults" class="kiwi-channellist-table">
26
+ <div
27
+ v-for="channel in paginated"
28
+ :key="channel.channel"
29
+ class="kiwi-channellist-grid"
30
+ >
31
+ <div
32
+ class="kiwi-channellist-users"
33
+ >{{ channel.num_users || 0 }}</div>
34
+ <div
35
+ class="u-link kiwi-channellist-name"
36
+ @click="joinChannel(channel.channel)"
37
+ >{{ channel.channel }}</div>
38
+ <span
39
+ class="kiwi-channellist-topic"
40
+ v-html="formatAndTrimTopic(channel.topic)"
41
+ />
42
+ <div class="kiwi-channellist-join">
43
+ <a
44
+ class="u-button u-button-primary"
45
+ @click="joinChannel(channel.channel)"
46
+ >{{ $t('container_join') }}</a>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ <div v-else-if="noResults" class="kiwi-channellist-info">
51
+ <p>{{ $t('channel_list_nonefound') }}</p>
52
+ </div>
53
+ <div v-else class="kiwi-channellist-info">{{ $t('channel_list_fetch') }}</div>
54
+ <div class="kiwi-channellist-nav">
55
+ <div v-if="list.length" class="kiwi-channellist-pagination">
56
+ <a @click="prevPage"><i class="fa fa-step-backward" aria-hidden="true" /></a>
57
+ {{ page + 1 }} / {{ maxPages + 1 }}
58
+ <a @click="nextPage"><i class="fa fa-step-forward" aria-hidden="true" /></a>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ </div>
63
+ </template>
64
+
65
+ <script>
66
+ 'kiwi public';
67
+
68
+ import _ from 'lodash';
69
+ import toHtml from '@/libs/renderers/Html';
70
+ import parseMessage from '@/libs/MessageParser';
71
+
72
+ export default {
73
+ props: ['network'],
74
+ data: function data() {
75
+ return {
76
+ sidebarOpen: false,
77
+ page: 0,
78
+ page_size: 200,
79
+ search: '',
80
+ last_updated: 0,
81
+ };
82
+ },
83
+ computed: {
84
+ noResults() {
85
+ return this.listState === 'updated' && this.filteredList.length === 0;
86
+ },
87
+ isLoading() {
88
+ return this.listState === 'updating';
89
+ },
90
+ listState() {
91
+ return this.network.channel_list_state;
92
+ },
93
+ list() {
94
+ return this.network.channel_list || [];
95
+ },
96
+ filteredList() {
97
+ let list = [];
98
+
99
+ if (this.search.length <= 2) {
100
+ list = this.list;
101
+ } else {
102
+ list = this.list.filter((channel) => {
103
+ let found = false;
104
+ if (channel.channel.toLowerCase().indexOf(this.search) > -1) {
105
+ found = true;
106
+ }
107
+ if (channel.topic.toLowerCase().indexOf(this.search) > -1) {
108
+ found = true;
109
+ }
110
+ return found;
111
+ });
112
+ }
113
+
114
+ return _.sortBy(list, 'num_users').reverse();
115
+ },
116
+ paginated() {
117
+ let offset = this.page * this.page_size;
118
+ let list = this.filteredList;
119
+ let channels = [];
120
+ for (let i = offset; i < offset + this.page_size; i++) {
121
+ if (list[i]) {
122
+ channels.push(list[i]);
123
+ }
124
+ }
125
+
126
+ return channels;
127
+ },
128
+ maxPages() {
129
+ return Math.floor(this.filteredList.length / this.page_size);
130
+ },
131
+ canGoForward() {
132
+ return this.page * this.page_size >= this.filteredList.length;
133
+ },
134
+ canGoBackward() {
135
+ return this.page > 0;
136
+ },
137
+ },
138
+ watch: {
139
+ search() {
140
+ this.page = 0;
141
+ },
142
+ },
143
+ methods: {
144
+ nextPage() {
145
+ if (this.page < this.maxPages) {
146
+ this.page++;
147
+ }
148
+ },
149
+ prevPage() {
150
+ if (this.page > 0) {
151
+ this.page--;
152
+ }
153
+ },
154
+ maybeUpdateList() {
155
+ if (this.listState !== 'updating') {
156
+ this.network.ircClient.raw('LIST');
157
+ }
158
+ },
159
+ formatAndTrimTopic(rawTopic) {
160
+ let showModes = this.$state.setting('showChanlistModes');
161
+
162
+ let topic = showModes ? rawTopic : rawTopic.replace(/^\[([^\]]+)\] ?/, '');
163
+ let blocks = parseMessage(topic, { extras: false });
164
+ let content = toHtml(blocks);
165
+ return content;
166
+ },
167
+ joinChannel(channelName) {
168
+ let buffer = this.$state.getBufferByName(this.network.id, channelName);
169
+ if (buffer) {
170
+ // Switch buffer if its already exists
171
+ this.$state.setActiveBuffer(this.network.id, channelName);
172
+ return;
173
+ }
174
+
175
+ this.$state.addBuffer(this.network.id, channelName);
176
+ this.network.ircClient.join(channelName);
177
+ if (this.$state.ui.is_narrow) {
178
+ // This is a mobile device
179
+ // Switch to the channel so the user can see something happend
180
+ this.$state.setActiveBuffer(this.network.id, channelName);
181
+ }
182
+ },
183
+ },
184
+ };
185
+ </script>
186
+
187
+ <style>
188
+
189
+ .kiwi-channellist {
190
+ box-sizing: border-box;
191
+ padding-bottom: 1em;
192
+ text-align: center;
193
+ transition: all 0.6s;
194
+ }
195
+
196
+ .kiwi-channellist-padding-top {
197
+ padding-top: calc(45vh - 80px);
198
+ }
199
+
200
+ .kiwi-channellist-padding-top .kiwi-channellist-nav {
201
+ width: 100%;
202
+ text-align: center;
203
+ }
204
+
205
+ .kiwi-channellist-nav {
206
+ padding: 10px 20px;
207
+ box-sizing: border-box;
208
+ }
209
+
210
+ /* Input form styling */
211
+ .kiwi-channellist-nav .u-form {
212
+ display: flex;
213
+ justify-content: center;
214
+ }
215
+
216
+ .kiwi-channellist-nav .u-form .u-input {
217
+ width: 324px;
218
+ border-top-right-radius: 0;
219
+ border-bottom-right-radius: 0;
220
+ }
221
+
222
+ .kiwi-channellist-nav .u-form .u-button-primary,
223
+ .kiwi-channellist-nav .u-form .u-button-secondary {
224
+ font-size: 1.3em;
225
+ border-radius: 0 5px 5px 0;
226
+ border: none;
227
+ display: flex;
228
+ align-items: center;
229
+ }
230
+
231
+ .kiwi-channellist-nav .u-form .u-button-primary i,
232
+ .kiwi-channellist-nav .u-form .u-button-secondary i {
233
+ margin-left: -2px;
234
+ }
235
+
236
+ .kiwi-channellist-pagination {
237
+ display: inline-block;
238
+ margin: 20px auto 10px auto;
239
+ font-size: 1.2em;
240
+ }
241
+
242
+ .kiwi-channellist-pagination a {
243
+ display: inline-block;
244
+ margin: 0 10px;
245
+ cursor: pointer;
246
+ }
247
+
248
+ .kiwi-channellist-search {
249
+ display: inline-block;
250
+ }
251
+
252
+ .kiwi-channellist-info {
253
+ text-align: center;
254
+ }
255
+
256
+ /* Table Styling */
257
+
258
+ .kiwi-channellist-table {
259
+ margin: 0 auto;
260
+ width: 90%;
261
+ max-width: 1800px;
262
+ box-sizing: border-box;
263
+ }
264
+
265
+ .kiwi-channellist-grid {
266
+ display: grid;
267
+ grid-template-columns: 66px 130px auto min-content;
268
+ border-bottom: 1px solid;
269
+ align-items: center;
270
+ text-align: left;
271
+ }
272
+
273
+ .kiwi-channellist-grid:first-of-type {
274
+ border-top: 1px solid;
275
+ }
276
+
277
+ .kiwi-channellist-users {
278
+ line-height: auto;
279
+ margin-left: 0.2em;
280
+ overflow: hidden;
281
+ padding: 0.3em;
282
+ text-align: left;
283
+ white-space: nowrap;
284
+ }
285
+
286
+ .kiwi-channellist-users::before {
287
+ font-family: fontAwesome, sans-serif;
288
+ padding-right: 0.4em;
289
+ content: '\f007';
290
+ }
291
+
292
+ .kiwi-channellist-name {
293
+ display: block;
294
+ overflow: hidden;
295
+ text-overflow: ellipsis;
296
+ white-space: nowrap;
297
+ }
298
+
299
+ .kiwi-channellist-topic {
300
+ display: inline-block;
301
+ grid-column: 3;
302
+ padding: 0.3em 0.5em;
303
+ }
304
+
305
+ .kiwi-channellist-topic:empty {
306
+ display: none;
307
+ }
308
+
309
+ .kiwi-channellist-join {
310
+ grid-column: 4;
311
+ padding: 0.3em;
312
+ }
313
+
314
+ @media screen and (max-width: 1024px) {
315
+ .kiwi-channellist-padding-top {
316
+ padding-top: 100px;
317
+ }
318
+ }
319
+
320
+ @media screen and (max-width: 770px) {
321
+ .kiwi-channellist-nav .u-form .u-input {
322
+ width: 100%;
323
+ }
324
+
325
+ /* Table Styling */
326
+ .kiwi-channellist-table {
327
+ width: 100%;
328
+ }
329
+
330
+ .kiwi-channellist-grid {
331
+ grid-template-columns: 66px auto min-content;
332
+ }
333
+
334
+ .kiwi-channellist-topic {
335
+ grid-column: 1 / span 3;
336
+ grid-row: 2;
337
+ word-break: break-word;
338
+ }
339
+
340
+ .kiwi-channellist-join {
341
+ grid-column: 3;
342
+ }
343
+ }
344
+
345
+ </style>