Adding messaging / content
This commit is contained in:
@@ -4,38 +4,10 @@
|
||||
<creator-banner :creator="creator"></creator-banner>
|
||||
<DonationPopup :creator-id="creator.id"></DonationPopup>
|
||||
|
||||
<div class="max-w-[1000px] mx-auto flex flex-row justify-center border-l-2 border-r-2 -mt-6 ">
|
||||
<div class="w-full mt-20">
|
||||
|
||||
<v-card-text>
|
||||
<v-tabs-window v-model="tab">
|
||||
<v-tabs-window-item value="content">
|
||||
<div class="w-full h-full p-6">
|
||||
<ContentList v-if="creator.id"
|
||||
:creator-id="creator.id">
|
||||
</ContentList>
|
||||
</div>
|
||||
</v-tabs-window-item>
|
||||
|
||||
<v-tabs-window-item value="community">
|
||||
<div>
|
||||
<div class="border-b-2 p-6">
|
||||
<PostMessage v-if="creator.id"
|
||||
:content-id="creator.id">
|
||||
</PostMessage>
|
||||
</div>
|
||||
|
||||
<div class="border-b p-6">
|
||||
<h2 class="font-sans font-semibold">Commentaires</h2>
|
||||
<MessageList v-if="creator.id"
|
||||
:content-id="creator.id">
|
||||
</MessageList>
|
||||
</div>
|
||||
</div>
|
||||
</v-tabs-window-item>
|
||||
|
||||
</v-tabs-window>
|
||||
</v-card-text>
|
||||
<div class="max-w-[800px] mx-auto flex flex-row justify-center border-l-2 border-r-2 -mt-6 ">
|
||||
<div class="w-full mt-20 h-full">
|
||||
<ContentList :creator-id="creator.id">
|
||||
</ContentList>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -66,8 +38,6 @@ import MessageList from "@/views/messages/MessageList.vue";
|
||||
import ContentList from "@/views/contents/ContentList.vue";
|
||||
import PostMessage from "@/views/messages/PostMessage.vue";
|
||||
import DonationPopup from "@/views/main/DonationPopup.vue";
|
||||
import CreatorFeed from "@/views/main/CreatorFeed.vue";
|
||||
import CreatePostButton from "@/views/creators/CreatePostButton.vue";
|
||||
|
||||
const client = useClient();
|
||||
const route = useRoute();
|
||||
|
||||
Reference in New Issue
Block a user