/* 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('
+' + (imageCount - 1) + '
'); ` ); this.add( 'rule34.xxx', `${this.getBaseJsMutatorScript('#image, video')} const content = document.querySelector('#content'); content.remove(); ` ); } getBaseJsMutatorScript(imageSelector: string): string { return `const body = document.querySelector('body'); const img = document.querySelector('${imageSelector}'); const el = document.createElement('div'); el.id = 'flistWrapper'; el.style = 'width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 100000; ' + 'background-color: black; background-size: contain; background-repeat: no-repeat; background-position: top left;'; img.remove(); el.append(img); body.append(el); body.style = 'padding: 0; margin: 0; overflow: hidden; width: 100%; height: 100%'; img.style = 'object-position: top left; object-fit: contain; width: 100%; height: 100%;' if (img.play) { img.muted = true; img.play(); } let removeList = []; body.childNodes.forEach((el) => { if(el.id !== 'flistWrapper') { removeList.push(el); } }); removeList.forEach((el) => el.remove()); removeList = []; `; } }