designtopack/src/components/project/ClientBrief/AddImages.vue

169 lines
5.4 KiB
Vue
Raw Normal View History

2024-09-25 17:33:28 +02:00
<template>
<section class="h-full | flex flex-col" style="--row-gap: var(--space-32)">
<header
class="project-details | flex items-baseline | bg-white | rounded-2xl | p-16 | w-full"
>
<div class="project-details__description | flex-1">
<h2 class="text-sm text-grey-700 | mb-8">Description du projet</h2>
<textarea
name="description"
id="description"
placeholder="Ajoutez une description générale de votre projet…"
rows="3"
class="border border-grey-200 | rounded-xl | p-16 | w-full"
></textarea>
</div>
<div class="project-details__filters | flex-1">
<h2 class="text-sm text-grey-700 | mb-8">Filtrer par tags</h2>
<div class="flex" style="gap: var(--space-8)">
<button class="btn btn--sm btn--grey" id="all">Voir tout</button>
<button class="btn btn--sm btn--primary">Bouchon</button>
<button class="btn btn--sm btn--primary">Bouton Poussoir</button>
<button class="btn btn--sm btn--primary">Coloris & Nuances</button>
<button class="btn btn--sm btn--primary">DA Globale</button>
<button class="btn btn--sm btn--primary">Forme & Design</button>
<button class="btn btn--sm btn--primary">Matériaux & Textures</button>
<button class="btn btn--sm btn--primary">Parachèvements</button>
</div>
</div>
</header>
<!-- <div class="h-full | masonry">
<button
data-icon="upload"
class="flex flex-col | bg-white | border border-grey-200 | text-grey-800 | font-medium | rounded-2xl"
>
Ajouter une ou plusieurs images
</button>
</div> -->
<div class="h-full | masonry">
<button
2024-09-27 15:47:44 +02:00
data-icon="upload"
2024-09-25 17:33:28 +02:00
class="flex flex-col | bg-white | border border-grey-200 | text-grey-800 | font-medium | rounded-2xl"
>
<FileUpload
2024-09-27 15:47:44 +02:00
name="images[]"
:url="'/upload.json?pageUri=' + page.uri"
2024-09-25 17:33:28 +02:00
@upload="onAdvancedUpload($event)"
:multiple="true"
accept="image/*"
:maxFileSize="1000000"
2024-09-27 15:47:44 +02:00
invalidFileSizeMessage="Fichier trop lourd"
2024-09-25 17:33:28 +02:00
>
<template #empty>
2024-09-27 15:47:44 +02:00
<span class="empty-message"
>Glissez-déposez vos fichiers ici pour les ajouter.</span
>
</template>
<template
#content="{
files,
uploadedFiles,
removeUploadedFileCallback,
removeFileCallback,
}"
>
<div v-if="files.length > 0">Fichiers importés</div>
2024-09-25 17:33:28 +02:00
</template>
</FileUpload>
</button>
<Toast />
</div>
2024-09-27 15:47:44 +02:00
<!-- <figure class="image">
2024-09-25 17:33:28 +02:00
<span class="tag | btn btn--sm">Tag</span>
<img
src="http://localhost:8888/media/pages/inspirations/shape-of-the-nature/6ed93d6950-1725442486/d82f18573c439d6edd434ffca62471a7.png"
alt=""
/>
</figure>
<figure class="image">
<span class="tag | btn btn--sm">Tag</span>
<img
src="http://localhost:8888/media/pages/inspirations/shape-of-the-nature/7b0fcc5012-1725442486/37a038883c87973036232aa0e43f6da2.png"
alt=""
/>
</figure>
<figure class="image">
<span class="tag | btn btn--sm">Tag</span>
<img
src="http://localhost:8888/media/pages/inspirations/shape-of-the-nature/1bbe051c5a-1725442486/0c41d3266e9ce2872f30608cceb28239.png"
alt=""
/>
</figure>
<figure class="image">
<span class="tag | btn btn--sm">Tag</span>
<img
src="http://localhost:8888/media/pages/inspirations/shape-of-the-nature/6ed93d6950-1725442486/d82f18573c439d6edd434ffca62471a7.png"
alt=""
/>
</figure>
<figure class="image">
<span class="tag | btn btn--sm">Tag</span>
<img
src="http://localhost:8888/media/pages/inspirations/shape-of-the-nature/7b0fcc5012-1725442486/37a038883c87973036232aa0e43f6da2.png"
alt=""
/>
</figure>
<figure class="image">
<span class="tag | btn btn--sm">Tag</span>
<img
src="http://localhost:8888/media/pages/inspirations/shape-of-the-nature/1bbe051c5a-1725442486/0c41d3266e9ce2872f30608cceb28239.png"
alt=""
/>
2024-09-27 15:47:44 +02:00
</figure> -->
2024-09-25 17:33:28 +02:00
</section>
</template>
<script setup>
import Toast from "primevue/toast";
import FileUpload from "primevue/fileupload";
import { useToast } from "primevue/usetoast";
2024-09-27 15:47:44 +02:00
import { usePageStore } from "../../../stores/page";
2024-09-25 17:33:28 +02:00
2024-09-27 15:47:44 +02:00
const { page } = usePageStore();
2024-09-25 17:33:28 +02:00
const toast = useToast();
2024-09-27 15:47:44 +02:00
const beforeSend = (event) => {
const formData = event.formData;
formData.append(
"pageUri",
"projects/miss-dior-blooming-bouquet/client-brief"
);
};
const onAdvancedUpload = (event) => {
if (event.xhr.status === 200) {
toast.add({
severity: "success",
summary: "Upload réussi",
detail: event.xhr.response.success,
life: 3000,
});
console.log(JSON.parse(event.xhr.response));
} else {
toast.add({
severity: "error",
summary: "Échec de l'upload",
detail: event.xhr.response.error,
life: 3000,
});
console.error(JSON.parse(event.xhr.response));
}
2024-09-25 17:33:28 +02:00
};
</script>
2024-09-27 15:47:44 +02:00
<style>
button[data-icon="upload"] {
padding: 6.875rem 4.875rem;
}
input[type="file"] {
display: none;
}
/* button[aria-label="Choose"],
button[aria-label="Upload"] {
display: none;
} */
.empty-message {
margin-top: 1rem;
}
</style>