376 lines
9.0 KiB
Vue
376 lines
9.0 KiB
Vue
<script setup>
|
|
import { computed, ref, watch } from 'vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import { api } from '../lib/api'
|
|
import { toApiUrl } from '../lib/runtime'
|
|
import { editorNewPath, editorPath, loginPath } from '../lib/paths'
|
|
import { useAuthStore } from '../stores/auth'
|
|
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const auth = useAuthStore()
|
|
|
|
const topicId = computed(() => route.params.topicId)
|
|
const topicName = ref('')
|
|
const tierLists = ref([])
|
|
const error = ref('')
|
|
const query = ref('')
|
|
const brokenThumbnailIds = ref({})
|
|
const isTopicLoading = ref(false)
|
|
const isListView = computed(() => route.query.view === 'list')
|
|
const topicTitle = computed(() => topicName.value || (isTopicLoading.value ? '주제 불러오는 중...' : ''))
|
|
|
|
function fmt(ts) {
|
|
return new Date(ts).toLocaleDateString(undefined, {
|
|
year: 'numeric',
|
|
month: '2-digit',
|
|
day: '2-digit',
|
|
})
|
|
}
|
|
|
|
function displayNameOf(tierList) {
|
|
return tierList.authorName || '알 수 없음'
|
|
}
|
|
|
|
function avatarSrcOf(tierList) {
|
|
return tierList.authorAvatarSrc ? toApiUrl(tierList.authorAvatarSrc) : ''
|
|
}
|
|
|
|
function avatarFallbackOf(tierList) {
|
|
return (tierList.authorAccountName || 'u').trim().charAt(0).toUpperCase() || '?'
|
|
}
|
|
|
|
function tierListThumbnailUrl(tierList) {
|
|
if (!tierList?.id || brokenThumbnailIds.value[tierList.id]) return ''
|
|
return tierList.thumbnailSrc ? toApiUrl(tierList.thumbnailSrc) : ''
|
|
}
|
|
|
|
function handleThumbnailError(tierListId) {
|
|
if (!tierListId || brokenThumbnailIds.value[tierListId]) return
|
|
brokenThumbnailIds.value = { ...brokenThumbnailIds.value, [tierListId]: true }
|
|
}
|
|
|
|
async function loadTierLists() {
|
|
isTopicLoading.value = true
|
|
try {
|
|
const [topicRes, listRes] = await Promise.all([
|
|
api.getTopic(topicId.value),
|
|
api.searchPublicTierListsByTopic(topicId.value, query.value),
|
|
])
|
|
topicName.value = topicRes.topic?.name || ''
|
|
brokenThumbnailIds.value = {}
|
|
tierLists.value = listRes.tierLists || []
|
|
} catch (e) {
|
|
error.value = '주제 정보를 불러오지 못했어요.'
|
|
} finally {
|
|
isTopicLoading.value = false
|
|
}
|
|
}
|
|
|
|
function createNew() {
|
|
const target = editorNewPath(topicId.value)
|
|
if (!auth.user) {
|
|
router.push(loginPath(target))
|
|
return
|
|
}
|
|
router.push(target)
|
|
}
|
|
|
|
function openTierList(id) {
|
|
router.push(editorPath(topicId.value, id))
|
|
}
|
|
|
|
function submitSearch() {
|
|
loadTierLists()
|
|
}
|
|
|
|
watch(
|
|
topicId,
|
|
() => {
|
|
topicName.value = ''
|
|
error.value = ''
|
|
loadTierLists()
|
|
},
|
|
{ immediate: true }
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<section class="pageHead">
|
|
<div class="pageHead__main">
|
|
<div class="pageHead__eyebrow">Collection</div>
|
|
<h2 class="pageHead__title">{{ topicTitle }}</h2>
|
|
<div class="pageHead__desc">이 주제의 공개 티어표를 같은 카드 레이아웃으로 살펴보고 이어서 새 티어표를 만들 수 있어요.</div>
|
|
</div>
|
|
<div class="pageHead__aside toolbar">
|
|
<input v-model="query" class="input" placeholder="제목 또는 작성자 검색" @keydown.enter.prevent="submitSearch" />
|
|
<button class="btn" @click="submitSearch">검색</button>
|
|
</div>
|
|
</section>
|
|
|
|
<div v-if="error" class="error">{{ error }}</div>
|
|
<section class="panel">
|
|
<div v-if="tierLists.length === 0" class="empty">아직 공개 티어표가 없어요.</div>
|
|
<div v-else class="list" :class="{ 'list--table': isListView }">
|
|
<article v-for="t in tierLists" :key="t.id" class="boardCard" :class="{ 'boardCard--list': isListView }">
|
|
<button class="boardCard__body" :class="{ 'boardCard__body--list': isListView }" @click="openTierList(t.id)">
|
|
<div class="boardCard__thumbWrap">
|
|
<img v-if="tierListThumbnailUrl(t)" class="boardCard__thumb" :src="tierListThumbnailUrl(t)" alt="" draggable="false" @error="handleThumbnailError(t.id)" />
|
|
<div v-else class="boardCard__thumbPlaceholder">대표 썸네일</div>
|
|
</div>
|
|
<div class="boardCard__head">
|
|
<div class="boardCard__titleRow">
|
|
<div class="boardCard__title">{{ t.title }}</div>
|
|
<div class="favoriteStat" :title="t.isFavorited ? '이미 즐겨찾기한 티어표' : '즐겨찾기 수'">
|
|
{{ t.isFavorited ? '♥' : '♡' }} {{ t.favoriteCount || 0 }}
|
|
</div>
|
|
</div>
|
|
<div class="boardCard__metaRow">
|
|
<div class="boardCard__author">
|
|
<img v-if="avatarSrcOf(t)" class="boardCard__avatar" :src="avatarSrcOf(t)" :alt="displayNameOf(t)" draggable="false" />
|
|
<div v-else class="boardCard__avatar boardCard__avatar--fallback">{{ avatarFallbackOf(t) }}</div>
|
|
<span class="boardCard__authorName">{{ displayNameOf(t) }}</span>
|
|
</div>
|
|
<div class="boardCard__date">{{ fmt(t.updatedAt) }}</div>
|
|
</div>
|
|
</div>
|
|
</button>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.panel {
|
|
background: transparent;
|
|
border-radius: 0;
|
|
padding: 0;
|
|
}
|
|
.toolbar {
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.input {
|
|
min-width: 240px;
|
|
padding: 11px 13px;
|
|
border-radius: 14px;
|
|
border: 1px solid var(--theme-border);
|
|
background: var(--theme-surface-soft);
|
|
color: var(--theme-text);
|
|
}
|
|
.btn {
|
|
padding: 11px 13px;
|
|
border-radius: 14px;
|
|
border: 1px solid var(--theme-border);
|
|
background: var(--theme-surface-soft-2);
|
|
color: var(--theme-text);
|
|
font-weight: 800;
|
|
cursor: pointer;
|
|
}
|
|
.error {
|
|
margin: 10px 0 14px;
|
|
padding: 10px 12px;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--theme-danger-border);
|
|
background: var(--theme-danger-bg);
|
|
}
|
|
.empty {
|
|
opacity: 0.75;
|
|
}
|
|
.list {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 18px;
|
|
}
|
|
|
|
.list--table {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.boardCard {
|
|
min-width: 0;
|
|
border-radius: 22px;
|
|
border: 1px solid var(--theme-card-border);
|
|
background: var(--theme-card-bg);
|
|
color: var(--theme-text);
|
|
display: grid;
|
|
overflow: hidden;
|
|
box-shadow: inset 0 1px 0 var(--theme-card-shadow);
|
|
transition:
|
|
transform 0.16s ease,
|
|
background 0.16s ease;
|
|
}
|
|
.boardCard:hover {
|
|
background: var(--theme-card-bg-hover);
|
|
transform: translateY(-2px);
|
|
}
|
|
.boardCard__body {
|
|
min-width: 0;
|
|
text-align: left;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
display: grid;
|
|
}
|
|
|
|
.boardCard__body--list {
|
|
grid-template-columns: 76px minmax(0, 1fr);
|
|
align-items: center;
|
|
}
|
|
.boardCard__thumbWrap {
|
|
min-width: 0;
|
|
width: 100%;
|
|
aspect-ratio: 16 / 9;
|
|
padding: 14px 14px 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.boardCard--list .boardCard__thumbWrap {
|
|
aspect-ratio: auto;
|
|
height: 100%;
|
|
padding: 14px 0 14px 14px;
|
|
}
|
|
.boardCard__thumb {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
border-radius: 18px;
|
|
}
|
|
|
|
.boardCard--list .boardCard__thumb,
|
|
.boardCard--list .boardCard__thumbPlaceholder {
|
|
width: 48px;
|
|
height: 48px;
|
|
min-height: 48px;
|
|
border-radius: 12px;
|
|
}
|
|
.boardCard__thumbPlaceholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: var(--theme-thumb-fallback-bg);
|
|
display: grid;
|
|
place-items: center;
|
|
color: var(--theme-text-faint);
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
border-radius: 18px;
|
|
}
|
|
.boardCard__title {
|
|
font-weight: 800;
|
|
min-width: 0;
|
|
font-size: 18px;
|
|
line-height: 1.35;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
word-break: break-word;
|
|
}
|
|
.boardCard__head {
|
|
min-width: 0;
|
|
padding: 16px 18px 18px;
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.boardCard--list .boardCard__head {
|
|
height: 100%;
|
|
padding: 14px 16px 14px 0;
|
|
align-content: center;
|
|
}
|
|
.boardCard__titleRow,
|
|
.boardCard__metaRow {
|
|
min-width: 0;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
}
|
|
|
|
.boardCard__titleRow {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.boardCard__metaRow {
|
|
align-items: flex-end;
|
|
}
|
|
.boardCard__author {
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
display: inline-flex;
|
|
gap: 7px;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
opacity: 0.86;
|
|
overflow: hidden;
|
|
}
|
|
.boardCard__authorName {
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.boardCard__avatar {
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 9999px;
|
|
object-fit: cover;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
background: var(--theme-border);
|
|
flex: 0 0 auto;
|
|
}
|
|
.boardCard__avatar--fallback {
|
|
display: grid;
|
|
place-items: center;
|
|
font-size: 11px;
|
|
font-weight: 900;
|
|
}
|
|
.boardCard__date,
|
|
.favoriteStat {
|
|
flex: 0 0 auto;
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
font-size: 13px;
|
|
color: var(--theme-text-faint);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.boardCard__date {
|
|
font-size: 10px;
|
|
}
|
|
@media (max-width: 900px) {
|
|
.boardCard__body--list {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.boardCard--list .boardCard__head {
|
|
padding: 0 18px 18px;
|
|
}
|
|
|
|
.boardCard--list .boardCard__thumbWrap {
|
|
padding: 14px 14px 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.list {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.toolbar {
|
|
width: 100%;
|
|
}
|
|
|
|
.input {
|
|
min-width: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|