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 @@