Files
watchstate/frontend/pages/backend/[backend]/unmatched.vue

180 lines
6.9 KiB
Vue

<template>
<div>
<div class="columns is-multiline">
<div class="column is-12 is-clearfix is-unselectable">
<span class="title is-4">
<NuxtLink to="/backends" v-text="'Backends'"/>
-
<NuxtLink :to="'/backend/' + backend" v-text="backend"/>
: Unmatched
</span>
<div class="is-pulled-right" v-if="hasLooked">
<div class="field is-grouped">
<p class="control">
<button class="button is-info" @click.prevent="loadContent(false)" :disabled="isLoading"
:class="{'is-loading':isLoading}">
<span class="icon"><i class="fas fa-sync"></i></span>
</button>
</p>
</div>
</div>
<div class="subtitle is-hidden-mobile">
In this page you will find items <code>WatchState</code> knows that are un-matched in your backend.
</div>
</div>
<div class="column is-12" v-if="false === hasLooked">
<div class="card">
<header class="card-header">
<p class="card-header-title is-justify-center">Request Analyze</p>
</header>
<div class="card-content">
<div class="content">
<ul>
<li>
Checking the items will take time, you will see the spinner while <code>WatchState</code> is analyzing
the entire backend libraries content. Do not reload the page.
</li>
</ul>
</div>
</div>
<div class="control">
<button class="button is-fullwidth is-primary" @click="loadContent" :disabled="isLoading">
<span class="icon"><i class="fas fa-check"></i></span>
<span>Initiate The process</span>
</button>
</div>
</div>
</div>
<div class="column is-12" v-if="items.length < 1">
<Message v-if="isLoading" message_class="has-background-info-90 has-text-dark"
title="Analyzing" icon="fas fa-spinner fa-spin"
message="Analyzing the backend content. Please wait. It will take a while..."/>
<Message v-if="!isLoading && hasLooked" message_class="has-background-success-90 has-text-dark"
title="Success!" icon="fas fa-check"
message="WatchState did not find any unmatched content in the libraries we looked at."/>
</div>
<div class="column is-12" v-if="items.length > 1">
<h1 class="title is-4">
<span class="icon-text">
<span class="icon has-text-danger"><i class="fas fa-exclamation-triangle"></i></span>
<span>Unmatched Content</span>
</span>
</h1>
</div>
<div class="column is-6" v-for="item in items">
<div class="card">
<header class="card-header">
<p class="card-header-title is-text-overflow">
<NuxtLink target="_blank" :to="item.webUrl ?? item.url">{{ item.title }}</NuxtLink>
</p>
<div class="card-header-icon" @click="item.showItem = !item.showItem">
<span class="icon has-tooltip" v-tooltip="'Toggle raw data'">
<i class="fas fa-film" :class="{'fa-film': 'Movie' === item.type,'fa-tv': 'Movie' !== item.type}"></i>
</span>
</div>
</header>
<div class="card-content">
<div class="columns is-mobile is-multiline">
<div class="column is-6">
<strong class="is-unselectable">Library:</strong> {{ item.library ?? 'Unknown' }}
</div>
<div class="column is-6 has-text-right">
<strong class="is-unselectable">Type:</strong> <span class="is-capitalized">{{
item.type ?? 'Unknown'
}}</span>
</div>
<div class="column is-6" v-if="0 !== item.year && item.year">
<strong class="is-unselectable">Year:</strong> {{ item.year ?? 'Unknown' }}
</div>
<div class="column is-12 is-clickable has-text-left" v-if="item?.path"
@click="(e) => e.target.firstChild?.classList?.toggle('is-text-overflow')">
<div class="is-text-overflow">
<strong class="is-unselectable">Path:&nbsp;</strong>
<NuxtLink :to="makeSearchLink('path',item.path)" v-text="item.path"/>
</div>
</div>
</div>
</div>
<div class="card-content p-0 m-0" v-if="item?.showItem">
<pre><code>{{ JSON.stringify(item, null, 2) }}</code></pre>
</div>
<div class="card-footer">
<div class="card-footer-item">
<NuxtLink target="_blank" :to="`https://www.imdb.com/find/?q=${fixTitle(item.title)}`">
<span class="icon"><i class="fas fa-search"></i></span>
<span>IMDb</span>
</NuxtLink>
</div>
<div class="card-footer-item">
<NuxtLink target="_blank" :to="`https://www.themoviedb.org/search?query=${fixTitle(item.title)}`">
<span class="icon"><i class="fas fa-search"></i></span>
<span>TMDB</span>
</NuxtLink>
</div>
<div class="card-footer-item">
<NuxtLink target="_blank" :to="`https://thetvdb.com/search?query=${fixTitle(item.title)}`">
<span class="icon"><i class="fas fa-search"></i></span>
<span>TVDB</span>
</NuxtLink>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script setup>
import {makeSearchLink, notification} from '~/utils/index'
import {useSessionCache} from '~/utils/cache'
const backend = useRoute().params.backend
const items = ref([])
const isLoading = ref(false)
const hasLooked = ref(false)
const cache = useSessionCache()
const cacheKey = `backend-${backend}-unmatched`
useHead({title: `Backends: ${backend} - Unmatched items.`})
const loadContent = async (useCache = true) => {
hasLooked.value = true
isLoading.value = true
items.value = []
let response, json;
try {
if (useCache && cache.has(cacheKey)) {
items.value = cache.get(cacheKey)
} else {
response = await request(`/backend/${backend}/unmatched`)
json = await response.json()
cache.set(cacheKey, json)
if (useRoute().name !== 'backend-backend-unmatched') {
return
}
if (!response.ok) {
notification('error', 'Error', `${json.error.code ?? response.status}: ${json.error.message ?? response.statusText}`)
return
}
items.value = json
}
} catch (e) {
hasLooked.value = false
return notification('error', 'Error', e.message)
} finally {
isLoading.value = false
}
}
const fixTitle = (title) => title.replace(/([\[(]).*?([\])])/g, '').replace(/-\w+$/, '').trim()
</script>