<template> <!-- <div class="character-images row">--> <div class="character-images"> <div v-show="loading" class="alert alert-info">Loading images.</div> <template v-if="!loading"> <div class="images-navigate-up"> <i class="fa fa-angle-up"></i> </div> <!-- @click="handleImageClick($event, image)" --> <div v-for="image in images" :key="image.id" class="character-image-wrapper"> <a :href="imageUrl(image)" target="_blank"> <img :src="imageUrl(image)" class="character-image"> </a> <div class="image-description" v-if="!!image.description">{{image.description}}</div> </div> </template> <div v-if="!loading && !images.length" class="alert alert-info">No images.</div> <div class="image-preview" v-show="previewImage" @click="previewImage = ''"> <img :src="previewImage"/> <div class="modal-backdrop show"></div> </div> </div> </template> <script lang="ts"> import {Component, Prop} from '@f-list/vue-ts'; import Vue from 'vue'; import {CharacterImage} from '../../interfaces'; import * as Utils from '../utils'; import {methods} from './data_store'; import {Character} from './interfaces'; import core from '../../chat/core'; @Component export default class ImagesView extends Vue { @Prop({required: true}) private readonly character!: Character; @Prop private readonly usePreview?: boolean; @Prop private readonly injectedImages?: CharacterImage[] | null; private shown = false; previewImage = ''; images: CharacterImage[] = []; loading = true; error = ''; imageUrl = (image: CharacterImage) => methods.imageUrl(image); thumbUrl = (image: CharacterImage) => methods.imageThumbUrl(image); async show(): Promise<void> { if(this.shown) return; try { this.error = ''; this.shown = true; this.loading = true; this.images = await this.resolveImages(); } catch(e) { this.shown = false; if(Utils.isJSONError(e)) this.error = <string>e.response.data.error; Utils.ajaxError(e, 'Unable to load images.'); } this.loading = false; } async resolveImages(): Promise<CharacterImage[]> { if ((this.injectedImages) && (this.injectedImages.length)) { return this.injectedImages; } const c = await core.cache.profileCache.get(this.character.character.name); if ((c) && (c.meta) && (c.meta.images)) { return c.meta.images; } return methods.imagesGet(this.character.character.id); } handleImageClick(e: MouseEvent, image: CharacterImage): void { if(this.usePreview) { this.previewImage = methods.imageUrl(image); e.preventDefault(); } } } </script>