/* tslint:disable:quotemark */ import { domain } from '../bbcode/core'; export interface ImagePreviewMutatorCollection { [key: string]: string; } export class ImagePreviewMutator { private mutators: ImagePreviewMutatorCollection = {}; constructor() { this.init(); } getMutatorJsForSite(url: string): string | undefined { const urlDomain = domain(url); if (!urlDomain) return; console.log('Domain is', urlDomain); const mutatorJs = this.mutators[urlDomain]; if (!mutatorJs) return; return `(() => { try { ${mutatorJs} } catch (err) { console.error(err); } })()`; } protected add(domain: string, mutatorJs: string) { this.mutators[domain] = mutatorJs; } protected init() { this.add('e621.net', this.getBaseJsMutatorScript('#image, video')); this.add('e-hentai.org', this.getBaseJsMutatorScript('#img, video')); this.add('gelbooru.com', this.getBaseJsMutatorScript('#image, video')); this.add('chan.sankakucomplex.com', this.getBaseJsMutatorScript('#image, video')); this.add('gfycat.com', this.getBaseJsMutatorScript('video')); // this fixes videos only -- images are fine as is this.add('i.imgur.com', this.getBaseJsMutatorScript('video')); this.add( 'imgur.com', ` const imageCount = $('.post-image-container').length; ${this.getBaseJsMutatorScript('.image.post-image img, .image.post-image video')} if(imageCount > 1) $('#flistWrapper').append('