2024-09-12 18:03:06 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
layout: 'create',
|
|
|
|
})
|
|
|
|
|
2024-09-16 16:43:29 +02:00
|
|
|
const { projects } = useData()
|
2024-10-01 14:54:35 +02:00
|
|
|
const { setProject, saveProjectImage } = useProject()
|
2024-10-02 15:57:10 +02:00
|
|
|
const { project } = storeToRefs(useProject())
|
2024-10-02 16:32:52 +02:00
|
|
|
const { initForm } = useProjectForm()
|
2024-09-12 18:03:06 +02:00
|
|
|
|
|
|
|
const route = useRoute()
|
|
|
|
await until(projects).toMatch(p => p?.length > 0)
|
2024-10-02 16:32:52 +02:00
|
|
|
initForm()
|
2024-09-12 18:03:06 +02:00
|
|
|
setProject(route.params.id as string)
|
|
|
|
|
|
|
|
if (!project.value) {
|
|
|
|
throw createError({
|
|
|
|
statusCode: 404,
|
|
|
|
message: 'Project not found',
|
|
|
|
fatal: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const { open, onChange } = useFileDialog({
|
|
|
|
accept: 'image/*', // Set to accept only image files
|
|
|
|
})
|
|
|
|
|
|
|
|
const logoSrc = ref(project.value?.logos?.[0].url || '/no-image-1-1.svg')
|
|
|
|
|
|
|
|
onChange((files) => {
|
|
|
|
if (!files?.[0]) return
|
|
|
|
const file = files[0]
|
|
|
|
const reader = new FileReader()
|
|
|
|
reader.onload = (e) => {
|
|
|
|
logoSrc.value = e.target?.result as string
|
|
|
|
}
|
|
|
|
reader.readAsDataURL(file)
|
|
|
|
|
|
|
|
saveProjectImage(file)
|
|
|
|
})
|
|
|
|
|
2024-10-01 14:54:35 +02:00
|
|
|
const { next, jumpTo, publish, toggleEditName } = useProjectForm()
|
2024-10-02 15:57:10 +02:00
|
|
|
const { currentComponent, selectedTab, tabsArray, isEditingName, name, nameError, isPublishing } = storeToRefs(useProjectForm())
|
2024-09-12 18:03:06 +02:00
|
|
|
name.value = project.value?.name || 'Untitled'
|
|
|
|
|
2024-10-01 14:54:35 +02:00
|
|
|
const projectNameInput = ref<HTMLInputElement | null>(null)
|
|
|
|
watch(isEditingName, () => {
|
|
|
|
if (isEditingName.value) {
|
|
|
|
setTimeout(() => {
|
|
|
|
projectNameInput.value?.focus()
|
|
|
|
}, 0)
|
2024-09-16 16:43:29 +02:00
|
|
|
}
|
2024-10-01 14:54:35 +02:00
|
|
|
})
|
2024-09-16 16:43:29 +02:00
|
|
|
|
2024-09-18 09:42:26 +02:00
|
|
|
const transitionDone = ref(false)
|
2024-09-12 18:03:06 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div w-full>
|
|
|
|
<div
|
|
|
|
bg-app-bg-dark_grey
|
|
|
|
px-16px
|
|
|
|
py-24px
|
|
|
|
lg="pb-0px mb--1px"
|
|
|
|
>
|
|
|
|
<div app-container>
|
|
|
|
<div
|
|
|
|
flex
|
|
|
|
items-center
|
|
|
|
gap-16px
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
relative
|
|
|
|
class="parent"
|
|
|
|
>
|
|
|
|
<NuxtImg
|
|
|
|
lg="w-100px h-100px"
|
|
|
|
w-64px
|
|
|
|
h-64px
|
|
|
|
bg-app-bg-grey
|
|
|
|
object-cover
|
|
|
|
border-2
|
|
|
|
class="border-app-white/30"
|
|
|
|
:src="logoSrc ?? '/no-image-1-1.svg'"
|
|
|
|
/>
|
|
|
|
<button
|
|
|
|
h-24px
|
|
|
|
hidden
|
|
|
|
parent-hover:flex
|
|
|
|
absolute
|
|
|
|
bottom-0
|
|
|
|
w-full
|
|
|
|
border-t-0
|
|
|
|
border-2
|
|
|
|
border-black
|
|
|
|
border-opacity-50
|
|
|
|
h-fit
|
|
|
|
justify-center
|
|
|
|
text="12px"
|
|
|
|
font-700
|
|
|
|
bg-app-white
|
|
|
|
text-app-black
|
|
|
|
@click="open()"
|
|
|
|
>
|
|
|
|
Upload Logo
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
flex
|
|
|
|
flex-col
|
|
|
|
gap-8px
|
|
|
|
>
|
|
|
|
<h3
|
|
|
|
font-400
|
|
|
|
text="14px app-white/50"
|
|
|
|
leading-20px
|
|
|
|
>
|
|
|
|
{{ 'Project Name' }}
|
|
|
|
</h3>
|
|
|
|
<div
|
|
|
|
flex
|
|
|
|
items-center
|
|
|
|
gap-12px
|
2024-09-16 16:43:29 +02:00
|
|
|
relative
|
2024-09-12 18:03:06 +02:00
|
|
|
>
|
|
|
|
<input
|
2024-10-01 14:54:35 +02:00
|
|
|
v-if="isEditingName"
|
2024-09-12 18:03:06 +02:00
|
|
|
ref="projectNameInput"
|
|
|
|
v-model="name"
|
|
|
|
w-fit
|
|
|
|
onkeydown="this.style.width = 0; this.style.width = this.scrollWidth + 2 + 'px';"
|
|
|
|
type="text"
|
|
|
|
font-700
|
|
|
|
text-20px
|
|
|
|
leading-28px
|
|
|
|
bg-app-bg-dark_grey
|
|
|
|
onfocus="this.style.width = 0; this.style.width = this.scrollWidth + 2 + 'px';"
|
2024-10-01 14:54:35 +02:00
|
|
|
@blur="toggleEditName()"
|
2024-09-12 18:03:06 +02:00
|
|
|
>
|
|
|
|
<h2
|
|
|
|
v-else
|
|
|
|
font-700
|
|
|
|
text-20px
|
|
|
|
leading-28px
|
|
|
|
>
|
|
|
|
{{ name }}
|
|
|
|
</h2>
|
2024-09-19 13:29:51 +02:00
|
|
|
<button
|
2024-10-01 14:54:35 +02:00
|
|
|
v-if="!isEditingName"
|
|
|
|
@click="toggleEditName()"
|
2024-09-19 13:29:51 +02:00
|
|
|
>
|
2024-09-12 18:03:06 +02:00
|
|
|
<UnoIcon
|
|
|
|
text-20px
|
|
|
|
class="text-app-white/30"
|
|
|
|
hover:text-app-white
|
|
|
|
i-heroicons-solid-pencil
|
|
|
|
/>
|
|
|
|
</button>
|
2024-09-16 16:43:29 +02:00
|
|
|
<span
|
|
|
|
v-if="nameError"
|
|
|
|
text-nowrap
|
|
|
|
text-app-danger
|
|
|
|
text-12px
|
|
|
|
absolute
|
|
|
|
lg:bottom--24px
|
|
|
|
bottom--16px
|
|
|
|
select-none
|
|
|
|
>Invalid project name</span>
|
2024-09-12 18:03:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
flex
|
|
|
|
w-full
|
|
|
|
gap-46px
|
|
|
|
lg="mt-24px"
|
|
|
|
>
|
2024-10-01 15:43:53 +02:00
|
|
|
<ProjectCreateComponentsSelect
|
2024-09-16 16:43:29 +02:00
|
|
|
:model-value="selectedTab"
|
2024-09-12 18:03:06 +02:00
|
|
|
label="Choose category"
|
2024-10-01 15:43:53 +02:00
|
|
|
:options="tabsArray.map((t, index) => ({ label: t.label, value: index }))"
|
2024-09-12 18:03:06 +02:00
|
|
|
w-full
|
2024-10-01 15:43:53 +02:00
|
|
|
class="lg:hidden! block!"
|
2024-09-12 18:03:06 +02:00
|
|
|
block
|
|
|
|
mt-16px
|
2024-09-16 16:43:29 +02:00
|
|
|
@update:model-value="$event => jumpTo($event)"
|
2024-09-12 18:03:06 +02:00
|
|
|
/>
|
|
|
|
<button
|
2024-10-01 14:54:35 +02:00
|
|
|
v-for="(tab, index) in tabsArray"
|
2024-09-12 18:03:06 +02:00
|
|
|
:key="tab.value"
|
|
|
|
lg:block
|
|
|
|
hidden
|
|
|
|
pb-8px
|
|
|
|
leading-40px
|
2024-10-01 14:54:35 +02:00
|
|
|
:class="selectedTab === index ? 'font-bold border-b-4 border-app-white' : ''"
|
|
|
|
@click="jumpTo(index)"
|
2024-09-12 18:03:06 +02:00
|
|
|
>
|
|
|
|
{{ tab.label }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
border-t-2
|
|
|
|
class="border-app-white/30"
|
2024-09-27 12:14:49 +02:00
|
|
|
px-8px
|
|
|
|
py-8px
|
|
|
|
md:py-24px
|
2024-09-12 18:03:06 +02:00
|
|
|
>
|
|
|
|
<div
|
|
|
|
app-container
|
2024-09-27 12:14:49 +02:00
|
|
|
mb-55px
|
2024-09-12 18:03:06 +02:00
|
|
|
>
|
2024-09-18 09:42:26 +02:00
|
|
|
<ClientOnly>
|
|
|
|
<Transition
|
|
|
|
v-if="!transitionDone"
|
|
|
|
name="fade"
|
|
|
|
mode="out-in"
|
|
|
|
appear
|
|
|
|
@after-enter="transitionDone = true"
|
|
|
|
>
|
|
|
|
<component
|
2024-10-01 14:54:35 +02:00
|
|
|
:is="tabsArray[selectedTab].component"
|
2024-09-18 09:42:26 +02:00
|
|
|
ref="currentComponent"
|
|
|
|
:project="project"
|
|
|
|
w-full
|
|
|
|
flex
|
|
|
|
flex-col
|
|
|
|
gap-24px
|
|
|
|
/>
|
|
|
|
</Transition>
|
|
|
|
<component
|
2024-10-01 14:54:35 +02:00
|
|
|
:is="tabsArray[selectedTab].component"
|
2024-09-24 21:36:19 +02:00
|
|
|
v-else
|
2024-09-18 09:42:26 +02:00
|
|
|
ref="currentComponent"
|
|
|
|
:project="project"
|
|
|
|
w-full
|
|
|
|
flex
|
|
|
|
flex-col
|
2024-09-27 12:14:49 +02:00
|
|
|
gap-8px
|
2024-09-18 09:42:26 +02:00
|
|
|
/>
|
|
|
|
<Button
|
2024-10-01 14:54:35 +02:00
|
|
|
v-if="selectedTab !== tabsArray.length - 1"
|
2024-09-18 09:42:26 +02:00
|
|
|
class="hidden!"
|
|
|
|
mt-48px
|
|
|
|
lg="w-fit flex!"
|
|
|
|
border
|
|
|
|
@click="next()"
|
|
|
|
>
|
|
|
|
<span px-24px>NEXT SECTION</span>
|
|
|
|
</Button>
|
|
|
|
</ClientOnly>
|
2024-09-12 18:03:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-10-01 15:43:53 +02:00
|
|
|
<Transition
|
|
|
|
name="fade"
|
|
|
|
mode="out-in"
|
|
|
|
appear
|
2024-09-12 18:03:06 +02:00
|
|
|
>
|
2024-10-01 15:43:53 +02:00
|
|
|
<div
|
|
|
|
v-if="transitionDone"
|
2024-09-12 18:03:06 +02:00
|
|
|
flex
|
2024-10-01 15:43:53 +02:00
|
|
|
flex-col
|
|
|
|
gap-10px
|
|
|
|
justify-center
|
|
|
|
text-center
|
2024-09-12 18:03:06 +02:00
|
|
|
block
|
2024-10-01 15:43:53 +02:00
|
|
|
lg:fixed
|
|
|
|
bottom-0
|
|
|
|
w-full
|
|
|
|
bg-app-bg-dark_grey
|
|
|
|
class="border-app-white/30"
|
|
|
|
lg="bg-app-black w-fit border-l-2 border-t-2 right-0 border-app-white"
|
|
|
|
p-12px
|
|
|
|
>
|
2024-09-12 18:03:06 +02:00
|
|
|
<Button
|
2024-10-01 15:43:53 +02:00
|
|
|
v-if="selectedTab !== tabsArray.length - 1"
|
|
|
|
flex
|
|
|
|
lg="w-fit hidden!"
|
2024-09-12 18:03:06 +02:00
|
|
|
border
|
2024-10-01 15:43:53 +02:00
|
|
|
@click="next()"
|
2024-09-12 18:03:06 +02:00
|
|
|
>
|
2024-10-01 15:43:53 +02:00
|
|
|
<span px-24px>NEXT SECTION</span>
|
2024-09-12 18:03:06 +02:00
|
|
|
</Button>
|
2024-10-01 15:43:53 +02:00
|
|
|
<span
|
|
|
|
v-if="selectedTab !== tabsArray.length - 1"
|
|
|
|
lg="hidden"
|
|
|
|
block
|
|
|
|
text="12px italic app-white/50"
|
|
|
|
>or you can submit changes by publishing them</span>
|
|
|
|
<div flex>
|
|
|
|
<Button
|
|
|
|
w-full
|
|
|
|
lg="w-fit"
|
|
|
|
border
|
|
|
|
@click="navigateTo(`/project/${route.params.id}`)"
|
|
|
|
>
|
|
|
|
<span px-24px>CANCEL</span>
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
w-full
|
|
|
|
lg="w-fit"
|
|
|
|
inverted-color
|
2024-10-02 15:57:10 +02:00
|
|
|
@click="isPublishing ? null : publish()"
|
2024-10-01 15:43:53 +02:00
|
|
|
>
|
|
|
|
<UnoIcon
|
|
|
|
v-if="isPublishing"
|
|
|
|
w-108px
|
|
|
|
i-eos-icons-loading
|
|
|
|
text-black
|
|
|
|
text-18px
|
|
|
|
/>
|
|
|
|
<span
|
|
|
|
v-else
|
|
|
|
px-24px
|
|
|
|
>PUBLISH</span>
|
|
|
|
</Button>
|
|
|
|
</div>
|
2024-09-12 18:03:06 +02:00
|
|
|
</div>
|
2024-10-01 15:43:53 +02:00
|
|
|
</Transition>
|
2024-09-12 18:03:06 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
2024-09-18 09:42:26 +02:00
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.fade-enter-active,
|
|
|
|
.fade-leave-active {
|
|
|
|
transition: opacity 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
</style>
|