mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
eslint: run pnpm eslint --fix
This commit is contained in:
parent
d089002698
commit
a69832e3a3
53 changed files with 633 additions and 615 deletions
|
@ -97,7 +97,7 @@
|
|||
|
||||
// Now, inject our script into the page context.
|
||||
const HOST = location.hostname,
|
||||
SERVER = browser.runtime.getURL("web"),
|
||||
SERVER = browser.runtime.getURL('web'),
|
||||
script = document.createElement('script');
|
||||
|
||||
let FLAVOR =
|
||||
|
|
|
@ -138,7 +138,7 @@ class FFZESBridge {
|
|||
this.port.postMessage(msg);
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
FFZESBridge.Logger = Logger;
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ export default class Actions extends Module {
|
|||
this.actions = {};
|
||||
this.renderers = {};
|
||||
|
||||
this.filterAction = (x) => x.appearance &&
|
||||
this.filterAction = x => x.appearance &&
|
||||
this.renderers[x.appearance.type] &&
|
||||
(! this.renderers[x.appearance.type].load || this.renderers[x.appearance.type].load(x.appearance)) &&
|
||||
(! x.action || this.actions[x.action]);
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
{{ t('setting.actions.chat.target-incompatible', 'Note: This is not compatible with pasting a message into chat, and will not function if that is enabled.') }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -15,7 +15,9 @@
|
|||
v-for="profile in profiles"
|
||||
:key="profile.value"
|
||||
:value="profile.value"
|
||||
>{{ profile.i18n_key ? t(profile.i18n_key, profile.name) : profile.name }}</option>
|
||||
>
|
||||
{{ profile.i18n_key ? t(profile.i18n_key, profile.name) : profile.name }}
|
||||
</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -40,7 +40,7 @@ export const pin = {
|
|||
},
|
||||
|
||||
hidden(data, message, current_room, current_user, mod_icons, instance) {
|
||||
let line = instance;
|
||||
const line = instance;
|
||||
|
||||
if ( ! line )
|
||||
return true;
|
||||
|
|
|
@ -739,10 +739,10 @@ export default class Badges extends Module {
|
|||
}
|
||||
|
||||
return {
|
||||
room_id: room_id,
|
||||
room_login: room_login,
|
||||
user_id: user_id,
|
||||
user_login: user_login,
|
||||
room_id,
|
||||
room_login,
|
||||
user_id,
|
||||
user_login,
|
||||
data
|
||||
};
|
||||
}
|
||||
|
@ -1279,11 +1279,11 @@ export default class Badges extends Module {
|
|||
return;
|
||||
|
||||
if ( d.lifetime )
|
||||
return '\n' + this.i18n.t('badges.subwoofer.lifetime', 'Lifetime Subwoofer');
|
||||
return `\n${ this.i18n.t('badges.subwoofer.lifetime', 'Lifetime Subwoofer')}`;
|
||||
|
||||
return '\n' + this.i18n.t('badges.subwoofer.months', '({count, plural, one {# Month} other {# Months}})', {
|
||||
return `\n${ this.i18n.t('badges.subwoofer.months', '({count, plural, one {# Month} other {# Months}})', {
|
||||
count: d.months
|
||||
});
|
||||
})}`;
|
||||
})
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<template>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -639,7 +639,7 @@ export default class Emotes extends Module {
|
|||
const overrides = {},
|
||||
warnings = {};
|
||||
|
||||
overrides.addFilter = (filter) => {
|
||||
overrides.addFilter = filter => {
|
||||
if ( filter )
|
||||
filter.__source = addon_id;
|
||||
|
||||
|
@ -707,7 +707,7 @@ export default class Emotes extends Module {
|
|||
}
|
||||
|
||||
if ( is_dev ) {
|
||||
overrides.removeFilter = (filter) => {
|
||||
overrides.removeFilter = filter => {
|
||||
let type;
|
||||
if ( typeof filter === 'string' ) type = filter;
|
||||
else type = filter.type;
|
||||
|
@ -1073,7 +1073,7 @@ export default class Emotes extends Module {
|
|||
return;
|
||||
|
||||
// Get the current channel.
|
||||
let room_id = this.parent.context.get('context.channelID'),
|
||||
const room_id = this.parent.context.get('context.channelID'),
|
||||
room_login = this.parent.context.get('context.channel');
|
||||
|
||||
// And now get the current user's available emote sets.
|
||||
|
@ -2269,9 +2269,9 @@ export default class Emotes extends Module {
|
|||
if ( ! set )
|
||||
throw new Error(`Invalid emote set "${set_id}"`);
|
||||
|
||||
let processed = this.processEmote(emote, set_id);
|
||||
const processed = this.processEmote(emote, set_id);
|
||||
if ( ! processed )
|
||||
throw new Error("Invalid emote data object.");
|
||||
throw new Error('Invalid emote data object.');
|
||||
|
||||
const is_disabled = this.shouldFilterEmote(processed, set, set_id);
|
||||
|
||||
|
@ -2284,7 +2284,7 @@ export default class Emotes extends Module {
|
|||
// 6. Old emote disabled. New emote disabled.
|
||||
|
||||
// Are we removing a disabled emote?
|
||||
let removed = set.disabled_emotes[processed.id];
|
||||
const removed = set.disabled_emotes[processed.id];
|
||||
if ( removed ) {
|
||||
delete set.disabled_emotes[processed.id];
|
||||
set.disabled_count--;
|
||||
|
@ -2456,7 +2456,7 @@ export default class Emotes extends Module {
|
|||
const bad_emotes = [];
|
||||
|
||||
for(const emote of ems) {
|
||||
let processed = this.processEmote(emote, set_id);
|
||||
const processed = this.processEmote(emote, set_id);
|
||||
if ( ! processed ) {
|
||||
bad_emotes.push(emote);
|
||||
continue;
|
||||
|
@ -2554,7 +2554,7 @@ export default class Emotes extends Module {
|
|||
}
|
||||
|
||||
if ( emote.modifier && emote.mask?.[1] ) {
|
||||
output = (output || '') + `.modified-emote[data-modifiers~="${emote.id}"] > .chat-line__message--emote {
|
||||
output = `${output || '' }.modified-emote[data-modifiers~="${emote.id}"] > .chat-line__message--emote {
|
||||
-webkit-mask-image: url("${emote.mask[1]}");
|
||||
-webkit-mask-position: center center;
|
||||
}`
|
||||
|
|
|
@ -134,9 +134,7 @@ export default class Chat extends Module {
|
|||
});*/
|
||||
|
||||
this.settings.add('debug.link-resolver.source', {
|
||||
process: (ctx, val) => {
|
||||
return LINK_DATA_HOSTS[val] ?? LINK_DATA_HOSTS.Production;
|
||||
},
|
||||
process: (ctx, val) => LINK_DATA_HOSTS[val] ?? LINK_DATA_HOSTS.Production,
|
||||
|
||||
default: null,
|
||||
ui: {
|
||||
|
@ -1404,17 +1402,17 @@ export default class Chat extends Module {
|
|||
user_ids: 'Please use getUser()'
|
||||
}, true);
|
||||
|
||||
overrides.iterateUsers = function*() {
|
||||
overrides.iterateUsers = function *() {
|
||||
for(const user of this.iterateUsers())
|
||||
yield new Proxy(user, user_proxy);
|
||||
}
|
||||
|
||||
overrides.iterateRooms = function*() {
|
||||
overrides.iterateRooms = function *() {
|
||||
for(const room of this.iterateRooms())
|
||||
yield new Proxy(room, room_proxy);
|
||||
}
|
||||
|
||||
overrides.iterateAllRoomsAndUsers = function*() {
|
||||
overrides.iterateAllRoomsAndUsers = function *() {
|
||||
for(const thing of this.iterateAllRoomsAndUsers())
|
||||
yield new Proxy(thing, (thing instanceof Room)
|
||||
? room_proxy
|
||||
|
@ -1463,13 +1461,13 @@ export default class Chat extends Module {
|
|||
|
||||
if ( is_dev ) {
|
||||
overrides.getUser = (...args) => {
|
||||
let result = this.getUser(...args);
|
||||
const result = this.getUser(...args);
|
||||
if ( result )
|
||||
return new Proxy(result, user_proxy);
|
||||
}
|
||||
|
||||
overrides.getRoom = (...args) => {
|
||||
let result = this.getRoom(...args);
|
||||
const result = this.getRoom(...args);
|
||||
if ( result )
|
||||
return new Proxy(result, room_proxy);
|
||||
}
|
||||
|
@ -1579,7 +1577,7 @@ export default class Chat extends Module {
|
|||
this.emit('chat:reload-data');
|
||||
});
|
||||
|
||||
this.on('load_tracker:complete:chat-data', (list) => {
|
||||
this.on('load_tracker:complete:chat-data', list => {
|
||||
if ( this.triggered_reload ) {
|
||||
const sc = this.resolve('site.chat');
|
||||
if ( sc?.addNotice )
|
||||
|
@ -1649,7 +1647,7 @@ export default class Chat extends Module {
|
|||
|
||||
result.then(value => {
|
||||
// If something is already running, don't override it.
|
||||
let info = this._link_info[url];
|
||||
const info = this._link_info[url];
|
||||
if ( info )
|
||||
return;
|
||||
|
||||
|
@ -2599,7 +2597,7 @@ export default class Chat extends Module {
|
|||
emote = emote_set?.emotes?.[token.id];
|
||||
|
||||
if ( emote ) {
|
||||
let urls = (animated ? emote.animated : null) ?? emote.urls;
|
||||
const urls = (animated ? emote.animated : null) ?? emote.urls;
|
||||
let pair = getBiggestImage(urls);
|
||||
if (! pair )
|
||||
return null;
|
||||
|
|
|
@ -406,7 +406,7 @@ export const Video = {
|
|||
}
|
||||
};
|
||||
|
||||
let length = video.lengthSeconds;
|
||||
const length = video.lengthSeconds;
|
||||
|
||||
return {
|
||||
v: 5,
|
||||
|
@ -483,7 +483,7 @@ export const Video = {
|
|||
type: 'icon',
|
||||
name: 'twitch'
|
||||
},
|
||||
" Twitch • ",
|
||||
' Twitch • ',
|
||||
{
|
||||
type: 'format',
|
||||
format: 'datetime',
|
||||
|
|
|
@ -93,7 +93,7 @@ export default class Room {
|
|||
this.manager.room_ids[this._id] = null;
|
||||
}
|
||||
|
||||
0
|
||||
0
|
||||
merge(other) {
|
||||
if ( ! this.login && other.login )
|
||||
this.login = other.login;
|
||||
|
|
|
@ -1312,13 +1312,13 @@ export const AddonEmotes = {
|
|||
hoverSrcSet = big ? token.animSrcSet2 : token.animSrcSet;
|
||||
}
|
||||
|
||||
let style = undefined, outerStyle = undefined;
|
||||
let style, outerStyle;
|
||||
const mods = token.modifiers || [], ml = mods.length,
|
||||
effects = token.modifier_flags,
|
||||
is_big = (token.big && ! token.can_big && token.height);
|
||||
|
||||
let as_bg = (this.emotes.activeAsBackgroundMask & effects) !== 0;
|
||||
let no_wide = (this.emotes.activeNoWideMask & effects) !== 0;
|
||||
const no_wide = (this.emotes.activeNoWideMask & effects) !== 0;
|
||||
|
||||
if ( no_wide || effects || ml ) {
|
||||
// We need to calculate the size of the emote and the biggest
|
||||
|
@ -1620,19 +1620,19 @@ export const AddonEmotes = {
|
|||
|
||||
const target = this.emotes.getTargetEmote();
|
||||
|
||||
let style = {
|
||||
const style = {
|
||||
width: (target.width ?? 28) * 2,
|
||||
height: (target.height ?? 28) * 2
|
||||
};
|
||||
|
||||
let outerStyle = {
|
||||
const outerStyle = {
|
||||
width: style.width,
|
||||
height: style.height
|
||||
};
|
||||
|
||||
|
||||
let as_bg = (this.emotes.activeAsBackgroundMask & effects) !== 0;
|
||||
let no_wide = (this.emotes.activeNoWideMask & effects) !== 0;
|
||||
const as_bg = (this.emotes.activeAsBackgroundMask & effects) !== 0;
|
||||
const no_wide = (this.emotes.activeNoWideMask & effects) !== 0;
|
||||
|
||||
let changed = false;
|
||||
|
||||
|
@ -2010,7 +2010,7 @@ export const Emoji = {
|
|||
}
|
||||
|
||||
const text = replace ?
|
||||
token.text.replace(JOINER_REPLACEMENT, "\u200d") :
|
||||
token.text.replace(JOINER_REPLACEMENT, '\u200d') :
|
||||
token.text;
|
||||
|
||||
splitter.lastIndex = 0;
|
||||
|
|
|
@ -94,10 +94,12 @@
|
|||
@click="toggleFavorite"
|
||||
>
|
||||
<span class="tw-button-icon__icon">
|
||||
<figure :class="{
|
||||
<figure
|
||||
:class="{
|
||||
'ffz-i-star': isFavorite,
|
||||
'ffz-i-star-empty': ! isFavorite
|
||||
}" />
|
||||
}"
|
||||
/>
|
||||
</span>
|
||||
</button>
|
||||
<div class="tw-flex tw-flex-column tw-align-self-start">
|
||||
|
@ -175,20 +177,20 @@
|
|||
<ReportForm
|
||||
v-if="reporting"
|
||||
:emote="emote"
|
||||
:getFFZ="getFFZ"
|
||||
:get-f-f-z="getFFZ"
|
||||
@close="close"
|
||||
/>
|
||||
<component
|
||||
v-if="! reporting && loaded && hasBody"
|
||||
:is="bodyComponent"
|
||||
v-if="! reporting && loaded && hasBody"
|
||||
:emote="emote"
|
||||
:getFFZ="getFFZ"
|
||||
:get-f-f-z="getFFZ"
|
||||
@close="close"
|
||||
/>
|
||||
<Modifiers
|
||||
v-if="! reporting && raw_modifiers && raw_modifiers.length"
|
||||
:raw_modifiers="raw_modifiers"
|
||||
:getFFZ="getFFZ"
|
||||
:get-f-f-z="getFFZ"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -358,7 +360,7 @@ export default {
|
|||
if ( this.reportTwitchEmote(this.emote.id, this.emote.channel_id) )
|
||||
this.close();
|
||||
|
||||
return;
|
||||
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -371,7 +373,7 @@ export default {
|
|||
parent = document.body;
|
||||
|
||||
const box = el.getBoundingClientRect();
|
||||
let pbox = parent.getBoundingClientRect();
|
||||
const pbox = parent.getBoundingClientRect();
|
||||
|
||||
if ( box.top < pbox.top ) {
|
||||
el.style.top = `${el.offsetTop + (pbox.top - box.top)}px`;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<img
|
||||
class="tw-block tw-image tw-image-avatar"
|
||||
:src="image"
|
||||
/>
|
||||
>
|
||||
</figure>
|
||||
<div class="tw-flex-grow-1">
|
||||
{{ collection.title }}
|
||||
|
|
|
@ -36,12 +36,12 @@
|
|||
{{ t('emote-card.error', 'There was an error loading data.') }}
|
||||
</div>
|
||||
<CollectionEntry
|
||||
v-else
|
||||
v-for="collection in collections"
|
||||
v-else
|
||||
:key="collection.id"
|
||||
:collection="collection"
|
||||
:emote="emote"
|
||||
:getFFZ="getFFZ"
|
||||
:get-f-f-z="getFFZ"
|
||||
:initial="presence.includes(collection.id)"
|
||||
/>
|
||||
</simplebar>
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
/>
|
||||
</div>
|
||||
<div
|
||||
v-if="expanded"
|
||||
v-for="(mod, idx) in modifiers"
|
||||
v-if="expanded"
|
||||
:key="idx"
|
||||
class="tw-pd-05 tw-flex tw-align-items-center tw-border-t"
|
||||
>
|
||||
|
@ -48,7 +48,9 @@
|
|||
</figure>
|
||||
</div>
|
||||
<div class="tw-align-left tw-flex-grow-1 tw-ellipsis tw-mg-x-1">
|
||||
<h4 class="tw-inline" :title="mod.name">{{ mod.name }}</h4>
|
||||
<h4 class="tw-inline" :title="mod.name">
|
||||
{{ mod.name }}
|
||||
</h4>
|
||||
<p
|
||||
v-if="mod.source"
|
||||
class="tw-c-text-alt-2 tw-font-size-6"
|
||||
|
|
|
@ -48,7 +48,9 @@
|
|||
phrase="emote-card.report-details"
|
||||
default="You are reporting this emote for {reason}. Please enter any additional details below:"
|
||||
>
|
||||
<template #reason><code>{{ category.i18n ? t(category.i18n, category.title, category) : category.title }}</code></template>
|
||||
<template #reason>
|
||||
<code>{{ category.i18n ? t(category.i18n, category.title, category) : category.title }}</code>
|
||||
</template>
|
||||
</t-list>
|
||||
</p>
|
||||
|
||||
|
@ -88,12 +90,12 @@
|
|||
>
|
||||
<input
|
||||
:id="'report$' + id + '$reason$' + idx"
|
||||
:name="'report-reasons$' + id"
|
||||
v-model="pendingCategory"
|
||||
:name="'report-reasons$' + id"
|
||||
:value="reason"
|
||||
type="radio"
|
||||
class="ffz-radio__input"
|
||||
/>
|
||||
>
|
||||
<label
|
||||
:for="'report$' + id + '$reason$' + idx"
|
||||
class="tw-block ffz-radio__label tw-pd-r-1 tw-pd-y-1"
|
||||
|
@ -117,7 +119,6 @@
|
|||
</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
</section>
|
||||
</template>
|
||||
|
@ -155,7 +156,7 @@ export default {
|
|||
|
||||
data() {
|
||||
return {
|
||||
REASONS: REASONS,
|
||||
REASONS,
|
||||
id: id++,
|
||||
message: '',
|
||||
pendingCategory: null,
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
<figure class="ffz-emote-card__live-indicator tw-mg-r-05" />
|
||||
{{ t('emote-card.live', 'LIVE') }}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
<template v-if="isSubscriptionEmote">
|
||||
<p v-if="emote.unlocked">
|
||||
|
@ -75,7 +74,7 @@
|
|||
:data-title="extra.name"
|
||||
class="ffz-tooltip"
|
||||
>
|
||||
<img :src="extra.src" :srcset="extra.srcSet" :alt="extra.name" />
|
||||
<img :src="extra.src" :srcset="extra.srcSet" :alt="extra.name">
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="emote.channel_id" class="tw-mg-t-1 tw-flex">
|
||||
|
|
|
@ -213,7 +213,7 @@ export default class EmoteCard extends Module {
|
|||
}
|
||||
|
||||
source = this.i18n.t('emote-card.sub', 'Tier {tier} Sub Emote ({source})', {
|
||||
tier: tier,
|
||||
tier,
|
||||
source: data.owner?.displayName || data.owner?.login
|
||||
});
|
||||
|
||||
|
@ -511,7 +511,7 @@ export default class EmoteCard extends Module {
|
|||
props: {
|
||||
raw_emote: deep_copy(emote),
|
||||
raw_modifiers: modifiers,
|
||||
data: data,
|
||||
data,
|
||||
|
||||
getFFZ: () => this,
|
||||
reportTwitchEmote: (...args) => this.reportTwitchEmote(...args),
|
||||
|
|
|
@ -145,13 +145,13 @@
|
|||
<ManageFFZ
|
||||
v-if="active_tab === 'manage' && ffzEmote"
|
||||
:emote="ffzEmote"
|
||||
:getFFZ="getFFZ"
|
||||
:get-f-f-z="getFFZ"
|
||||
:no-header="true"
|
||||
/>
|
||||
</keep-alive>
|
||||
<div
|
||||
class="tw-c-background-base tw-pd-05"
|
||||
v-if="active_tab === 'urls'"
|
||||
class="tw-c-background-base tw-pd-05"
|
||||
>
|
||||
<table v-if="embed && embed.urls && embed.urls.length">
|
||||
<tbody
|
||||
|
@ -159,7 +159,9 @@
|
|||
:key="idx"
|
||||
>
|
||||
<tr>
|
||||
<td class="tw-c-text-alt-2">{{ tNumber(idx + 1) }}.</td>
|
||||
<td class="tw-c-text-alt-2">
|
||||
{{ tNumber(idx + 1) }}.
|
||||
</td>
|
||||
<td class="tw-pd-x-05 tw-word-break-all">
|
||||
<a
|
||||
:data-url="url.url"
|
||||
|
@ -180,8 +182,8 @@
|
|||
class="ffz-pill"
|
||||
>{{ t('link-card.shortened', 'shortened') }}</span>
|
||||
<span
|
||||
v-if="url.flags"
|
||||
v-for="flag in url.flags"
|
||||
v-if="url.flags"
|
||||
class="ffz-pill ffz-pill--live"
|
||||
>{{ flag }}</span>
|
||||
</td>
|
||||
|
|
|
@ -88,7 +88,7 @@ export default class LinkCard extends Module {
|
|||
|
||||
out.push(createElement('span', url.host));
|
||||
|
||||
let suffix = url.toString().slice(url.origin.length);
|
||||
const suffix = url.toString().slice(url.origin.length);
|
||||
|
||||
if ( suffix.length && suffix !== '/' )
|
||||
out.push(createElement('span', {
|
||||
|
@ -112,7 +112,7 @@ export default class LinkCard extends Module {
|
|||
return;
|
||||
}
|
||||
|
||||
let pos_x = event ? event.clientX : window.innerWidth / 2,
|
||||
const pos_x = event ? event.clientX : window.innerWidth / 2,
|
||||
pos_y = event ? event.clientY + 15 : window.innerHeight / 2;
|
||||
|
||||
/*if ( this.last_card ) {
|
||||
|
@ -150,7 +150,7 @@ export default class LinkCard extends Module {
|
|||
render: h => h('link-card', {
|
||||
props: {
|
||||
url: link,
|
||||
data: data,
|
||||
data,
|
||||
|
||||
use_dest: this.settings.get('link-cards.use-destination'),
|
||||
|
||||
|
|
|
@ -827,7 +827,7 @@ export default {
|
|||
},
|
||||
|
||||
maybeDynamic(data) {
|
||||
let ap = data.appearance;
|
||||
const ap = data.appearance;
|
||||
if (ap?.type === 'dynamic') {
|
||||
const act = this.action_def,
|
||||
ffz = this.vuectx.getFFZ(),
|
||||
|
|
|
@ -156,13 +156,9 @@ const TITLE_MATCH = /^(.+?)?\s*v?(\d+\.\d+\.\d+(?:\-[a-z0-9-]+)?)$/i,
|
|||
|
||||
|
||||
function linkify(text, repo) {
|
||||
text = text.replace(SETTING_REGEX, (_, link) => {
|
||||
return `](~${link})`
|
||||
});
|
||||
text = text.replace(SETTING_REGEX, (_, link) => `](~${link})`);
|
||||
|
||||
return text.replace(ISSUE_REGEX, (_, space, number) => {
|
||||
return `${space}[#${number}](https://github.com/FrankerFaceZ/${repo}/issues/${number})`;
|
||||
});
|
||||
return text.replace(ISSUE_REGEX, (_, space, number) => `${space}[#${number}](https://github.com/FrankerFaceZ/${repo}/issues/${number})`);
|
||||
}
|
||||
|
||||
|
||||
|
@ -248,7 +244,7 @@ export default {
|
|||
description = lines;
|
||||
}
|
||||
|
||||
let message = description.join('\n').trim();
|
||||
const message = description.join('\n').trim();
|
||||
|
||||
const segments = [];
|
||||
|
||||
|
|
|
@ -794,7 +794,7 @@ export default {
|
|||
},
|
||||
|
||||
maybeDynamic(data) {
|
||||
let ap = data.appearance;
|
||||
const ap = data.appearance;
|
||||
if (ap?.type === 'dynamic') {
|
||||
const act = this.data.actions[data.action],
|
||||
ffz = this.context.getFFZ(),
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
class="tw-block tw-font-size-6 tw-full-width ffz-textarea ffz-mg-t-1p"
|
||||
@blur="updateMessage"
|
||||
@input="onMessageChange"
|
||||
/>
|
||||
>
|
||||
<textarea
|
||||
ref="message"
|
||||
class="tw-block tw-font-size-6 tw-full-width ffz-textarea ffz-mg-t-1p tw-border-bottom-left-radius-medium tw-border-bottom-right-radius-medium"
|
||||
|
@ -151,17 +151,25 @@
|
|||
{{ tTime(item.timestamp, 'HH:mm:ss') }}
|
||||
</time>
|
||||
<div v-if="item.pubsub" class="tw-flex-grow-1">
|
||||
<div class="tw-mg-b-05 tw-border-b tw-pd-b-05">{{ item.topic }}</div>
|
||||
<div class="tw-mg-b-05 tw-border-b tw-pd-b-05">
|
||||
{{ item.topic }}
|
||||
</div>
|
||||
<div v-html="highlightJson(item.data)" />
|
||||
</div>
|
||||
<div v-else-if="item.chat" class="tw-flex-grow-1">
|
||||
<div v-if="item.tags" class="ffz-ct--tags">
|
||||
@<template v-for="(tag, key) in item.tags"><span class="ffz-ct--tag">{{ key }}</span>=<span class="ffz-ct--tag-value">{{ tag }}</span>;</template>
|
||||
@<template v-for="(tag, key) in item.tags">
|
||||
<span class="ffz-ct--tag">{{ key }}</span>=<span class="ffz-ct--tag-value">{{ tag }}</span>;
|
||||
</template>
|
||||
</div>
|
||||
<div class="ffz-ct--prefix">
|
||||
<template v-if="item.prefix">:<span v-if="item.user" class="ffz-ct--user">{{ item.user }}</span><span class="ffz-ct--prefix">{{ item.prefix }}</span></template>
|
||||
<template v-if="item.prefix">
|
||||
:<span v-if="item.user" class="ffz-ct--user">{{ item.user }}</span><span class="ffz-ct--prefix">{{ item.prefix }}</span>
|
||||
</template>
|
||||
<span class="ffz-ct--command">{{ item.command }}</span>
|
||||
<template v-if="item.channel">#<span class="ffz-ct--channel">{{ item.channel }}</span></template>
|
||||
<template v-if="item.channel">
|
||||
#<span class="ffz-ct--channel">{{ item.channel }}</span>
|
||||
</template>
|
||||
</div>
|
||||
<div v-if="item.last_param" class="ffz-ct--params">
|
||||
<span v-for="para in item.params" class="ffz-ct--param">{{ para }}</span>
|
||||
|
@ -212,8 +220,8 @@ const IGNORE_COMMANDS = [
|
|||
|
||||
let LOADED_SAMPLES = [
|
||||
{
|
||||
"name": "Ping",
|
||||
"data": "PING :tmi.twitch.tv"
|
||||
'name': 'Ping',
|
||||
'data': 'PING :tmi.twitch.tv'
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -228,7 +236,7 @@ export default {
|
|||
const message = state?.ffz_ct_message ?? samples[0].data;
|
||||
const topic = state?.ffz_ct_topic ?? samples[0].topic ?? '';
|
||||
|
||||
let is_custom = true;
|
||||
const is_custom = true;
|
||||
/*for(const item of samples) {
|
||||
if ( ! item.topic )
|
||||
item.topic = '';
|
||||
|
@ -384,7 +392,7 @@ export default {
|
|||
if ( conn.ws )
|
||||
conn.ws.onmessage = conn.onSocketMessage;
|
||||
|
||||
this.addLog("Started capturing chat.");
|
||||
this.addLog('Started capturing chat.');
|
||||
|
||||
this.listening_chat = true;
|
||||
},
|
||||
|
@ -400,7 +408,7 @@ export default {
|
|||
if ( conn.ws )
|
||||
conn.ws.onmessage = conn.onSocketMessage;
|
||||
|
||||
this.addLog("Stopped capturing chat.");
|
||||
this.addLog('Stopped capturing chat.');
|
||||
|
||||
this.listening_chat = false;
|
||||
},
|
||||
|
@ -451,7 +459,7 @@ export default {
|
|||
return;
|
||||
|
||||
this.chat.on('site.subpump:pubsub-message', this.handlePubsub, this);
|
||||
this.addLog("Started capturing PubSub.");
|
||||
this.addLog('Started capturing PubSub.');
|
||||
|
||||
this.listening_pubsub = true;
|
||||
},
|
||||
|
@ -461,7 +469,7 @@ export default {
|
|||
return;
|
||||
|
||||
this.chat.off('site.subpump:pubsub-message', this.handlePubsub, this);
|
||||
this.addLog("Stopped capturing PubSub.");
|
||||
this.addLog('Stopped capturing PubSub.');
|
||||
|
||||
this.listening_pubsub = false;
|
||||
},
|
||||
|
@ -589,7 +597,7 @@ export default {
|
|||
data = JSON.parse(this.message);
|
||||
} catch(err) {
|
||||
console.error(err);
|
||||
alert("Unable to parse message.");
|
||||
alert('Unable to parse message.');
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -612,7 +620,7 @@ export default {
|
|||
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
alert("Unable to parse message.");
|
||||
alert('Unable to parse message.');
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -56,17 +56,19 @@
|
|||
<img
|
||||
:src="provider.icon"
|
||||
class="tw-image"
|
||||
/>
|
||||
>
|
||||
</div>
|
||||
<div>
|
||||
<h4 v-if="! provider.name">
|
||||
{{ t('emote-source.unknown', 'Unknown ({id})', provider) }}
|
||||
</h4>
|
||||
<h4 v-else>{{
|
||||
<h4 v-else>
|
||||
{{
|
||||
provider.i18n_key
|
||||
? t(provider.i18n_key, provider.name, provider)
|
||||
: provider.name
|
||||
}}</h4>
|
||||
}}
|
||||
</h4>
|
||||
<div v-if="provider.description">
|
||||
{{ provider.desc_i18n_key ? t(provider.desc_i18n_key, provider.description, provider) : provider.description }}
|
||||
</div>
|
||||
|
@ -83,7 +85,7 @@ import settingMixin from '../setting-mixin';
|
|||
import Sortable from 'sortablejs';
|
||||
import { deep_copy } from 'utilities/object';
|
||||
|
||||
let last_id = 0;
|
||||
const last_id = 0;
|
||||
|
||||
export default {
|
||||
mixins: [settingMixin],
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
{{ t('setting.filters.missing', 'This rule of type "{type}" cannot be loaded. It may be from an add-on that is not loaded.', {type: editing && editing.type}) }}
|
||||
</div>
|
||||
<component
|
||||
v-else
|
||||
:is="component"
|
||||
v-else
|
||||
v-model="editing"
|
||||
:type="type"
|
||||
:filters="filters"
|
||||
|
|
|
@ -212,7 +212,7 @@
|
|||
<h1 class="tw-mg-5 ffz-i-zreknarf loading" />
|
||||
</div>
|
||||
<code v-else-if="typeof raw_data === 'string'">{{ raw_data }}</code>
|
||||
<code v-else v-html="highlightJson(raw_data, true)"></code>
|
||||
<code v-else v-html="highlightJson(raw_data, true)" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -100,8 +100,8 @@
|
|||
<input
|
||||
id="ffz:editor:name"
|
||||
ref="name"
|
||||
:disabled="isEphemeral"
|
||||
v-model="name"
|
||||
:disabled="isEphemeral"
|
||||
class="tw-full-width tw-border-radius-medium tw-font-size-6 tw-pd-x-1 tw-pd-y-05 ffz-input"
|
||||
>
|
||||
</div>
|
||||
|
@ -114,8 +114,8 @@
|
|||
<textarea
|
||||
id="ffz:editor:description"
|
||||
ref="desc"
|
||||
:disabled="isEphemeral"
|
||||
v-model="desc"
|
||||
:disabled="isEphemeral"
|
||||
class="tw-full-width tw-border-radius-medium tw-font-size-6 tw-pd-x-1 tw-pd-y-05 ffz-input"
|
||||
/>
|
||||
</div>
|
||||
|
@ -129,8 +129,8 @@
|
|||
<key-picker
|
||||
id="ffz:editor:hotkey"
|
||||
ref="hotkey"
|
||||
:disabled="isEphemeral"
|
||||
v-model="hotkey"
|
||||
:disabled="isEphemeral"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -541,7 +541,7 @@ export default {
|
|||
prof.update({
|
||||
i18n_key: undefined,
|
||||
desc_i18n_key: undefined,
|
||||
description: `${prof.description ? prof.description + '\n' : ''}${this.t('setting.backup-restore.imported-at', 'Imported at {now,datetime}.', {now: new Date})}`
|
||||
description: `${prof.description ? `${prof.description }\n` : ''}${this.t('setting.backup-restore.imported-at', 'Imported at {now,datetime}.', {now: new Date})}`
|
||||
});
|
||||
|
||||
let i = 0;
|
||||
|
|
|
@ -58,7 +58,6 @@
|
|||
{{ t('setting.filter.add-default-tip', 'Add all of the default values to this profile.') }}
|
||||
</span>
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
||||
<filter-editor
|
||||
|
@ -68,7 +67,6 @@
|
|||
:preview="preview"
|
||||
@input="onInput"
|
||||
/>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -42,12 +42,16 @@
|
|||
<div v-if="page == 'versions'">
|
||||
<table>
|
||||
<thead class="tw-border-b tw-pd-b-05 tw-mg-b-05 tw-strong">
|
||||
<th class="tw-pd-r-1">{{ t('socket.info.version', 'Version') }}</th>
|
||||
<th class="tw-pd-r-1">
|
||||
{{ t('socket.info.version', 'Version') }}
|
||||
</th>
|
||||
<th>{{ t('socket.info.count', 'Count') }}</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="entry in version_list" :key="entry[0]">
|
||||
<td class="tw-pd-r-1">{{ entry[0] }}</td>
|
||||
<td class="tw-pd-r-1">
|
||||
{{ entry[0] }}
|
||||
</td>
|
||||
<td>{{ tNumber(entry[1]) }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
@ -56,12 +60,16 @@
|
|||
<div v-if="page == 'commands'">
|
||||
<table>
|
||||
<thead class="tw-border-b tw-pd-b-05 tw-mg-b-05 tw-strong">
|
||||
<th class="tw-pd-r-1">{{ t('socket.info.command', 'Command') }}</th>
|
||||
<th class="tw-pd-r-1">
|
||||
{{ t('socket.info.command', 'Command') }}
|
||||
</th>
|
||||
<th>{{ t('socket.info.count', 'Count') }}</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="entry in command_list" :key="entry[0]">
|
||||
<td class="tw-pd-r-1">{{ entry[0] }}</td>
|
||||
<td class="tw-pd-r-1">
|
||||
{{ entry[0] }}
|
||||
</td>
|
||||
<td>{{ tNumber(entry[1]) }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</div>
|
||||
<template v-else>
|
||||
<button
|
||||
@click="accept"
|
||||
class="tw-button tw-mg-b-05"
|
||||
@click="accept"
|
||||
>
|
||||
<span class="tw-button__text">
|
||||
{{ acceptText }}
|
||||
|
@ -16,8 +16,8 @@
|
|||
</button>
|
||||
<button
|
||||
v-if="! declined"
|
||||
@click="reject"
|
||||
class="tw-button tw-button--text tw-block"
|
||||
@click="reject"
|
||||
>
|
||||
<span class="tw-button__text">
|
||||
{{ t('tooltip.decline-tos', 'I do not accept.') }}
|
||||
|
|
|
@ -30,11 +30,15 @@
|
|||
</div>
|
||||
<div class="ffz--i18n-sub-entry tw-mg-l-05 tw-flex-grow-1">
|
||||
<div v-if="error && ! open">
|
||||
<div class="tw-strong">{{ t('i18n.ui.error', 'Error') }}</div>
|
||||
<div class="tw-strong">
|
||||
{{ t('i18n.ui.error', 'Error') }}
|
||||
</div>
|
||||
<code class="tw-font-size-7 tw-c-text-alt-2">{{ error }}</code>
|
||||
</div>
|
||||
<div v-if="source">
|
||||
<div class="tw-strong">{{ t('i18n.ui.source', 'Source') }}</div>
|
||||
<div class="tw-strong">
|
||||
{{ t('i18n.ui.source', 'Source') }}
|
||||
</div>
|
||||
<div
|
||||
v-for="(line, idx) in source"
|
||||
:key="idx"
|
||||
|
@ -50,7 +54,9 @@
|
|||
</div>
|
||||
</div>
|
||||
<div v-if="context_str && ! open">
|
||||
<div class="tw-strong">{{ t('i18n.ui.context', 'Context') }}</div>
|
||||
<div class="tw-strong">
|
||||
{{ t('i18n.ui.context', 'Context') }}
|
||||
</div>
|
||||
<code class="tw-font-size-7 tw-c-text-alt-2">{{ context_str }}</code>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
class="ffz-dialog tw-elevation-3 tw-c-background-alt tw-c-text-base tw-border tw-flex tw-flex-nowrap tw-flex-column"
|
||||
>
|
||||
<header class="tw-c-background-base tw-full-width tw-align-items-center tw-flex tw-flex-nowrap" @dblclick="resize">
|
||||
<h3 class="ffz-i-zreknarf ffz-i-pd-1">{{ t('i18n.ui.title', 'Translation Tester') }}</h3>
|
||||
<h3 class="ffz-i-zreknarf ffz-i-pd-1">
|
||||
{{ t('i18n.ui.title', 'Translation Tester') }}
|
||||
</h3>
|
||||
<div class="tw-flex-grow-1 tw-pd-x-2">
|
||||
<div class="tw-search-input">
|
||||
<label for="ffz-main-menu.search" class="tw-hide-accessible">{{ t('i18n.ui.search', 'Search Strings') }}</label>
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
:channel="channel"
|
||||
:user="user"
|
||||
:self="self"
|
||||
:getFFZ="getFFZ"
|
||||
:get-f-f-z="getFFZ"
|
||||
@close="close"
|
||||
/>
|
||||
</keep-alive>
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
<template>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
<div />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -42,10 +42,6 @@ export default {
|
|||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
this.detectMonitors();
|
||||
},
|
||||
|
||||
watch: {
|
||||
selected() {
|
||||
if ( ! this.ready || ! this.selected )
|
||||
|
@ -62,6 +58,10 @@ export default {
|
|||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
this.detectMonitors();
|
||||
},
|
||||
|
||||
methods: {
|
||||
async detectMonitors() {
|
||||
let data;
|
||||
|
|
|
@ -42,7 +42,7 @@ export default class BaseSite extends Module {
|
|||
if ( this._reactDom )
|
||||
return this._reactDom;
|
||||
|
||||
let reactDom = this.resolve('site.web_munch')?.getModule?.('react-dom');
|
||||
const reactDom = this.resolve('site.web_munch')?.getModule?.('react-dom');
|
||||
if ( reactDom?.createPortal )
|
||||
return this._reactDom = reactDom;
|
||||
}
|
||||
|
|
|
@ -644,7 +644,7 @@ export default class Metadata extends Module {
|
|||
if ( order != null )
|
||||
el.style.order = order;
|
||||
|
||||
let subcontainer = container;
|
||||
const subcontainer = container;
|
||||
|
||||
/*if ( button )
|
||||
subcontainer = container.querySelector('.tw-flex:last-child') || container;
|
||||
|
|
|
@ -633,7 +633,7 @@ export default class PlayerBase extends Module {
|
|||
default: false,
|
||||
ui: {
|
||||
path: 'Player > General >> Playback',
|
||||
title: "Pause/Unpause the player by clicking.",
|
||||
title: 'Pause/Unpause the player by clicking.',
|
||||
component: 'setting-check-box'
|
||||
}
|
||||
});
|
||||
|
|
|
@ -2572,7 +2572,7 @@ export default class EmoteMenu extends Module {
|
|||
effect_prefix: emote.modifier ? emote.modifier_prefix : false,
|
||||
name: emote.name,
|
||||
favorite: is_fav,
|
||||
locked: locked,
|
||||
locked,
|
||||
hidden: known_hidden.includes(emote.id),
|
||||
height: emote.height,
|
||||
width: emote.width
|
||||
|
|
|
@ -163,31 +163,31 @@ const INLINE_CALLOUT_TYPES = {
|
|||
};
|
||||
|
||||
const CALLOUT_TYPES = {
|
||||
"AppointedModerator": "appointed-moderator",
|
||||
"BitsBadgeTier": "bits-badge-tier",
|
||||
"BitsPowerUps": "bits-power-ups",
|
||||
"ClipLiveNudge": "clip-live-nudge",
|
||||
"CommunityMoment": "community-moment",
|
||||
"CommunityPointsRewards": "community-points-rewards",
|
||||
"CosmicAbyss": "cosmic-abyss",
|
||||
"CreatorAnniversaries": "creator-anniversaries",
|
||||
"Drop": "drop",
|
||||
"EarnedSubBadge": "earned-sub-badge",
|
||||
"FavoritedGuestCollab": "favorited-guest-collab",
|
||||
"GiftBadgeExpiration": "gift-badge-expiration",
|
||||
"GiftBadgeRestored": "gift-badge-restored",
|
||||
"GiftBundleUpSell": "gift-bundle-up-sell",
|
||||
"HypeTrainRewards": "hype-train-rewards",
|
||||
"LapsedBitsUser": "lapsed-bits-user",
|
||||
"PartnerPlusUpSellNudge": "partner-plus-up-sell-nudge",
|
||||
"ReplyByKeyboard": "reply-by-keyboard",
|
||||
"RequestToJoinAccepted": "request-to-join-accepted",
|
||||
"STPromo": "st-promo",
|
||||
"ShareResub": "share-resub",
|
||||
"SubtemberPromoBits": "subtember-promo-bits",
|
||||
"ThankSubGifter": "thank-sub-gifter",
|
||||
"TurnOffAnimatedEmotes": "turn-off-animated-emotes",
|
||||
"WalletDrop": "wallet-drop"
|
||||
'AppointedModerator': 'appointed-moderator',
|
||||
'BitsBadgeTier': 'bits-badge-tier',
|
||||
'BitsPowerUps': 'bits-power-ups',
|
||||
'ClipLiveNudge': 'clip-live-nudge',
|
||||
'CommunityMoment': 'community-moment',
|
||||
'CommunityPointsRewards': 'community-points-rewards',
|
||||
'CosmicAbyss': 'cosmic-abyss',
|
||||
'CreatorAnniversaries': 'creator-anniversaries',
|
||||
'Drop': 'drop',
|
||||
'EarnedSubBadge': 'earned-sub-badge',
|
||||
'FavoritedGuestCollab': 'favorited-guest-collab',
|
||||
'GiftBadgeExpiration': 'gift-badge-expiration',
|
||||
'GiftBadgeRestored': 'gift-badge-restored',
|
||||
'GiftBundleUpSell': 'gift-bundle-up-sell',
|
||||
'HypeTrainRewards': 'hype-train-rewards',
|
||||
'LapsedBitsUser': 'lapsed-bits-user',
|
||||
'PartnerPlusUpSellNudge': 'partner-plus-up-sell-nudge',
|
||||
'ReplyByKeyboard': 'reply-by-keyboard',
|
||||
'RequestToJoinAccepted': 'request-to-join-accepted',
|
||||
'STPromo': 'st-promo',
|
||||
'ShareResub': 'share-resub',
|
||||
'SubtemberPromoBits': 'subtember-promo-bits',
|
||||
'ThankSubGifter': 'thank-sub-gifter',
|
||||
'TurnOffAnimatedEmotes': 'turn-off-animated-emotes',
|
||||
'WalletDrop': 'wallet-drop'
|
||||
};
|
||||
|
||||
const UNBLOCKABLE_CALLOUTS = [];
|
||||
|
@ -1641,7 +1641,7 @@ export default class ChatHook extends Module {
|
|||
return;
|
||||
|
||||
t.insertChannelPointMessage(msg);
|
||||
return;
|
||||
|
||||
|
||||
} catch(err) {
|
||||
t.log.error('Error handling reward event:', err);
|
||||
|
@ -2001,7 +2001,7 @@ export default class ChatHook extends Module {
|
|||
const event = inst.props?.event?.callout?.contextMenuProps?.event ?? inst.props?.event,
|
||||
type = event?.type;
|
||||
|
||||
if ( type !== 'drop' || inst._ffz_clicking || ! this.chat.context.get("chat.drops.auto-rewards") )
|
||||
if ( type !== 'drop' || inst._ffz_clicking || ! this.chat.context.get('chat.drops.auto-rewards') )
|
||||
return;
|
||||
|
||||
//console.warn('autoClickDrop', event, inst);
|
||||
|
@ -2021,7 +2021,7 @@ export default class ChatHook extends Module {
|
|||
const event = inst.props?.event?.callout?.contextMenuProps?.event ?? inst.props?.event,
|
||||
type = event?.type;
|
||||
|
||||
if ( type !== 'drop' || ! this.chat.context.get("chat.drops.auto-rewards") )
|
||||
if ( type !== 'drop' || ! this.chat.context.get('chat.drops.auto-rewards') )
|
||||
return;
|
||||
|
||||
btn.click();
|
||||
|
@ -3317,7 +3317,7 @@ export default class ChatHook extends Module {
|
|||
id: out.id,
|
||||
displayName: out.user.userDisplayName,
|
||||
login: out.user.userLogin,
|
||||
reward: reward,
|
||||
reward,
|
||||
message: out,
|
||||
userID: out.user.userID,
|
||||
animationID: e.animationID,
|
||||
|
|
|
@ -41,9 +41,7 @@ export default class ChatLine extends Module {
|
|||
this.line_types = {};
|
||||
|
||||
this.line_types.unknown = {
|
||||
renderNotice: (msg, current_user, room, inst, e) => {
|
||||
return `Unknown message type: ${msg.ffz_type}`
|
||||
}
|
||||
renderNotice: (msg, current_user, room, inst, e) => `Unknown message type: ${msg.ffz_type}`
|
||||
};
|
||||
|
||||
this.line_types.notice = {
|
||||
|
@ -179,19 +177,17 @@ export default class ChatLine extends Module {
|
|||
};
|
||||
|
||||
this.line_types.cheer = {
|
||||
renderNotice: (msg, current_user, room, inst, e) => {
|
||||
return this.i18n.tList(
|
||||
renderNotice: (msg, current_user, room, inst, e) => this.i18n.tList(
|
||||
'chat.bits-message',
|
||||
'Cheered {count, plural, one {# Bit} other {# Bits}}',
|
||||
{
|
||||
count: msg.bits || 0
|
||||
}
|
||||
);
|
||||
}
|
||||
)
|
||||
};
|
||||
|
||||
this.line_types.points = {
|
||||
getClass: (msg) => {
|
||||
getClass: msg => {
|
||||
const highlight = msg.ffz_reward_highlight && this.chat.context.get('chat.points.allow-highlight') === 2;
|
||||
|
||||
return `ffz--points-line tw-pd-l-1 tw-pd-r-2 ${highlight ? 'ffz-custom-color ffz--points-highlight' : ''}`;
|
||||
|
|
|
@ -873,9 +873,9 @@ export default class Directory extends Module {
|
|||
else if ( ! el.contains(el.ffz_flags_el) )
|
||||
container.appendChild(el.ffz_flags_el);
|
||||
|
||||
el.ffz_flags_tt.textContent = this.i18n.t('metadata.flags.tooltip', 'Intended for certain audiences. May contain:')
|
||||
+ '\n\n'
|
||||
+ el._ffz_flags.map(x => x.localizedName).join('\n');
|
||||
el.ffz_flags_tt.textContent = `${this.i18n.t('metadata.flags.tooltip', 'Intended for certain audiences. May contain:')
|
||||
}\n\n${
|
||||
el._ffz_flags.map(x => x.localizedName).join('\n')}`;
|
||||
}
|
||||
|
||||
clearFlags(el) {
|
||||
|
|
|
@ -105,7 +105,7 @@ export default class ModView extends Module {
|
|||
const root = this.fine.getReactInstance(el);
|
||||
|
||||
let channel = null;
|
||||
let node = this.fine.searchNode(root, n => {
|
||||
const node = this.fine.searchNode(root, n => {
|
||||
let i = 0;
|
||||
let state = n.memoizedState;
|
||||
while(state != null && channel == null && i < 50) {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="tw-relative">
|
||||
<div class="tw-absolute tw-align-items-center tw-c-text-alt-2 tw-flex tw-full-height ffz-input__icon tw-justify-content-center tw-left-0 tw-top-0 tw-z-default">
|
||||
<figure class="tw-mg-y-05 tw-mg-x-05">
|
||||
<img class="ffz-preview-emote" v-if="val.src" :src="val.src" />
|
||||
<img v-if="val.src" class="ffz-preview-emote" :src="val.src">
|
||||
</figure>
|
||||
</div>
|
||||
<input
|
||||
|
@ -24,7 +24,7 @@
|
|||
@focus="onFocus"
|
||||
@blur="onBlur"
|
||||
@keydown.escape="open = false"
|
||||
/>
|
||||
>
|
||||
<button
|
||||
v-if="clearable"
|
||||
class="tw-absolute tw-right-0 tw-top-0 tw-button tw-button--text ffz-il-tooltip__container"
|
||||
|
@ -65,7 +65,7 @@
|
|||
@blur="onBlur"
|
||||
>
|
||||
<figure :class="`tw-mg-y-05 tw-mg-x-1`">
|
||||
<img :src="i.src" />
|
||||
<img :src="i.src">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
// better use of promise return values in general.
|
||||
|
||||
// bytes.ts
|
||||
var _Bytes = class _Bytes {
|
||||
const _Bytes = class _Bytes {
|
||||
constructor(bytes) {
|
||||
this._bytes = bytes;
|
||||
this.length = bytes.length;
|
||||
|
@ -12,7 +12,7 @@ var _Bytes = class _Bytes {
|
|||
return this._bytes;
|
||||
}
|
||||
async sha1() {
|
||||
const hash = await cryptoSubtle().digest("SHA-1", this._bytes);
|
||||
const hash = await cryptoSubtle().digest('SHA-1', this._bytes);
|
||||
return new _Bytes(new Uint8Array(hash));
|
||||
}
|
||||
concat(other) {
|
||||
|
@ -25,28 +25,28 @@ var _Bytes = class _Bytes {
|
|||
return (await _Bytes.ofUtf8(`blob ${this.length}\0`).concat(this).sha1()).hex();
|
||||
}
|
||||
async hmacSha1(key) {
|
||||
const cryptoKey = await cryptoSubtle().importKey("raw", key._bytes, { name: "HMAC", hash: "SHA-1" }, true, ["sign"]);
|
||||
const sig = await cryptoSubtle().sign("HMAC", cryptoKey, this._bytes);
|
||||
const cryptoKey = await cryptoSubtle().importKey('raw', key._bytes, { name: 'HMAC', hash: 'SHA-1' }, true, ['sign']);
|
||||
const sig = await cryptoSubtle().sign('HMAC', cryptoKey, this._bytes);
|
||||
return new _Bytes(new Uint8Array(sig));
|
||||
}
|
||||
async sha256() {
|
||||
const hash = await cryptoSubtle().digest("SHA-256", this._bytes);
|
||||
const hash = await cryptoSubtle().digest('SHA-256', this._bytes);
|
||||
return new _Bytes(new Uint8Array(hash));
|
||||
}
|
||||
async hmacSha256(key) {
|
||||
const cryptoKey = await cryptoSubtle().importKey("raw", key._bytes, { name: "HMAC", hash: "SHA-256" }, true, ["sign"]);
|
||||
const sig = await cryptoSubtle().sign("HMAC", cryptoKey, this._bytes);
|
||||
const cryptoKey = await cryptoSubtle().importKey('raw', key._bytes, { name: 'HMAC', hash: 'SHA-256' }, true, ['sign']);
|
||||
const sig = await cryptoSubtle().sign('HMAC', cryptoKey, this._bytes);
|
||||
return new _Bytes(new Uint8Array(sig));
|
||||
}
|
||||
hex() {
|
||||
const a = Array.from(this._bytes);
|
||||
return a.map((b) => b.toString(16).padStart(2, "0")).join("");
|
||||
return a.map(b => b.toString(16).padStart(2, '0')).join('');
|
||||
}
|
||||
static ofHex(hex2) {
|
||||
if (hex2 === "") {
|
||||
if (hex2 === '') {
|
||||
return _Bytes.EMPTY;
|
||||
}
|
||||
return new _Bytes(new Uint8Array(hex2.match(/.{1,2}/g).map((byte) => parseInt(byte, 16))));
|
||||
return new _Bytes(new Uint8Array(hex2.match(/.{1,2}/g).map(byte => parseInt(byte, 16))));
|
||||
}
|
||||
utf8() {
|
||||
return new TextDecoder().decode(this._bytes);
|
||||
|
@ -75,7 +75,7 @@ var _Bytes = class _Bytes {
|
|||
return new _Bytes(rt);
|
||||
}
|
||||
static formatSize(sizeInBytes) {
|
||||
const sign = sizeInBytes < 0 ? "-" : "";
|
||||
const sign = sizeInBytes < 0 ? '-' : '';
|
||||
let size = Math.abs(sizeInBytes);
|
||||
if (size < 1024)
|
||||
return `${sign}${size}bytes`;
|
||||
|
@ -85,52 +85,52 @@ var _Bytes = class _Bytes {
|
|||
size = size / 1024;
|
||||
return `${sign}${roundToOneDecimal(size)}mb`;
|
||||
}
|
||||
};
|
||||
_Bytes.EMPTY = new _Bytes(new Uint8Array(0));
|
||||
var Bytes = _Bytes;
|
||||
function roundToOneDecimal(value) {
|
||||
};
|
||||
_Bytes.EMPTY = new _Bytes(new Uint8Array(0));
|
||||
const Bytes = _Bytes;
|
||||
function roundToOneDecimal(value) {
|
||||
return Math.round(value * 10) / 10;
|
||||
}
|
||||
function base64Encode(buf) {
|
||||
let string = "";
|
||||
}
|
||||
function base64Encode(buf) {
|
||||
let string = '';
|
||||
buf.forEach(
|
||||
(byte) => {
|
||||
byte => {
|
||||
string += String.fromCharCode(byte);
|
||||
}
|
||||
);
|
||||
return btoa(string);
|
||||
}
|
||||
function base64Decode(str, urlSafe) {
|
||||
}
|
||||
function base64Decode(str, urlSafe) {
|
||||
if (urlSafe)
|
||||
str = str.replace(/_/g, "/").replace(/-/g, "+");
|
||||
str = str.replace(/_/g, '/').replace(/-/g, '+');
|
||||
str = atob(str);
|
||||
const length = str.length, buf = new ArrayBuffer(length), bufView = new Uint8Array(buf);
|
||||
for (let i = 0; i < length; i++) {
|
||||
bufView[i] = str.charCodeAt(i);
|
||||
}
|
||||
return bufView;
|
||||
}
|
||||
function cryptoSubtle() {
|
||||
}
|
||||
function cryptoSubtle() {
|
||||
return crypto.subtle;
|
||||
}
|
||||
}
|
||||
|
||||
// check.ts
|
||||
function checkEqual(name, value, expected) {
|
||||
// check.ts
|
||||
function checkEqual(name, value, expected) {
|
||||
if (value !== expected)
|
||||
throw new Error(`Bad ${name}: expected ${expected}, found ${value}`);
|
||||
}
|
||||
function check(name, value, isValid) {
|
||||
const valid = typeof isValid === "boolean" && isValid || typeof isValid === "function" && isValid(value);
|
||||
}
|
||||
function check(name, value, isValid) {
|
||||
const valid = typeof isValid === 'boolean' && isValid || typeof isValid === 'function' && isValid(value);
|
||||
if (!valid)
|
||||
throw new Error(`Bad ${name}: ${value}`);
|
||||
}
|
||||
}
|
||||
|
||||
// mqtt/mqtt.ts
|
||||
var Mqtt = class {
|
||||
};
|
||||
/** Enable debug-level logging throughout MqttClient and its dependencies. */
|
||||
Mqtt.DEBUG = false;
|
||||
function encodeVariableByteInteger(value) {
|
||||
// mqtt/mqtt.ts
|
||||
const Mqtt = class {
|
||||
};
|
||||
/** Enable debug-level logging throughout MqttClient and its dependencies. */
|
||||
Mqtt.DEBUG = false;
|
||||
function encodeVariableByteInteger(value) {
|
||||
const rt = [];
|
||||
do {
|
||||
let encodedByte = value % 128;
|
||||
|
@ -141,8 +141,8 @@ var _Bytes = class _Bytes {
|
|||
rt.push(encodedByte);
|
||||
} while (value > 0);
|
||||
return rt;
|
||||
}
|
||||
function decodeVariableByteInteger(buffer, startIndex) {
|
||||
}
|
||||
function decodeVariableByteInteger(buffer, startIndex) {
|
||||
let i = startIndex;
|
||||
let encodedByte = 0;
|
||||
let value = 0;
|
||||
|
@ -151,32 +151,32 @@ var _Bytes = class _Bytes {
|
|||
encodedByte = buffer[i++];
|
||||
value += (encodedByte & 127) * multiplier;
|
||||
if (multiplier > 128 * 128 * 128)
|
||||
throw Error("malformed length");
|
||||
throw Error('malformed length');
|
||||
multiplier *= 128;
|
||||
} while ((encodedByte & 128) != 0);
|
||||
return { value, bytesUsed: i - startIndex };
|
||||
}
|
||||
function encodeUtf8(value) {
|
||||
}
|
||||
function encodeUtf8(value) {
|
||||
const arr = encoder.encode(value);
|
||||
if (arr.length > 65535)
|
||||
throw new Error("the maximum size of a UTF-8 Encoded String is 65,535 bytes.");
|
||||
throw new Error('the maximum size of a UTF-8 Encoded String is 65,535 bytes.');
|
||||
const lengthBytes = [arr.length >> 8, arr.length & 255];
|
||||
return [...lengthBytes, ...arr];
|
||||
}
|
||||
function decodeUtf8(buffer, startIndex) {
|
||||
}
|
||||
function decodeUtf8(buffer, startIndex) {
|
||||
const length = (buffer[startIndex] << 8) + buffer[startIndex + 1];
|
||||
const bytes = buffer.slice(startIndex + 2, startIndex + 2 + length);
|
||||
const text = decoder.decode(bytes);
|
||||
return { text, bytesUsed: length + 2 };
|
||||
}
|
||||
function hex(bytes) {
|
||||
}
|
||||
function hex(bytes) {
|
||||
return new Bytes(bytes instanceof Uint8Array ? bytes : new Uint8Array(bytes)).hex();
|
||||
}
|
||||
var encoder = new TextEncoder();
|
||||
var decoder = new TextDecoder();
|
||||
}
|
||||
var encoder = new TextEncoder();
|
||||
var decoder = new TextDecoder();
|
||||
|
||||
// mqtt/mqtt_messages.ts
|
||||
function readMessage(reader) {
|
||||
// mqtt/mqtt_messages.ts
|
||||
function readMessage(reader) {
|
||||
const { DEBUG } = Mqtt;
|
||||
if (reader.remaining() < 2)
|
||||
return { needsMoreBytes: 2 };
|
||||
|
@ -203,8 +203,8 @@ var _Bytes = class _Bytes {
|
|||
if (controlPacketType === DISCONNECT)
|
||||
return readDisconnect(messageReader, controlPacketFlags, remainingLength);
|
||||
throw new Error(`readMessage: Unsupported controlPacketType: ${controlPacketType}`);
|
||||
}
|
||||
function encodeMessage(message) {
|
||||
}
|
||||
function encodeMessage(message) {
|
||||
if (message.type === CONNECT)
|
||||
return encodeConnect(message);
|
||||
if (message.type === PUBLISH)
|
||||
|
@ -218,36 +218,36 @@ var _Bytes = class _Bytes {
|
|||
if (message.type === DISCONNECT)
|
||||
return encodeDisconnect(message);
|
||||
throw new Error(`encodeMessage: Unsupported controlPacketType: ${message.type}`);
|
||||
}
|
||||
function computeControlPacketTypeName(type) {
|
||||
}
|
||||
function computeControlPacketTypeName(type) {
|
||||
if (type === CONNECT)
|
||||
return "CONNECT";
|
||||
return 'CONNECT';
|
||||
if (type === CONNACK)
|
||||
return "CONNACK";
|
||||
return 'CONNACK';
|
||||
if (type === PUBLISH)
|
||||
return "PUBLISH";
|
||||
return 'PUBLISH';
|
||||
if (type === SUBSCRIBE)
|
||||
return "SUBSCRIBE";
|
||||
return 'SUBSCRIBE';
|
||||
if (type === SUBACK)
|
||||
return "SUBACK";
|
||||
return 'SUBACK';
|
||||
if (type === UNSUBSCRIBE)
|
||||
return "UNSUBSCRIBE";
|
||||
return 'UNSUBSCRIBE';
|
||||
if (type === UNSUBACK)
|
||||
return "UNSUBACK";
|
||||
return 'UNSUBACK';
|
||||
if (type === PINGREQ)
|
||||
return "PINGREQ";
|
||||
return 'PINGREQ';
|
||||
if (type === PINGRESP)
|
||||
return "PINGRESP";
|
||||
return 'PINGRESP';
|
||||
if (type === DISCONNECT)
|
||||
return "DISCONNECT";
|
||||
return 'DISCONNECT';
|
||||
throw new Error(`computeControlPacketTypeName: Unsupported controlPacketType: ${type}`);
|
||||
}
|
||||
var CONNECT = 1;
|
||||
function encodeConnect(message) {
|
||||
}
|
||||
var CONNECT = 1;
|
||||
function encodeConnect(message) {
|
||||
const { type, keepAlive, clientId, username, password, clean } = message;
|
||||
const connectFlags = (username ? 1 : 0) << 7 | 1 << 6 | (clean ? 1 : 0) << 1;
|
||||
const variableHeader = [
|
||||
...encodeUtf8("MQTT"),
|
||||
...encodeUtf8('MQTT'),
|
||||
// protocol name
|
||||
5,
|
||||
// protocol version
|
||||
|
@ -262,9 +262,9 @@ var _Bytes = class _Bytes {
|
|||
...encodeUtf8(password)
|
||||
];
|
||||
return encodePacket(type, { variableHeader, payload });
|
||||
}
|
||||
var CONNACK = 2;
|
||||
function readConnack(reader, controlPacketFlags) {
|
||||
}
|
||||
var CONNACK = 2;
|
||||
function readConnack(reader, controlPacketFlags) {
|
||||
const { DEBUG } = Mqtt;
|
||||
//checkEqual("controlPacketFlags", controlPacketFlags, 0);
|
||||
const connectAcknowledgeFlags = reader.readUint8();
|
||||
|
@ -272,11 +272,11 @@ var _Bytes = class _Bytes {
|
|||
const connectAcknowledgeFlagsReserved = connectAcknowledgeFlags & 254;
|
||||
if (DEBUG)
|
||||
console.log({ sessionPresent, connectAcknowledgeFlagsReserved });
|
||||
checkEqual("connectAcknowledgeFlagsReserved", connectAcknowledgeFlagsReserved, 0);
|
||||
checkEqual('connectAcknowledgeFlagsReserved', connectAcknowledgeFlagsReserved, 0);
|
||||
let rt = { type: CONNACK, sessionPresent };
|
||||
rt = { ...rt, reason: readReason(reader, CONNACK_REASONS) };
|
||||
if (reader.remaining() > 0) {
|
||||
readProperties(reader, (propertyId) => {
|
||||
readProperties(reader, propertyId => {
|
||||
if (propertyId === 17) {
|
||||
const sessionExpiryInterval = reader.readUint32();
|
||||
if (DEBUG)
|
||||
|
@ -286,10 +286,10 @@ var _Bytes = class _Bytes {
|
|||
const maximumQos = reader.readUint8();
|
||||
if (DEBUG)
|
||||
console.log({ maximumQos });
|
||||
check("maximumQos", maximumQos, maximumQos === 0 || maximumQos === 1);
|
||||
check('maximumQos', maximumQos, maximumQos === 0 || maximumQos === 1);
|
||||
rt = { ...rt, maximumQos };
|
||||
} else if (propertyId === 37) {
|
||||
rt = { ...rt, retainAvailable: readBooleanProperty("retainAvailable", reader) };
|
||||
rt = { ...rt, retainAvailable: readBooleanProperty('retainAvailable', reader) };
|
||||
} else if (propertyId === 39) {
|
||||
const maximumPacketSize = reader.readUint32();
|
||||
if (DEBUG)
|
||||
|
@ -306,11 +306,11 @@ var _Bytes = class _Bytes {
|
|||
console.log({ topicAliasMaximum });
|
||||
rt = { ...rt, topicAliasMaximum };
|
||||
} else if (propertyId === 40) {
|
||||
rt = { ...rt, wildcardSubscriptionAvailable: readBooleanProperty("wildcardSubscriptionAvailable", reader) };
|
||||
rt = { ...rt, wildcardSubscriptionAvailable: readBooleanProperty('wildcardSubscriptionAvailable', reader) };
|
||||
} else if (propertyId === 41) {
|
||||
rt = { ...rt, subscriptionIdentifiersAvailable: readBooleanProperty("subscriptionIdentifiersAvailable", reader) };
|
||||
rt = { ...rt, subscriptionIdentifiersAvailable: readBooleanProperty('subscriptionIdentifiersAvailable', reader) };
|
||||
} else if (propertyId === 42) {
|
||||
rt = { ...rt, sharedSubscriptionAvailable: readBooleanProperty("sharedSubscriptionAvailable", reader) };
|
||||
rt = { ...rt, sharedSubscriptionAvailable: readBooleanProperty('sharedSubscriptionAvailable', reader) };
|
||||
} else if (propertyId === 19) {
|
||||
const serverKeepAlive = reader.readUint16();
|
||||
if (DEBUG)
|
||||
|
@ -326,36 +326,36 @@ var _Bytes = class _Bytes {
|
|||
}
|
||||
});
|
||||
}
|
||||
checkEqual("remaining", reader.remaining(), 0);
|
||||
checkEqual('remaining', reader.remaining(), 0);
|
||||
return rt;
|
||||
}
|
||||
var CONNACK_REASONS = {
|
||||
}
|
||||
var CONNACK_REASONS = {
|
||||
// 3.2.2.2 Connect Reason Code
|
||||
0: ["Success", "The Connection is accepted."],
|
||||
128: ["Unspecified error", "The Server does not wish to reveal the reason for the failure, or none of the other Reason Codes apply."],
|
||||
129: ["Malformed Packet", "Data within the CONNECT packet could not be correctly parsed."],
|
||||
130: ["Protocol Error", "Data in the CONNECT packet does not conform to this specification."],
|
||||
131: ["Implementation specific error", "The CONNECT is valid but is not accepted by this Server."],
|
||||
132: ["Unsupported Protocol Version", "The Server does not support the version of the MQTT protocol requested by the Client."],
|
||||
133: ["Client Identifier not valid", "The Client Identifier is a valid string but is not allowed by the Server."],
|
||||
134: ["Bad User Name or Password", "The Server does not accept the User Name or Password specified by the Client"],
|
||||
135: ["Not authorized", "The Client is not authorized to connect."],
|
||||
136: ["Server unavailable", "The MQTT Server is not available."],
|
||||
137: ["Server busy", "The Server is busy. Try again later."],
|
||||
138: ["Banned", "This Client has been banned by administrative action. Contact the server administrator."],
|
||||
140: ["Bad authentication method", "The authentication method is not supported or does not match the authentication method currently in use."],
|
||||
144: ["Topic Name invalid", "The Will Topic Name is not malformed, but is not accepted by this Server."],
|
||||
149: ["Packet too large", "The CONNECT packet exceeded the maximum permissible size."],
|
||||
151: ["Quota exceeded", "An implementation or administrative imposed limit has been exceeded."],
|
||||
153: ["Payload format invalid", "The Will Payload does not match the specified Payload Format Indicator."],
|
||||
154: ["Retain not supported", "The Server does not support retained messages, and Will Retain was set to 1."],
|
||||
155: ["QoS not supported", "The Server does not support the QoS set in Will QoS."],
|
||||
156: ["Use another server", "The Client should temporarily use another server."],
|
||||
157: ["Server moved", "The Client should permanently use another server."],
|
||||
159: ["Connection rate exceeded", "The connection rate limit has been exceeded."]
|
||||
};
|
||||
var PUBLISH = 3;
|
||||
function readPublish(reader, controlPacketFlags) {
|
||||
0: ['Success', 'The Connection is accepted.'],
|
||||
128: ['Unspecified error', 'The Server does not wish to reveal the reason for the failure, or none of the other Reason Codes apply.'],
|
||||
129: ['Malformed Packet', 'Data within the CONNECT packet could not be correctly parsed.'],
|
||||
130: ['Protocol Error', 'Data in the CONNECT packet does not conform to this specification.'],
|
||||
131: ['Implementation specific error', 'The CONNECT is valid but is not accepted by this Server.'],
|
||||
132: ['Unsupported Protocol Version', 'The Server does not support the version of the MQTT protocol requested by the Client.'],
|
||||
133: ['Client Identifier not valid', 'The Client Identifier is a valid string but is not allowed by the Server.'],
|
||||
134: ['Bad User Name or Password', 'The Server does not accept the User Name or Password specified by the Client'],
|
||||
135: ['Not authorized', 'The Client is not authorized to connect.'],
|
||||
136: ['Server unavailable', 'The MQTT Server is not available.'],
|
||||
137: ['Server busy', 'The Server is busy. Try again later.'],
|
||||
138: ['Banned', 'This Client has been banned by administrative action. Contact the server administrator.'],
|
||||
140: ['Bad authentication method', 'The authentication method is not supported or does not match the authentication method currently in use.'],
|
||||
144: ['Topic Name invalid', 'The Will Topic Name is not malformed, but is not accepted by this Server.'],
|
||||
149: ['Packet too large', 'The CONNECT packet exceeded the maximum permissible size.'],
|
||||
151: ['Quota exceeded', 'An implementation or administrative imposed limit has been exceeded.'],
|
||||
153: ['Payload format invalid', 'The Will Payload does not match the specified Payload Format Indicator.'],
|
||||
154: ['Retain not supported', 'The Server does not support retained messages, and Will Retain was set to 1.'],
|
||||
155: ['QoS not supported', 'The Server does not support the QoS set in Will QoS.'],
|
||||
156: ['Use another server', 'The Client should temporarily use another server.'],
|
||||
157: ['Server moved', 'The Client should permanently use another server.'],
|
||||
159: ['Connection rate exceeded', 'The connection rate limit has been exceeded.']
|
||||
};
|
||||
var PUBLISH = 3;
|
||||
function readPublish(reader, controlPacketFlags) {
|
||||
const { DEBUG } = Mqtt;
|
||||
//checkEqual("controlPacketFlags", controlPacketFlags, 0);
|
||||
const dup = (controlPacketFlags & 8) === 8;
|
||||
|
@ -370,12 +370,12 @@ var _Bytes = class _Bytes {
|
|||
if (qosLevel === 1 || qosLevel === 2) {
|
||||
rt = { ...rt, packetId: reader.readUint16() };
|
||||
}
|
||||
readProperties(reader, (propertyId) => {
|
||||
readProperties(reader, propertyId => {
|
||||
if (propertyId === 1) {
|
||||
const payloadFormatIndicator = reader.readUint8();
|
||||
if (DEBUG)
|
||||
console.log({ payloadFormatIndicator });
|
||||
check("payloadFormatIndicator", payloadFormatIndicator, payloadFormatIndicator === 0 || payloadFormatIndicator === 1);
|
||||
check('payloadFormatIndicator', payloadFormatIndicator, payloadFormatIndicator === 0 || payloadFormatIndicator === 1);
|
||||
rt = { ...rt, payloadFormatIndicator };
|
||||
} else if (propertyId === 3) {
|
||||
const contentType = reader.readUtf8();
|
||||
|
@ -388,8 +388,8 @@ var _Bytes = class _Bytes {
|
|||
});
|
||||
rt = { ...rt, payload: reader.readBytes(reader.remaining()) };
|
||||
return rt;
|
||||
}
|
||||
function encodePublish(message) {
|
||||
}
|
||||
function encodePublish(message) {
|
||||
const { payloadFormatIndicator, topic, payload, type, dup, qosLevel, retain, packetId, contentType } = message;
|
||||
if (qosLevel === 1 || qosLevel === 2) {
|
||||
if (packetId === void 0)
|
||||
|
@ -414,9 +414,9 @@ var _Bytes = class _Bytes {
|
|||
...properties
|
||||
];
|
||||
return encodePacket(type, { controlPacketFlags, variableHeader, payload });
|
||||
}
|
||||
var SUBSCRIBE = 8;
|
||||
function encodeSubscribe(message) {
|
||||
}
|
||||
var SUBSCRIBE = 8;
|
||||
function encodeSubscribe(message) {
|
||||
const { type, packetId, subscriptions } = message;
|
||||
const controlPacketFlags = 2;
|
||||
const variableHeader = [
|
||||
|
@ -424,141 +424,141 @@ var _Bytes = class _Bytes {
|
|||
...encodeVariableByteInteger(0)
|
||||
// properties = none
|
||||
];
|
||||
const payload = subscriptions.flatMap((v) => [
|
||||
const payload = subscriptions.flatMap(v => [
|
||||
...encodeUtf8(v.topicFilter),
|
||||
0
|
||||
/* qos 0, no no-local, no retain as published, retain handling = Send retained messages at the time of the subscribe */
|
||||
]);
|
||||
return encodePacket(type, { controlPacketFlags, variableHeader, payload });
|
||||
}
|
||||
var SUBACK = 9;
|
||||
function readSuback(reader, controlPacketFlags) {
|
||||
checkEqual("controlPacketFlags", controlPacketFlags, 0);
|
||||
}
|
||||
var SUBACK = 9;
|
||||
function readSuback(reader, controlPacketFlags) {
|
||||
checkEqual('controlPacketFlags', controlPacketFlags, 0);
|
||||
const packetId = reader.readUint16();
|
||||
const rt = { type: SUBACK, packetId, reasons: [] };
|
||||
readProperties(reader, (propertyId) => {
|
||||
readProperties(reader, propertyId => {
|
||||
throw new Error(`Unsupported propertyId: ${propertyId}`);
|
||||
});
|
||||
while (reader.remaining() > 0) {
|
||||
rt.reasons.push(readReason(reader, SUBACK_REASONS));
|
||||
}
|
||||
return rt;
|
||||
}
|
||||
var SUBACK_REASONS = {
|
||||
}
|
||||
var SUBACK_REASONS = {
|
||||
// 3.9.3 SUBACK Payload
|
||||
0: ["Granted QoS 0", "The subscription is accepted and the maximum QoS sent will be QoS 0. This might be a lower QoS than was requested."],
|
||||
1: ["Granted QoS 1", "The subscription is accepted and the maximum QoS sent will be QoS 1. This might be a lower QoS than was requested."],
|
||||
2: ["Granted QoS 2", "The subscription is accepted and any received QoS will be sent to this subscription."],
|
||||
128: ["Unspecified error", "The subscription is not accepted and the Server either does not wish to reveal the reason or none of the other Reason Codes apply."],
|
||||
131: ["Implementation specific error", "The SUBSCRIBE is valid but the Server does not accept it."],
|
||||
135: ["Not authorized", "The Client is not authorized to make this subscription."],
|
||||
143: ["Topic Filter invalid", "The Topic Filter is correctly formed but is not allowed for this Client."],
|
||||
145: ["Packet Identifier in use", "The specified Packet Identifier is already in use."],
|
||||
151: ["Quota exceeded", "An implementation or administrative imposed limit has been exceeded."],
|
||||
158: ["Shared Subscriptions not supported", "The Server does not support Shared Subscriptions for this Client."],
|
||||
161: ["Subscription Identifiers not supported", "The Server does not support Subscription Identifiers; the subscription is not accepted."],
|
||||
162: ["Wildcard Subscriptions not supported", "The Server does not support Wildcard Subscriptions; the subscription is not accepted."]
|
||||
};
|
||||
var UNSUBSCRIBE = 10;
|
||||
function encodeUnsubscribe(message) {
|
||||
0: ['Granted QoS 0', 'The subscription is accepted and the maximum QoS sent will be QoS 0. This might be a lower QoS than was requested.'],
|
||||
1: ['Granted QoS 1', 'The subscription is accepted and the maximum QoS sent will be QoS 1. This might be a lower QoS than was requested.'],
|
||||
2: ['Granted QoS 2', 'The subscription is accepted and any received QoS will be sent to this subscription.'],
|
||||
128: ['Unspecified error', 'The subscription is not accepted and the Server either does not wish to reveal the reason or none of the other Reason Codes apply.'],
|
||||
131: ['Implementation specific error', 'The SUBSCRIBE is valid but the Server does not accept it.'],
|
||||
135: ['Not authorized', 'The Client is not authorized to make this subscription.'],
|
||||
143: ['Topic Filter invalid', 'The Topic Filter is correctly formed but is not allowed for this Client.'],
|
||||
145: ['Packet Identifier in use', 'The specified Packet Identifier is already in use.'],
|
||||
151: ['Quota exceeded', 'An implementation or administrative imposed limit has been exceeded.'],
|
||||
158: ['Shared Subscriptions not supported', 'The Server does not support Shared Subscriptions for this Client.'],
|
||||
161: ['Subscription Identifiers not supported', 'The Server does not support Subscription Identifiers; the subscription is not accepted.'],
|
||||
162: ['Wildcard Subscriptions not supported', 'The Server does not support Wildcard Subscriptions; the subscription is not accepted.']
|
||||
};
|
||||
var UNSUBSCRIBE = 10;
|
||||
function encodeUnsubscribe(message) {
|
||||
const { type, packetId, unsubscriptions } = message;
|
||||
const variableHeader = [
|
||||
...encodeUint16(packetId),
|
||||
...encodeVariableByteInteger(0)
|
||||
// properties = none
|
||||
];
|
||||
const payload = unsubscriptions.flatMap((v) => [...encodeUtf8(v.topicFilter)]);
|
||||
const payload = unsubscriptions.flatMap(v => [...encodeUtf8(v.topicFilter)]);
|
||||
return encodePacket(type, { variableHeader, payload });
|
||||
}
|
||||
var UNSUBACK = 11;
|
||||
function readUnsuback(reader, controlPacketFlags) {
|
||||
checkEqual("controlPacketFlags", controlPacketFlags, 0);
|
||||
}
|
||||
var UNSUBACK = 11;
|
||||
function readUnsuback(reader, controlPacketFlags) {
|
||||
checkEqual('controlPacketFlags', controlPacketFlags, 0);
|
||||
const packetId = reader.readUint16();
|
||||
const rt = { type: UNSUBACK, packetId, reasons: [] };
|
||||
readProperties(reader, (propertyId) => {
|
||||
readProperties(reader, propertyId => {
|
||||
throw new Error(`Unsupported propertyId: ${propertyId}`);
|
||||
});
|
||||
while (reader.remaining() > 0) {
|
||||
rt.reasons.push(readReason(reader, UNSUBACK_REASONS));
|
||||
}
|
||||
return rt;
|
||||
}
|
||||
var UNSUBACK_REASONS = {
|
||||
0: ["Success", "The subscription is deleted."],
|
||||
17: ["No subscription existed", "No matching Topic Filter is being used by the Client."],
|
||||
128: ["Unspecified error", "The unsubscribe could not be completed and the Server either does not wish to reveal the reason or none of the other Reason Codes apply."],
|
||||
131: ["Implementation specific error", "The UNSUBSCRIBE is valid but the Server does not accept it."],
|
||||
135: ["Not authorized", "The Client is not authorized to unsubscribe."],
|
||||
143: ["Topic Filter invalid", "The Topic Filter is correctly formed but is not allowed for this Client."],
|
||||
145: ["Packet Identifier in use", "The specified Packet Identifier is already in use."]
|
||||
};
|
||||
var PINGREQ = 12;
|
||||
function encodePingreq(message) {
|
||||
}
|
||||
var UNSUBACK_REASONS = {
|
||||
0: ['Success', 'The subscription is deleted.'],
|
||||
17: ['No subscription existed', 'No matching Topic Filter is being used by the Client.'],
|
||||
128: ['Unspecified error', 'The unsubscribe could not be completed and the Server either does not wish to reveal the reason or none of the other Reason Codes apply.'],
|
||||
131: ['Implementation specific error', 'The UNSUBSCRIBE is valid but the Server does not accept it.'],
|
||||
135: ['Not authorized', 'The Client is not authorized to unsubscribe.'],
|
||||
143: ['Topic Filter invalid', 'The Topic Filter is correctly formed but is not allowed for this Client.'],
|
||||
145: ['Packet Identifier in use', 'The specified Packet Identifier is already in use.']
|
||||
};
|
||||
var PINGREQ = 12;
|
||||
function encodePingreq(message) {
|
||||
const { type } = message;
|
||||
return encodePacket(type);
|
||||
}
|
||||
var PINGRESP = 13;
|
||||
function readPingresp(reader, controlPacketFlags) {
|
||||
checkEqual("controlPacketFlags", controlPacketFlags, 0);
|
||||
checkEqual("remaining", reader.remaining(), 0);
|
||||
}
|
||||
var PINGRESP = 13;
|
||||
function readPingresp(reader, controlPacketFlags) {
|
||||
checkEqual('controlPacketFlags', controlPacketFlags, 0);
|
||||
checkEqual('remaining', reader.remaining(), 0);
|
||||
return { type: PINGRESP };
|
||||
}
|
||||
var DISCONNECT = 14;
|
||||
function readDisconnect(reader, controlPacketFlags, remainingLength) {
|
||||
checkEqual("controlPacketFlags", controlPacketFlags, 0);
|
||||
}
|
||||
var DISCONNECT = 14;
|
||||
function readDisconnect(reader, controlPacketFlags, remainingLength) {
|
||||
checkEqual('controlPacketFlags', controlPacketFlags, 0);
|
||||
let rt = { type: DISCONNECT };
|
||||
if (remainingLength > 0) {
|
||||
rt = { ...rt, reason: readReason(reader, DISCONNECT_REASONS) };
|
||||
}
|
||||
if (remainingLength > 1) {
|
||||
readProperties(reader, (propertyId) => {
|
||||
readProperties(reader, propertyId => {
|
||||
throw new Error(`Unsupported propertyId: ${propertyId}`);
|
||||
});
|
||||
}
|
||||
checkEqual("remaining", reader.remaining(), 0);
|
||||
checkEqual('remaining', reader.remaining(), 0);
|
||||
return rt;
|
||||
}
|
||||
var DISCONNECT_REASONS = {
|
||||
}
|
||||
var DISCONNECT_REASONS = {
|
||||
// 3.14.2.1 Disconnect Reason Code
|
||||
0: ["Normal disconnection", "Close the connection normally. Do not send the Will Message."],
|
||||
4: ["Disconnect with Will Message", "The Client wishes to disconnect but requires that the Server also publishes its Will Message."],
|
||||
128: ["Unspecified error", "The Connection is closed but the sender either does not wish to reveal the reason, or none of the other Reason Codes apply."],
|
||||
129: ["Malformed Packet", "The received packet does not conform to this specification."],
|
||||
130: ["Protocol Error", "An unexpected or out of order packet was received."],
|
||||
131: ["Implementation specific error", "The packet received is valid but cannot be processed by this implementation."],
|
||||
135: ["Not authorized", "The request is not authorized."],
|
||||
137: ["Server busy", "The Server is busy and cannot continue processing requests from this Client."],
|
||||
139: ["Server shutting down", "The Server is shutting down."],
|
||||
141: ["Keep Alive timeout", "The Connection is closed because no packet has been received for 1.5 times the Keepalive time."],
|
||||
142: ["Session taken over", "Another Connection using the same ClientID has connected causing this Connection to be closed."],
|
||||
143: ["Topic Filter invalid", "The Topic Filter is correctly formed, but is not accepted by this Sever."],
|
||||
144: ["Topic Name invalid", "The Topic Name is correctly formed, but is not accepted by this Client or Server."],
|
||||
147: ["Receive Maximum exceeded", "The Client or Server has received more than Receive Maximum publication for which it has not sent PUBACK or PUBCOMP."],
|
||||
148: ["Topic Alias invalid", "The Client or Server has received a PUBLISH packet containing a Topic Alias which is greater than the Maximum Topic Alias it sent in the CONNECT or CONNACK packet."],
|
||||
149: ["Packet too large", "The packet size is greater than Maximum Packet Size for this Client or Server."],
|
||||
150: ["Message rate too high", "The received data rate is too high."],
|
||||
151: ["Quota exceeded", "An implementation or administrative imposed limit has been exceeded."],
|
||||
152: ["Administrative action", "The Connection is closed due to an administrative action."],
|
||||
153: ["Payload format invalid", "The payload format does not match the one specified by the Payload Format Indicator."],
|
||||
154: ["Retain not supported", "The Server has does not support retained messages."],
|
||||
155: ["QoS not supported", "The Client specified a QoS greater than the QoS specified in a Maximum QoS in the CONNACK."],
|
||||
156: ["Use another server", "The Client should temporarily change its Server."],
|
||||
157: ["Server moved", "The Server is moved and the Client should permanently change its server location."],
|
||||
158: ["Shared Subscriptions not supported", "The Server does not support Shared Subscriptions."],
|
||||
159: ["Connection rate exceeded", "This connection is closed because the connection rate is too high."],
|
||||
160: ["Maximum connect time", "The maximum connection time authorized for this connection has been exceeded."],
|
||||
161: ["Subscription Identifiers not supported", "The Server does not support Subscription Identifiers; the subscription is not accepted."],
|
||||
162: ["Wildcard Subscriptions not supported", "The Server does not support Wildcard Subscriptions; the subscription is not accepted."]
|
||||
};
|
||||
function encodeDisconnect(message) {
|
||||
0: ['Normal disconnection', 'Close the connection normally. Do not send the Will Message.'],
|
||||
4: ['Disconnect with Will Message', 'The Client wishes to disconnect but requires that the Server also publishes its Will Message.'],
|
||||
128: ['Unspecified error', 'The Connection is closed but the sender either does not wish to reveal the reason, or none of the other Reason Codes apply.'],
|
||||
129: ['Malformed Packet', 'The received packet does not conform to this specification.'],
|
||||
130: ['Protocol Error', 'An unexpected or out of order packet was received.'],
|
||||
131: ['Implementation specific error', 'The packet received is valid but cannot be processed by this implementation.'],
|
||||
135: ['Not authorized', 'The request is not authorized.'],
|
||||
137: ['Server busy', 'The Server is busy and cannot continue processing requests from this Client.'],
|
||||
139: ['Server shutting down', 'The Server is shutting down.'],
|
||||
141: ['Keep Alive timeout', 'The Connection is closed because no packet has been received for 1.5 times the Keepalive time.'],
|
||||
142: ['Session taken over', 'Another Connection using the same ClientID has connected causing this Connection to be closed.'],
|
||||
143: ['Topic Filter invalid', 'The Topic Filter is correctly formed, but is not accepted by this Sever.'],
|
||||
144: ['Topic Name invalid', 'The Topic Name is correctly formed, but is not accepted by this Client or Server.'],
|
||||
147: ['Receive Maximum exceeded', 'The Client or Server has received more than Receive Maximum publication for which it has not sent PUBACK or PUBCOMP.'],
|
||||
148: ['Topic Alias invalid', 'The Client or Server has received a PUBLISH packet containing a Topic Alias which is greater than the Maximum Topic Alias it sent in the CONNECT or CONNACK packet.'],
|
||||
149: ['Packet too large', 'The packet size is greater than Maximum Packet Size for this Client or Server.'],
|
||||
150: ['Message rate too high', 'The received data rate is too high.'],
|
||||
151: ['Quota exceeded', 'An implementation or administrative imposed limit has been exceeded.'],
|
||||
152: ['Administrative action', 'The Connection is closed due to an administrative action.'],
|
||||
153: ['Payload format invalid', 'The payload format does not match the one specified by the Payload Format Indicator.'],
|
||||
154: ['Retain not supported', 'The Server has does not support retained messages.'],
|
||||
155: ['QoS not supported', 'The Client specified a QoS greater than the QoS specified in a Maximum QoS in the CONNACK.'],
|
||||
156: ['Use another server', 'The Client should temporarily change its Server.'],
|
||||
157: ['Server moved', 'The Server is moved and the Client should permanently change its server location.'],
|
||||
158: ['Shared Subscriptions not supported', 'The Server does not support Shared Subscriptions.'],
|
||||
159: ['Connection rate exceeded', 'This connection is closed because the connection rate is too high.'],
|
||||
160: ['Maximum connect time', 'The maximum connection time authorized for this connection has been exceeded.'],
|
||||
161: ['Subscription Identifiers not supported', 'The Server does not support Subscription Identifiers; the subscription is not accepted.'],
|
||||
162: ['Wildcard Subscriptions not supported', 'The Server does not support Wildcard Subscriptions; the subscription is not accepted.']
|
||||
};
|
||||
function encodeDisconnect(message) {
|
||||
const { type, reason } = message;
|
||||
const reasonCode = reason?.code ?? 0;
|
||||
const variableHeader = [
|
||||
reasonCode
|
||||
];
|
||||
return encodePacket(type, { variableHeader });
|
||||
}
|
||||
function readReason(reader, table) {
|
||||
}
|
||||
function readReason(reader, table) {
|
||||
const { DEBUG } = Mqtt;
|
||||
const code = reader.readUint8();
|
||||
const [name, description] = table[code] ?? [void 0, void 0];
|
||||
|
@ -566,9 +566,9 @@ var _Bytes = class _Bytes {
|
|||
if (DEBUG)
|
||||
console.log({ reason });
|
||||
return reason;
|
||||
}
|
||||
var EMPTY_BYTES = new Uint8Array(0);
|
||||
function readProperties(reader, handler) {
|
||||
}
|
||||
var EMPTY_BYTES = new Uint8Array(0);
|
||||
function readProperties(reader, handler) {
|
||||
const { DEBUG } = Mqtt;
|
||||
const propertiesLength = reader.readVariableByteInteger();
|
||||
if (DEBUG)
|
||||
|
@ -580,22 +580,22 @@ var _Bytes = class _Bytes {
|
|||
console.log({ propertyId });
|
||||
handler(propertyId);
|
||||
}
|
||||
}
|
||||
function readBooleanProperty(name, reader) {
|
||||
}
|
||||
function readBooleanProperty(name, reader) {
|
||||
const { DEBUG } = Mqtt;
|
||||
const value = reader.readUint8();
|
||||
if (DEBUG)
|
||||
console.log(Object.fromEntries([[name, value]]));
|
||||
check(name, value, value === 0 || value === 1);
|
||||
return value === 1;
|
||||
}
|
||||
function encodeUint16(value) {
|
||||
}
|
||||
function encodeUint16(value) {
|
||||
const buffer = new ArrayBuffer(2);
|
||||
const view = new DataView(buffer);
|
||||
view.setUint16(0, value);
|
||||
return new Uint8Array(buffer);
|
||||
}
|
||||
function encodePacket(controlPacketType, opts = {}) {
|
||||
}
|
||||
function encodePacket(controlPacketType, opts = {}) {
|
||||
const { DEBUG } = Mqtt;
|
||||
const { controlPacketFlags = 0, variableHeader = [], payload = [] } = opts;
|
||||
const remainingLength = variableHeader.length + payload.length;
|
||||
|
@ -612,8 +612,8 @@ var _Bytes = class _Bytes {
|
|||
if (DEBUG)
|
||||
console.log(`packet: ${hex(packet)}`);
|
||||
return packet;
|
||||
}
|
||||
var Reader = class {
|
||||
}
|
||||
var Reader = class {
|
||||
constructor(bytes, offset) {
|
||||
this.bytes = bytes;
|
||||
this.view = new DataView(bytes.buffer, offset);
|
||||
|
@ -662,36 +662,36 @@ var _Bytes = class _Bytes {
|
|||
if (remaining < length)
|
||||
throw new Error(`reader needs ${length} bytes, has ${remaining} remaining`);
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
// mqtt/web_socket_connection.ts
|
||||
var WebSocketConnection = class _WebSocketConnection {
|
||||
// mqtt/web_socket_connection.ts
|
||||
const WebSocketConnection = class _WebSocketConnection {
|
||||
constructor(ws) {
|
||||
this.onRead = () => {
|
||||
};
|
||||
const { DEBUG } = Mqtt;
|
||||
this.ws = ws;
|
||||
this.completionPromise = new Promise((resolve, reject) => {
|
||||
ws.addEventListener("close", (event) => {
|
||||
ws.addEventListener('close', event => {
|
||||
if (DEBUG)
|
||||
console.log("ws close", event, JSON.stringify(event));
|
||||
console.log('ws close', event, JSON.stringify(event));
|
||||
resolve();
|
||||
});
|
||||
ws.addEventListener("error", (event) => {
|
||||
ws.addEventListener('error', event => {
|
||||
if (DEBUG)
|
||||
console.log("ws error", event);
|
||||
console.log('ws error', event);
|
||||
reject(event.message ?? event);
|
||||
});
|
||||
});
|
||||
ws.addEventListener("message", async (event) => {
|
||||
ws.addEventListener('message', async event => {
|
||||
if (DEBUG)
|
||||
console.log("ws message", typeof event.data, event.data);
|
||||
console.log('ws message', typeof event.data, event.data);
|
||||
if (event.data instanceof Blob) {
|
||||
const bytes = new Uint8Array(await event.data.arrayBuffer());
|
||||
this.onRead(bytes);
|
||||
} else if (event.data instanceof Uint8Array) {
|
||||
let bytes = event.data;
|
||||
if (bytes.constructor.name === "Buffer") {
|
||||
if (bytes.constructor.name === 'Buffer') {
|
||||
bytes = new Uint8Array(bytes.buffer.slice(bytes.byteOffset, bytes.byteOffset + bytes.byteLength));
|
||||
}
|
||||
this.onRead(bytes);
|
||||
|
@ -702,52 +702,52 @@ var _Bytes = class _Bytes {
|
|||
throw new Error(`Unsupported event.data: ${event.data.constructor.name}`);
|
||||
}
|
||||
});
|
||||
ws.addEventListener("open", (event) => {
|
||||
ws.addEventListener('open', event => {
|
||||
if (DEBUG)
|
||||
console.log("ws open", event);
|
||||
console.log('ws open', event);
|
||||
});
|
||||
}
|
||||
static async create(opts) {
|
||||
const { DEBUG } = Mqtt;
|
||||
const { hostname, port, pathname } = opts;
|
||||
if ("accept" in WebSocket.prototype) {
|
||||
if ('accept' in WebSocket.prototype) {
|
||||
if (DEBUG)
|
||||
console.log("Found WebSocket.accept, using Cloudflare workaround");
|
||||
console.log('Found WebSocket.accept, using Cloudflare workaround');
|
||||
if (port !== 443)
|
||||
throw new Error(`Cloudflare Workers only support outgoing WebSocket requests on port 443 (https)`);
|
||||
const url2 = `https://${hostname}${port ? `:${port}` : ''}${pathname ?? ''}`;
|
||||
if (DEBUG)
|
||||
console.log(`Fetching ${url2}`);
|
||||
const resp = await fetch(url2, { headers: { upgrade: "websocket" } });
|
||||
const resp = await fetch(url2, { headers: { upgrade: 'websocket' } });
|
||||
const { webSocket } = resp;
|
||||
if (typeof webSocket !== "object")
|
||||
if (typeof webSocket !== 'object')
|
||||
throw new Error(`Cloudflare fetch response for upgrade request returned no WebSocket`);
|
||||
if (DEBUG)
|
||||
console.log("Calling WebSocket.accept()");
|
||||
console.log('Calling WebSocket.accept()');
|
||||
webSocket.accept();
|
||||
if (DEBUG)
|
||||
console.log("Accepted!");
|
||||
console.log('Accepted!');
|
||||
return new _WebSocketConnection(webSocket);
|
||||
}
|
||||
const url = `wss://${hostname}${port ? `:${port}` : ''}${pathname ?? ''}`;
|
||||
const ws = new WebSocket(url, "mqtt");
|
||||
const ws = new WebSocket(url, 'mqtt');
|
||||
if (DEBUG)
|
||||
console.log(`new WebSocket('${url}', 'mqtt')`);
|
||||
return new Promise((resolve, reject) => {
|
||||
let resolved = false;
|
||||
ws.addEventListener("open", (event) => {
|
||||
ws.addEventListener('open', event => {
|
||||
if (resolved)
|
||||
return;
|
||||
if (DEBUG)
|
||||
console.log("ws open", event);
|
||||
console.log('ws open', event);
|
||||
resolved = true;
|
||||
resolve(new _WebSocketConnection(ws));
|
||||
});
|
||||
ws.addEventListener("error", (event) => {
|
||||
ws.addEventListener('error', event => {
|
||||
if (resolved)
|
||||
return;
|
||||
if (DEBUG)
|
||||
console.log("ws error", event);
|
||||
console.log('ws error', event);
|
||||
resolved = true;
|
||||
reject(event);
|
||||
});
|
||||
|
@ -760,12 +760,12 @@ var _Bytes = class _Bytes {
|
|||
close() {
|
||||
this.ws.close();
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
// mqtt/mqtt_client.ts
|
||||
var DEFAULT_KEEP_ALIVE_SECONDS = 10;
|
||||
var MAX_PACKET_IDS = 256 * 256;
|
||||
var _MqttClient = class _MqttClient {
|
||||
// mqtt/mqtt_client.ts
|
||||
const DEFAULT_KEEP_ALIVE_SECONDS = 10;
|
||||
const MAX_PACKET_IDS = 256 * 256;
|
||||
const _MqttClient = class _MqttClient {
|
||||
/**
|
||||
* Creates a new MqttClient.
|
||||
*
|
||||
|
@ -842,23 +842,23 @@ var _Bytes = class _Bytes {
|
|||
*/
|
||||
async connect(opts) {
|
||||
const { DEBUG } = Mqtt;
|
||||
const { clientId = "", username, password, keepAlive = DEFAULT_KEEP_ALIVE_SECONDS, clean = false } = opts;
|
||||
const { clientId = '', username, password, keepAlive = DEFAULT_KEEP_ALIVE_SECONDS, clean = false } = opts;
|
||||
const { protocol, hostname, port, pathname } = this;
|
||||
if (!this.connection) {
|
||||
this.connection = await _MqttClient.protocolHandlers[protocol]({ hostname, port, pathname });
|
||||
this.connection.onRead = (bytes) => {
|
||||
this.connection.onRead = bytes => {
|
||||
this.processBytes(bytes);
|
||||
};
|
||||
this.connectionCompletion = this.connection.completionPromise.then(() => {
|
||||
if (DEBUG)
|
||||
console.log("read loop done");
|
||||
console.log('read loop done');
|
||||
this.clearPing();
|
||||
this.connection = void 0;
|
||||
if (this.pendingConnect) {
|
||||
this.pendingConnect.reject("Connect failed, connection closed");
|
||||
this.pendingConnect.reject('Connect failed, connection closed');
|
||||
this.pendingConnect = void 0;
|
||||
}
|
||||
}, (e) => {
|
||||
}, e => {
|
||||
console.log(`unhandled read loop error: ${e.stack || e}`);
|
||||
this.clearPing();
|
||||
});
|
||||
|
@ -890,8 +890,8 @@ var _Bytes = class _Bytes {
|
|||
*/
|
||||
async publish(opts) {
|
||||
const { topic, payload: inputPayload, contentType } = opts;
|
||||
const payloadFormatIndicator = typeof inputPayload === "string" ? 1 : 0;
|
||||
const payload = typeof inputPayload === "string" ? Bytes.ofUtf8(inputPayload).array() : inputPayload;
|
||||
const payloadFormatIndicator = typeof inputPayload === 'string' ? 1 : 0;
|
||||
const payload = typeof inputPayload === 'string' ? Bytes.ofUtf8(inputPayload).array() : inputPayload;
|
||||
await this.sendMessage({ type: PUBLISH, dup: false, qosLevel: 0, retain: false, topic, payload, payloadFormatIndicator, contentType });
|
||||
}
|
||||
/**
|
||||
|
@ -906,7 +906,7 @@ var _Bytes = class _Bytes {
|
|||
async subscribe(opts) {
|
||||
const topicFilter = opts.topicFilter ?? opts;
|
||||
const packetId = this.obtainPacketId();
|
||||
const subscriptions = Array.isArray(topicFilter) ? topicFilter.map((filter) => ({ topicFilter: filter })) : [{ topicFilter }];
|
||||
const subscriptions = Array.isArray(topicFilter) ? topicFilter.map(filter => ({ topicFilter: filter })) : [{ topicFilter }];
|
||||
const signal = new Signal();
|
||||
this.pendingSubscribes[packetId] = signal;
|
||||
await this.sendMessage({ type: SUBSCRIBE, packetId, subscriptions });
|
||||
|
@ -922,7 +922,7 @@ var _Bytes = class _Bytes {
|
|||
async unsubscribe(opts) {
|
||||
const topicFilter = opts.topicFilter ?? opts;
|
||||
const packetId = this.obtainPacketId();
|
||||
const unsubscriptions = Array.isArray(topicFilter) ? topicFilter.map((filter) => ({ topicFilter: filter })) : [{ topicFilter }];
|
||||
const unsubscriptions = Array.isArray(topicFilter) ? topicFilter.map(filter => ({ topicFilter: filter })) : [{ topicFilter }];
|
||||
const signal = new Signal();
|
||||
this.pendingUnsubscribes[packetId] = signal;
|
||||
await this.sendMessage({ type: UNSUBSCRIBE, packetId, unsubscriptions });
|
||||
|
@ -970,14 +970,14 @@ var _Bytes = class _Bytes {
|
|||
this.savedBytes.splice(0);
|
||||
}
|
||||
if (DEBUG)
|
||||
console.log("processBytes", bytes.length + " bytes");
|
||||
console.log('processBytes', `${bytes.length } bytes`);
|
||||
if (DEBUG)
|
||||
console.log(hex(bytes));
|
||||
const reader = new Reader(bytes, 0);
|
||||
while (reader.remaining() > 0) {
|
||||
const start = reader.position;
|
||||
const message = readMessage(reader);
|
||||
if ("needsMoreBytes" in message) {
|
||||
if ('needsMoreBytes' in message) {
|
||||
this.savedBytes.push(...bytes.slice(start));
|
||||
return;
|
||||
}
|
||||
|
@ -1004,7 +1004,7 @@ var _Bytes = class _Bytes {
|
|||
this.releasePacketId(packetId);
|
||||
const signal = this.pendingSubscribes[packetId];
|
||||
if (signal) {
|
||||
if (reasons.some((v) => v.code >= 128)) {
|
||||
if (reasons.some(v => v.code >= 128)) {
|
||||
signal.reject(JSON.stringify(reasons));
|
||||
} else {
|
||||
signal.resolve(message);
|
||||
|
@ -1016,7 +1016,7 @@ var _Bytes = class _Bytes {
|
|||
this.releasePacketId(packetId);
|
||||
const signal = this.pendingUnsubscribes[packetId];
|
||||
if (signal) {
|
||||
if (reasons.some((v) => v.code >= 128)) {
|
||||
if (reasons.some(v => v.code >= 128)) {
|
||||
signal.reject(message);
|
||||
} else {
|
||||
signal.resolve(message);
|
||||
|
@ -1035,7 +1035,7 @@ var _Bytes = class _Bytes {
|
|||
if (this.onMqttMessage)
|
||||
this.onMqttMessage(message);
|
||||
}
|
||||
checkEqual("reader.remaining", reader.remaining(), 0);
|
||||
checkEqual('reader.remaining', reader.remaining(), 0);
|
||||
}
|
||||
/** @internal */
|
||||
clearPing() {
|
||||
|
@ -1057,7 +1057,7 @@ var _Bytes = class _Bytes {
|
|||
const intervalMillis = 1e3 / (maxMessagesPerSecond ?? 1);
|
||||
const waitMillis = maxMessagesPerSecond !== void 0 && diff < intervalMillis ? intervalMillis - diff : 0;
|
||||
if (DEBUG)
|
||||
console.log(`Sending ${computeControlPacketTypeName(message.type)}${waitMillis > 0 ? ` (waiting ${waitMillis}ms)` : ""}`);
|
||||
console.log(`Sending ${computeControlPacketTypeName(message.type)}${waitMillis > 0 ? ` (waiting ${waitMillis}ms)` : ''}`);
|
||||
if (waitMillis > 0)
|
||||
await sleep(waitMillis);
|
||||
if (this.receivedDisconnect)
|
||||
|
@ -1067,23 +1067,23 @@ var _Bytes = class _Bytes {
|
|||
await connection.write(encodeMessage(message));
|
||||
this.lastSentMessageTime = Date.now();
|
||||
}
|
||||
};
|
||||
/**
|
||||
};
|
||||
/**
|
||||
* Register a custom implementation for one of the supported protocols.
|
||||
*
|
||||
* e.g. you could write your own 'mqtts' TCP implementation for Node and plug it in here.
|
||||
*/
|
||||
_MqttClient.protocolHandlers = {
|
||||
"mqtts": () => {
|
||||
_MqttClient.protocolHandlers = {
|
||||
'mqtts': () => {
|
||||
throw new Error(`The 'mqtts' protocol is not supported in this environment`);
|
||||
},
|
||||
"wss": WebSocketConnection.create
|
||||
};
|
||||
var MqttClient = _MqttClient;
|
||||
function sleep(ms) {
|
||||
return new Promise((resolve) => setTimeout(resolve, ms));
|
||||
}
|
||||
var Signal = class {
|
||||
'wss': WebSocketConnection.create
|
||||
};
|
||||
const MqttClient = _MqttClient;
|
||||
function sleep(ms) {
|
||||
return new Promise(resolve => setTimeout(resolve, ms));
|
||||
}
|
||||
var Signal = class {
|
||||
constructor() {
|
||||
this.promise = new Promise((resolve, reject) => {
|
||||
this.resolve_ = resolve;
|
||||
|
@ -1096,8 +1096,8 @@ var _Bytes = class _Bytes {
|
|||
reject(reason) {
|
||||
this.reject_(reason);
|
||||
}
|
||||
};
|
||||
export {
|
||||
};
|
||||
export {
|
||||
CONNACK,
|
||||
CONNECT,
|
||||
DISCONNECT,
|
||||
|
@ -1111,4 +1111,4 @@ var _Bytes = class _Bytes {
|
|||
UNSUBACK,
|
||||
UNSUBSCRIBE,
|
||||
computeControlPacketTypeName
|
||||
};
|
||||
};
|
||||
|
|
|
@ -673,7 +673,7 @@ function header_vue(token, h, ctx) {
|
|||
background = renderWithCapture(token.background, h, ctx, token.markdown).content;
|
||||
}
|
||||
|
||||
let subtok = resolveToken(token.sub_logo, ctx);
|
||||
const subtok = resolveToken(token.sub_logo, ctx);
|
||||
if ( ! token.compact && subtok && canShowImage(subtok, ctx) ) {
|
||||
const aspect = subtok.aspect;
|
||||
|
||||
|
@ -848,7 +848,7 @@ function header_normal(token, createElement, ctx) {
|
|||
background = renderWithCapture(token.background, createElement, ctx, token.markdown).content;
|
||||
}
|
||||
|
||||
let subtok = resolveToken(token.sub_logo, ctx);
|
||||
const subtok = resolveToken(token.sub_logo, ctx);
|
||||
if ( ! token.compact && subtok && canShowImage(subtok, ctx) ) {
|
||||
const aspect = subtok.aspect;
|
||||
|
||||
|
@ -1124,7 +1124,7 @@ function findMatchingLocale(locale, list) {
|
|||
}
|
||||
|
||||
// What about partials?
|
||||
let prefixed = `${locale.toLowerCase()}-`;
|
||||
const prefixed = `${locale.toLowerCase()}-`;
|
||||
for(const item of list) {
|
||||
if ( item.toLowerCase().startsWith(prefixed) )
|
||||
return item;
|
||||
|
@ -1141,7 +1141,7 @@ TOKEN_TYPES.i18n_select = function(token, createElement, ctx) {
|
|||
|
||||
// What locale and choices do we have.
|
||||
const choices = token.choices || {};
|
||||
let locale = ctx.i18n?.locale ?? 'en';
|
||||
const locale = ctx.i18n?.locale ?? 'en';
|
||||
|
||||
// Try to find a valid match, or use the default.
|
||||
let selected = findMatchingLocale(locale, Object.keys(choices));
|
||||
|
@ -1182,7 +1182,7 @@ TOKEN_TYPES.link = function(token, createElement, ctx) {
|
|||
klass.push(`ffz-link--inherit`);
|
||||
|
||||
if ( ctx.vue ) {
|
||||
let on = {};
|
||||
const on = {};
|
||||
if ( ctx.link_click_handler )
|
||||
on.click = ctx.link_click_handler;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue