From 598a67026da5c70afefc7e6e9f694ebd62e3cc34 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sun, 3 Nov 2019 14:42:03 -0600 Subject: [PATCH] Fixed kink group highlighting; fixed character kink comparison; added settings view for F-Chat Rising features; added UI for reming and reordering ads --- chat/ConversationSettings.vue | 49 ++++++++++- chat/ImagePreview.vue | 12 ++- chat/SettingsView.vue | 36 +++++++- chat/UserView.vue | 3 +- chat/common.ts | 4 + chat/image-url-mutator.ts | 38 +++++++- chat/interfaces.ts | 4 + chat/message_view.ts | 2 +- learn/cache-manager.ts | 4 + readme.md | 4 - site/character_page/character_page.vue | 117 ++++++++++++++++++++----- site/character_page/infotag.vue | 3 +- site/character_page/kink.vue | 2 +- site/character_page/kinks.vue | 24 +++-- 14 files changed, 258 insertions(+), 44 deletions(-) diff --git a/chat/ConversationSettings.vue b/chat/ConversationSettings.vue index f6bb062..4ef18c3 100644 --- a/chat/ConversationSettings.vue +++ b/chat/ConversationSettings.vue @@ -35,11 +35,18 @@ -
- + +
Auto-Posting Channel Ads
+ +
+
- + @@ -97,5 +104,39 @@ addAd(): void { this.ads.push(''); } + + + removeAd(index: number): void { + if (confirm('Are you sure you wish to remove this ad?')) { + this.ads.splice(index, 1); + } + } + + + moveAdUp(index: number): void { + const ad = this.ads.splice(index, 1); + + this.ads.splice(index - 1, 0, ad[0]); + } + + + moveAdDown(index: number): void { + const ad = this.ads.splice(index, 1); + + this.ads.splice(index + 1, 0, ad[0]); + } + } - \ No newline at end of file + + + + diff --git a/chat/ImagePreview.vue b/chat/ImagePreview.vue index 3311412..91b736f 100644 --- a/chat/ImagePreview.vue +++ b/chat/ImagePreview.vue @@ -53,11 +53,14 @@ [url=https://imgur.com/gallery/ILsb94I]Imgur gallery[/url] [url=https://imgur.com/CIKv6sA]Imgur image[/url] + + [url=https://imgur.com/a/nMafj]Imgur album[/url] */ import * as _ from 'lodash'; import {Component, Hook} from '@f-list/vue-ts'; import Vue from 'vue'; + import core from './core'; import { EventBus, EventBusEvent } from './event-bus'; import {domain} from '../bbcode/core'; import {ImagePreviewMutator} from './image-preview-mutator'; @@ -224,7 +227,6 @@ 'imagepreview-dismiss', (eventData: EventBusEvent) => { // console.log('Event dismiss', eventData.url); - this.dismiss(eventData.url as string, eventData.force as boolean); } ); @@ -234,6 +236,10 @@ (eventData: EventBusEvent) => { // console.log('Event show', eventData.url); + if (!core.state.settings.risingLinkPreview) { + return; + } + this.show(eventData.url as string); } ); @@ -241,6 +247,10 @@ EventBus.$on( 'imagepreview-toggle-stickyness', (eventData: EventBusEvent) => { + if (!core.state.settings.risingLinkPreview) { + return; + } + const eventUrl = this.jsMutator.mutateUrl(eventData.url as string); if ((this.url === eventUrl) && (this.visible)) diff --git a/chat/SettingsView.vue b/chat/SettingsView.vue index 1a6c600..ff6d637 100644 --- a/chat/SettingsView.vue +++ b/chat/SettingsView.vue @@ -1,7 +1,7 @@