Merge remote-tracking branch 'origin/main' into board-view-profile

This commit is contained in:
kimdaae328 2025-01-23 11:18:08 +09:00
commit 6f91347b32
3 changed files with 41 additions and 31 deletions

View File

@ -34,11 +34,11 @@
<span class="text-muted me-3">
<i class="fa-regular fa-eye"></i> {{ views || 0 }}
</span>
<span class="text-muted me-3">
<i class="bx bx-like"></i> {{ likes || 0 }}
<span class="text-muted me-3" v-if="likes != null">
<i class="bx bx-like"></i> {{ likes }}
</span>
<span class="text-muted">
<i class="bx bx-comment"></i> {{ comments || 0 }}
<span class="text-muted" v-if="comments !== null">
<i class="bx bx-comment"></i> {{ comments }}
</span>
</div>
</div>
@ -80,11 +80,11 @@ const props = defineProps({
},
likes: {
type: Number,
default: 0,
default: null,
},
comments: {
type: Number,
default: 0,
default: null,
},
attachment: {
type: Boolean,

View File

@ -1,43 +1,53 @@
<template>
<div class="mt-4">
<div v-if="posts.length === 0" class="text-center">
게시물이 없습니다.
<p class="text-muted mt-4">게시물이 없습니다.</p>
</div>
<div v-for="post in posts" :key="post.id" @click="handleClick(post.id)">
<BoardCard
:img="post.img"
:category="post.category"
:img="post.img || null"
:category="post.category || ''"
:title="post.title"
:content="post.content"
:date="post.date"
:views="post.views"
:likes="post.likes"
:comments="post.comments"
:attachment="post.attachment"
:views="post.views || 0"
v-bind="getBoardCardProps(post)"
:attachment="post.attachment || false"
@click="() => goDetail(post.id)"
/>
</div>
</div>
</template>
<script>
<script setup>
import { defineProps, defineEmits } from 'vue';
import BoardCard from './BoardCard.vue';
export default {
components: {
BoardCard,
},
props: {
posts: {
type: Array,
required: true,
},
},
emits: ['click'],
methods: {
handleClick(id) {
this.$emit('click', id);
},
},
const props = defineProps({
posts: {
type: Array,
required: true,
default: () => [],
}
});
const emit = defineEmits(['click']);
//
const goDetail = (id) => {
emit('click', id);
};
//
const getBoardCardProps = (post) => {
const boardCardProps = {};
if ('likes' in post) {
boardCardProps.likes = post.likes;
}
if ('comments' in post) {
boardCardProps.comments = post.comments;
}
return boardCardProps;
};
</script>

View File

@ -1,6 +1,6 @@
<template>
<div class="input-group mb-3 d-flex">
<input type="text" class="form-control bg-white" placeholder="Search" @change="search" />
<input type="text" class="form-control" placeholder="Search" @change="search" />
<button type="button" class="btn btn-primary"><i class="bx bx-search bx-md"></i></button>
</div>
</template>