From 6671fd9374a29331e23f463134c3246d6217f3ea Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sat, 6 Jul 2019 11:49:19 -0500 Subject: [PATCH] Fixed warnings --- bbcode/Editor.vue | 15 ++- bbcode/UrlTagView.vue | 4 +- bbcode/core.ts | 1 + chat/ChatView.vue | 2 + chat/ConversationView.vue | 17 ++-- chat/ImagePreview.vue | 122 ++++++++++++++----------- chat/ad-manager.ts | 9 +- chat/bbcode.ts | 2 +- chat/common.ts | 1 + chat/event-bus.ts | 6 ++ chat/image-preview-mutator.ts | 87 ++++++++++++------ chat/profile_api.ts | 8 +- components/FilterableSelect.vue | 1 + electron/Index.vue | 6 +- readme.md | 4 + site/character_page/character_page.vue | 31 ++++--- site/character_page/infotag.vue | 15 ++- site/character_page/infotags.vue | 3 +- site/character_page/kink.vue | 6 +- site/character_page/kinks.vue | 6 +- site/character_page/match-report.vue | 25 +++-- site/character_page/matcher.ts | 47 ++++++---- tslint.json | 16 ++-- 23 files changed, 261 insertions(+), 173 deletions(-) diff --git a/bbcode/Editor.vue b/bbcode/Editor.vue index 1807ac4..0559702 100644 --- a/bbcode/Editor.vue +++ b/bbcode/Editor.vue @@ -54,7 +54,7 @@ @Prop() readonly classes?: string; @Prop() - readonly value?: string; + readonly value?: string | undefined; @Prop() readonly disabled?: boolean; @Prop() @@ -66,7 +66,8 @@ preview = false; previewWarnings: ReadonlyArray = []; previewResult = ''; - text = this.value !== undefined ? this.value : ''; + // tslint:disable-next-line: no-unnecessary-type-assertion + text: string = (this.value !== undefined ? this.value : '') as string; element!: HTMLTextAreaElement; sizer!: HTMLTextAreaElement; maxHeight!: number; @@ -191,14 +192,19 @@ apply(button: EditorButton): void { // Allow emitted variations for custom buttons. this.$once('insert', (startText: string, endText: string) => this.applyText(startText, endText)); + // noinspection TypeScriptValidateTypes if(button.handler !== undefined) return button.handler.call(this, this); if(button.startText === undefined) button.startText = `[${button.tag}]`; if(button.endText === undefined) button.endText = `[/${button.tag}]`; - if(this.text.length + button.startText.length + button.endText.length > this.maxlength) return; - this.applyText(button.startText, button.endText); + + const ebl = button.endText ? button.endText.length : 0; + const sbl = button.startText ? button.startText.length : 0; + + if(this.text.length + sbl + ebl > this.maxlength) return; + this.applyText(button.startText || '', button.endText || ''); this.lastInput = Date.now(); } @@ -278,6 +284,7 @@ this.previewWarnings = []; this.previewResult = ''; const previewElement = (targetElement.firstChild); + // noinspection TypeScriptValidateTypes if(previewElement.cleanup !== undefined) previewElement.cleanup(); if(targetElement.firstChild !== null) targetElement.removeChild(targetElement.firstChild); } else { diff --git a/bbcode/UrlTagView.vue b/bbcode/UrlTagView.vue index 8b262eb..dd0c7cb 100644 --- a/bbcode/UrlTagView.vue +++ b/bbcode/UrlTagView.vue @@ -35,12 +35,12 @@ @Prop({required: true}) readonly domain!: string; - @Hook("beforeDestroy") + @Hook('beforeDestroy') beforeDestroy(): void { this.dismiss(); } - @Hook("deactivated") + @Hook('deactivated') deactivate(): void { this.dismiss(); } diff --git a/bbcode/core.ts b/bbcode/core.ts index 3a9ad3f..6859036 100644 --- a/bbcode/core.ts +++ b/bbcode/core.ts @@ -17,6 +17,7 @@ function fixURL(url: string): string { return url.replace(/ /g, '%20'); } +// tslint:disable-next-line: max-line-length export function analyzeUrlTag(parser: BBCodeParser, param: string, content: string): {success: boolean, url?: string, domain?: string, textContent: string} { let url: string | undefined, textContent: string = content; let success = true; diff --git a/chat/ChatView.vue b/chat/ChatView.vue index b284afa..722d75c 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -209,6 +209,8 @@ if(!core.state.settings.showNeedsReply) return false; for(let i = conversation.messages.length - 1; i >= 0; --i) { const sender = (>conversation.messages[i]).sender; + + // noinspection TypeScriptValidateTypes if(sender !== undefined) return sender !== core.characters.ownCharacter; } diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index 2a0f425..8a12ec7 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -75,7 +75,7 @@ {{l('admgr.renew')}} @@ -147,7 +147,7 @@ import {Keys} from '../keys'; import {BBCodeView, Editor} from './bbcode'; import CommandHelp from './CommandHelp.vue'; - import { characterImage, getByteLength, getKey } from "./common"; + import { characterImage, getByteLength, getKey } from './common'; import ConversationSettings from './ConversationSettings.vue'; import core from './core'; import {Channel, channelModes, Character, Conversation, Settings} from './interfaces'; @@ -419,22 +419,20 @@ toggleAutoPostAds(): void { - if(this.isAutopostingAds()) { + if(this.isAutopostingAds()) this.stopAutoPostAds(); - } else { + else this.conversation.adManager.start(); - } this.refreshAutoPostingTimer(); } - refreshAutoPostingTimer() { - if (this.autoPostingUpdater) { + refreshAutoPostingTimer(): void { + if (this.autoPostingUpdater) window.clearInterval(this.autoPostingUpdater); - } - if(this.isAutopostingAds() === false) { + if (!this.isAutopostingAds()) { this.adAutoPostUpdate = null; this.adAutoPostNextAd = null; return; @@ -473,6 +471,7 @@ hasSFC(message: Conversation.Message): message is Conversation.SFCMessage { + // noinspection TypeScriptValidateTypes return (>message).sfc !== undefined; } diff --git a/chat/ImagePreview.vue b/chat/ImagePreview.vue index 9382252..7220c42 100644 --- a/chat/ImagePreview.vue +++ b/chat/ImagePreview.vue @@ -20,81 +20,91 @@