fchat-rising/site/character_page/images.vue

89 lines
3.3 KiB
Vue

<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">
<!-- @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>
<!-- <div class="character-image col-6 col-sm-12 col-md-12" v-for="image in images" :key="image.id">-->
<!-- <img :src="imageUrl(image)" :title="image.description">-->
<!-- </div>-->
<!-- -->
<!-- <a :href="imageUrl(image)" target="_blank" @click="handleImageClick($event, image)">-->
<!-- <img :src="thumbUrl(image)" :title="image.description">-->
<!-- </a>-->
<!-- </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;
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[]> {
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>