This commit is contained in:
Adrian Hopek 2022-04-28 15:26:35 +02:00
parent 0ae521a5c2
commit 503c4e4629
3 changed files with 572 additions and 178 deletions

View File

@ -1,5 +1,4 @@
module.exports = { module.exports = {
plugins: ['tailwindcss'],
env: { env: {
node: true, node: true,
'vue/setup-compiler-macros': true, 'vue/setup-compiler-macros': true,
@ -16,10 +15,5 @@ module.exports = {
'comma-dangle': ['error', 'always-multiline'], 'comma-dangle': ['error', 'always-multiline'],
'object-curly-spacing': ['error', 'always'], 'object-curly-spacing': ['error', 'always'],
'vue/require-default-prop': 0, 'vue/require-default-prop': 0,
'tailwindcss/classnames-order': 'error',
'tailwindcss/enforces-negative-arbitrary-values': 'error',
'tailwindcss/enforces-shorthand': 'error',
'tailwindcss/no-arbitrary-value': 'error',
'tailwindcss/no-contradicting-classname': 'error',
}, },
} }

1
package-lock.json generated
View File

@ -4,7 +4,6 @@
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "toby",
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"@headlessui/vue": "^1.5.0", "@headlessui/vue": "^1.5.0",

View File

@ -12,7 +12,7 @@
<h3 class="text-lg font-medium leading-6 text-gray-900"> <h3 class="text-lg font-medium leading-6 text-gray-900">
Dane podstawowe Dane podstawowe
</h3> </h3>
<div class="pt-4"> <div class="px-8">
<div class="items-center py-4 sm:grid sm:grid-cols-2"> <div class="items-center py-4 sm:grid sm:grid-cols-2">
<label <label
for="firstName" for="firstName"
@ -65,12 +65,24 @@
<h3 class="text-lg font-medium leading-6 text-gray-900"> <h3 class="text-lg font-medium leading-6 text-gray-900">
Edukacja Edukacja
</h3> </h3>
<div class="pt-4 space-y-4"> <Draggable
<div v-model="form.educations"
v-for="(element, index) in form.elements" class="pt-4 space-y-4"
:key="index" tag="transition-group"
class="flex items-start" ghost-class="opacity-50"
handle=".handle"
:animation="200"
:component-data="{tag: 'div', type: 'transition-group'}"
item-key="index"
> >
<template #item="{ element, index }">
<div class="group flex items-start space-x-3">
<button
class="py-4 text-red-500 hover:text-gray-600 opacity-100 group-hover:opacity-100 transition-opacity hover:scale-110 lg:opacity-0 handle"
type="button"
>
<ViewGridIcon class="w-5 h-5 text-gray-500" />
</button>
<Disclosure <Disclosure
v-slot="{ open }" v-slot="{ open }"
default-open default-open
@ -78,7 +90,9 @@
class="flex-1 border border-gray-200" class="flex-1 border border-gray-200"
> >
<div class="flex"> <div class="flex">
<DisclosureButton :class="['transition transition-colors rounded-md group w-full max-w-full overflow-hidden flex items-center justify-between p-4 font-semibold text-gray-500 hover:text-blumilk-500 transition transition-colors rounded-md focus:outline-none']"> <DisclosureButton
:class="['transition transition-colors rounded-md group w-full max-w-full overflow-hidden flex items-center justify-between p-4 font-semibold text-gray-500 hover:text-blumilk-500 transition transition-colors rounded-md focus:outline-none']"
>
<div class="break-all line-clamp-1 text-md"> <div class="break-all line-clamp-1 text-md">
{{ element.school ? element.school : '(Nieokreślony)' }} {{ element.school ? element.school : '(Nieokreślony)' }}
</div> </div>
@ -102,116 +116,116 @@
<div> <div>
<div class="items-center py-4 sm:grid sm:grid-cols-2"> <div class="items-center py-4 sm:grid sm:grid-cols-2">
<label <label
:for="`school-${index}`" :for="`education-school-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px" class="block text-sm font-medium text-gray-700 sm:mt-px"
> >
Szkoła Szkoła
</label> </label>
<div class="mt-1 sm:mt-0"> <div class="mt-1 sm:mt-0">
<input <input
:id="`school-${index}`" :id="`education-school-${index}`"
v-model="element.school" v-model="element.school"
type="text" type="text"
class="block w-full rounded-md shadow-sm sm:text-sm" class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`elements.${index}.school`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`elements.${index}.school`] }" :class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`educations.${index}.school`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`educations.${index}.school`] }"
> >
<p <p
v-if="form.errors[`elements.${index}.school`]" v-if="form.errors[`educations.${index}.school`]"
class="mt-2 text-sm text-red-600" class="mt-2 text-sm text-red-600"
> >
{{ form.errors[`elements.${index}.school`] }} {{ form.errors[`educations.${index}.school`] }}
</p> </p>
</div> </div>
</div> </div>
<div class="items-center py-4 sm:grid sm:grid-cols-2"> <div class="items-center py-4 sm:grid sm:grid-cols-2">
<label <label
:for="`degree-${index}`" :for="`education-degree-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px" class="block text-sm font-medium text-gray-700 sm:mt-px"
> >
Stopień Stopień
</label> </label>
<div class="mt-1 sm:mt-0"> <div class="mt-1 sm:mt-0">
<input <input
:id="`degree-${index}`" :id="`education-degree-${index}`"
v-model="element.degree" v-model="element.degree"
type="text" type="text"
class="block w-full rounded-md shadow-sm sm:text-sm" class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`elements.${index}.degree`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`elements.${index}.degree`] }" :class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`educations.${index}.degree`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`educations.${index}.degree`] }"
> >
<p <p
v-if="form.errors[`elements.${index}.degree`]" v-if="form.errors[`educations.${index}.degree`]"
class="mt-2 text-sm text-red-600" class="mt-2 text-sm text-red-600"
> >
{{ form.errors[`elements.${index}.degree`] }} {{ form.errors[`educations.${index}.degree`] }}
</p> </p>
</div> </div>
</div> </div>
<div class="items-center py-4 sm:grid sm:grid-cols-2"> <div class="items-center py-4 sm:grid sm:grid-cols-2">
<label <label
:for="`fieldOfStudy-${index}`" :for="`education-fieldOfStudy-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px" class="block text-sm font-medium text-gray-700 sm:mt-px"
> >
Kierunek/Specjalizacja Kierunek/Specjalizacja
</label> </label>
<div class="mt-1 sm:mt-0"> <div class="mt-1 sm:mt-0">
<input <input
:id="`fieldOfStudy-${index}`" :id="`education-fieldOfStudy-${index}`"
v-model="element.fieldOfStudy" v-model="element.fieldOfStudy"
type="text" type="text"
class="block w-full rounded-md shadow-sm sm:text-sm" class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`elements.${index}.fieldOfStudy`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`elements.${index}.fieldOfStudy`] }" :class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`educations.${index}.fieldOfStudy`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`educations.${index}.fieldOfStudy`] }"
> >
<p <p
v-if="form.errors[`elements.${index}.fieldOfStudy`]" v-if="form.errors[`educations.${index}.fieldOfStudy`]"
class="mt-2 text-sm text-red-600" class="mt-2 text-sm text-red-600"
> >
{{ form.errors[`elements.${index}.fieldOfStudy`] }} {{ form.errors[`educations.${index}.fieldOfStudy`] }}
</p> </p>
</div> </div>
</div> </div>
<div class="items-center py-4 sm:grid sm:grid-cols-2"> <div class="items-center py-4 sm:grid sm:grid-cols-2">
<label <label
:for="`startDate-${index}`" :for="`education-startDate-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px" class="block text-sm font-medium text-gray-700 sm:mt-px"
> >
Data rozpoczęcia Data rozpoczęcia
</label> </label>
<div class="mt-1 sm:mt-0"> <div class="mt-1 sm:mt-0">
<FlatPickr <FlatPickr
:id="`startDate-${index}`" :id="`education-startDate-${index}`"
v-model="form.startDate" v-model="element.startDate"
placeholder="Wybierz datę" placeholder="Wybierz datę"
class="block w-full rounded-md shadow-sm sm:text-sm" class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`elements.${index}.startDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`elements.${index}.startDate`] }" :class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`educations.${index}.startDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`educations.${index}.startDate`] }"
/> />
<p <p
v-if="form.errors[`elements.${index}.startDate`]" v-if="form.errors[`educations.${index}.startDate`]"
class="mt-2 text-sm text-red-600" class="mt-2 text-sm text-red-600"
> >
{{ form.errors[`elements.${index}.startDate`] }} {{ form.errors[`educations.${index}.startDate`] }}
</p> </p>
</div> </div>
</div> </div>
<div class="items-center py-4 sm:grid sm:grid-cols-2"> <div class="items-center py-4 sm:grid sm:grid-cols-2">
<label <label
:for="`endDate-${index}`" :for="`education-endDate-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px" class="block text-sm font-medium text-gray-700 sm:mt-px"
> >
Data zakończenia Data zakończenia
</label> </label>
<div class="mt-1 sm:mt-0"> <div class="mt-1 sm:mt-0">
<FlatPickr <FlatPickr
:id="`endDate-${index}`" :id="`education-endDate-${index}`"
v-model="form.endDate" v-model="element.endDate"
placeholder="Wybierz datę" placeholder="Wybierz datę"
class="block w-full rounded-md shadow-sm sm:text-sm" class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`elements.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`elements.${index}.endDate`] }" :class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`educations.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`educations.${index}.endDate`] }"
/> />
<p <p
v-if="form.errors[`elements.${index}.endDate`]" v-if="form.errors[`educations.${index}.endDate`]"
class="mt-2 text-sm text-red-600" class="mt-2 text-sm text-red-600"
> >
{{ form.errors[`elements.${index}.endDate`] }} {{ form.errors[`educations.${index}.endDate`] }}
</p> </p>
</div> </div>
</div> </div>
@ -219,17 +233,360 @@
</DisclosurePanel> </DisclosurePanel>
</Disclosure> </Disclosure>
<button <button
class="py-4 pl-4 text-red-500 hover:text-red-600 hover:scale-110" class="py-4 text-red-500 hover:text-red-600 opacity-100 group-hover:opacity-100 transition-opacity hover:scale-110 lg:opacity-0"
type="button" type="button"
@click="form.elements.splice(index, 1)" @click="form.educations.splice(index, 1)"
> >
<TrashIcon class="w-5 h-5 text-red-500" /> <TrashIcon class="w-5 h-5 text-red-500" />
</button> </button>
</div> </div>
</template>
</Draggable>
<div class="px-8">
<button <button
type="button" type="button"
class="p-4 w-full font-semibold text-center text-blumilk-600 hover:bg-blumilk-25 focus:outline-none transition-colors" class="p-4 mx-auto mt-4 w-full font-semibold text-center text-blumilk-600 hover:bg-blumilk-25 focus:outline-none transition-colors"
@click="form.elements.push({ @click="form.educations.push({
index: form.educations.length,
school: null,
degree: null,
fieldOfStudy: null,
startDate: null,
endDate: null,
})"
>
Dodaj element
</button>
</div>
</div>
<div>
<h3 class="text-lg font-medium leading-6 text-gray-900">
Technologie
</h3>
<Draggable
v-model="form.technologies"
class="pt-4 space-y-4"
tag="transition-group"
ghost-class="opacity-50"
handle=".handle"
:animation="200"
:component-data="{tag: 'div', type: 'transition-group' }"
item-key="index"
>
<template #item="{ element, index }">
<div class="group flex items-start space-x-3">
<button
class="py-4 text-red-500 hover:text-gray-600 opacity-100 group-hover:opacity-100 transition-opacity hover:scale-110 lg:opacity-0 handle"
type="button"
>
<ViewGridIcon class="w-5 h-5 text-gray-500" />
</button>
<Disclosure
v-slot="{ open }"
default-open
as="div"
class="flex-1 border border-gray-200"
>
<div class="flex">
<DisclosureButton
:class="['transition transition-colors rounded-md group w-full max-w-full overflow-hidden flex items-center justify-between p-4 font-semibold text-gray-500 hover:text-blumilk-500 transition transition-colors rounded-md focus:outline-none']"
>
<div class="break-all line-clamp-1 text-md">
{{ element.name ? element.name : '(Nieokreślony)' }}
</div>
<div class="ml-2">
<svg
:class="[open ? '-rotate-90' : 'rotate-90', 'h-6 w-6 transform transition-transform ease-in-out duration-150']"
viewBox="0 0 20 20"
>
<path
d="M6 6L14 10L6 14V6Z"
fill="currentColor"
/>
</svg>
</div>
</DisclosureButton>
</div>
<DisclosurePanel
as="div"
class="py-2 px-4 border-t border-gray-200"
>
<div class="gap-4 md:grid md:grid-cols-2 ">
<div class="py-4">
<label
:for="`technology-name-${index}`"
class="block text-sm font-medium text-gray-700"
>
Technologia
</label>
<div class="mt-3">
<input
:id="`technology-name-${index}`"
v-model="element.name"
type="text"
class="block w-full h-10 rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`technologies.${index}.name`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`technologies.${index}.name`] }"
>
<p
v-if="form.errors[`technologies.${index}.name`]"
class="mt-2 text-sm text-red-600"
>
{{ form.errors[`technologies.${index}.name`] }}
</p>
</div>
</div>
<div class="py-4">
<label
:for="`technology-level-${index}`"
class="block text-sm font-medium text-gray-700"
>
Poziom - <span :class="element.level.textColor">{{ element.level.name }}</span>
</label>
<div class="mt-2">
<RadioGroup v-model="element.level">
<div
:class="`relative overflow-hidden flex h-12 rounded-l-md rounded-r-md space-x-px ${element.level.activeColor} transition-colors duration-200 easy-in-out`"
>
<RadioGroupOption
v-for="level in levels"
:key="level.index"
v-slot="{ active, checked }"
as="template"
:value="level"
>
<div
:class="`${element.level.backgroundColor} hover:opacity-80 cursor-pointer transition-colors duration-200 easy-in-out focus:outline-none flex-1`"
/>
</RadioGroupOption>
<div
:class="`absolute transform transition-transform duration-200 easy-in-out`"
:style="`width: ${100/levels.length}%; transform: translateX(calc(${100 * element.level.index}% - 1px))`"
>
<div :class="`h-12 ${element.level.activeColor} transition-colors duration-300 easy-in-out`" />
</div>
</div>
</RadioGroup>
<p
v-if="form.errors[`technologies.${index}.level`]"
class="mt-2 text-sm text-red-600"
>
{{ form.errors[`technologies.${index}.level`] }}
</p>
</div>
</div>
</div>
</DisclosurePanel>
</Disclosure>
<button
class="py-4 text-red-500 hover:text-red-600 opacity-100 group-hover:opacity-100 transition-opacity hover:scale-110 lg:opacity-0"
type="button"
@click="form.technologies.splice(index, 1)"
>
<TrashIcon class="w-5 h-5 text-red-500" />
</button>
</div>
</template>
</Draggable>
<div class="px-8">
<button
type="button"
class="p-4 mx-auto mt-4 w-full font-semibold text-center text-blumilk-600 hover:bg-blumilk-25 focus:outline-none transition-colors"
@click="form.technologies.push({
index: form.technologies.length,
name: null,
level: levels[0]
})"
>
Dodaj element
</button>
</div>
</div>
<div>
<h3 class="text-lg font-medium leading-6 text-gray-900">
Projekty
</h3>
<Draggable
v-model="form.projects"
class="pt-4 space-y-4"
tag="transition-group"
ghost-class="opacity-50"
handle=".handle"
:animation="200"
:component-data="{tag: 'div', type: 'transition-group' }"
item-key="index"
>
<template #item="{ element, index }">
<div class="group flex items-start space-x-3">
<button
class="py-4 text-red-500 hover:text-gray-600 opacity-100 group-hover:opacity-100 transition-opacity hover:scale-110 lg:opacity-0 handle"
type="button"
>
<ViewGridIcon class="w-5 h-5 text-gray-500" />
</button>
<Disclosure
v-slot="{ open }"
default-open
as="div"
class="flex-1 border border-gray-200"
>
<div class="flex">
<DisclosureButton
:class="['transition transition-colors rounded-md group w-full max-w-full overflow-hidden flex items-center justify-between p-4 font-semibold text-gray-500 hover:text-blumilk-500 transition transition-colors rounded-md focus:outline-none']"
>
<div class="break-all line-clamp-1 text-md">
{{ element.description ? element.description : '(Nieokreślony)' }}
</div>
<div class="ml-2">
<svg
:class="[open ? '-rotate-90' : 'rotate-90', 'h-6 w-6 transform transition-transform ease-in-out duration-150']"
viewBox="0 0 20 20"
>
<path
d="M6 6L14 10L6 14V6Z"
fill="currentColor"
/>
</svg>
</div>
</DisclosureButton>
</div>
<DisclosurePanel
as="div"
class="py-2 px-4 border-t border-gray-200"
>
<div>
<div class="items-center py-4 sm:grid sm:grid-cols-2">
<label
:for="`project-description-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px"
>
Opis projektu
</label>
<div class="mt-1 sm:mt-0">
<textarea
:id="`project-description-${index}`"
v-model="element.description"
class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`projects.${index}.description`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`projects.${index}.description`] }"
/>
<p
v-if="form.errors[`projects.${index}.description`]"
class="mt-2 text-sm text-red-600"
>
{{ form.errors[`projects.${index}.description`] }}
</p>
</div>
</div>
<div class="items-center py-4 sm:grid sm:grid-cols-2">
<label
:for="`project-technologies-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px"
>
Technologie
</label>
<div class="mt-1 sm:mt-0">
<input
:id="`project-technologies-${index}`"
v-model="element.technologies"
type="text"
class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`projects.${index}.technologies`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`projects.${index}.technologies`] }"
>
<p
v-if="form.errors[`projects.${index}.technologies`]"
class="mt-2 text-sm text-red-600"
>
{{ form.errors[`projects.${index}.technologies`] }}
</p>
</div>
</div>
<div class="items-center py-4 sm:grid sm:grid-cols-2">
<label
:for="`project-startDate-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px"
>
Data rozpoczęcia
</label>
<div class="mt-1 sm:mt-0">
<FlatPickr
:id="`project-startDate-${index}`"
v-model="element.startDate"
placeholder="Wybierz datę"
class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`educations.${index}.startDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`educations.${index}.startDate`] }"
/>
<p
v-if="form.errors[`educations.${index}.startDate`]"
class="mt-2 text-sm text-red-600"
>
{{ form.errors[`educations.${index}.startDate`] }}
</p>
</div>
</div>
<div class="items-center py-4 sm:grid sm:grid-cols-2">
<label
:for="`project-endDate-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px"
>
Data zakończenia
</label>
<div class="mt-1 sm:mt-0">
<FlatPickr
:id="`project-endDate-${index}`"
v-model="element.endDate"
placeholder="Wybierz datę"
class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`educations.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`educations.${index}.endDate`] }"
/>
<p
v-if="form.errors[`educations.${index}.endDate`]"
class="mt-2 text-sm text-red-600"
>
{{ form.errors[`educations.${index}.endDate`] }}
</p>
</div>
</div>
<div class="items-center py-4 sm:grid sm:grid-cols-2">
<label
:for="`project-tags-${index}`"
class="block text-sm font-medium text-gray-700 sm:mt-px"
>
Dodatkowe informacje
</label>
<div class="mt-1 sm:mt-0">
<input
:id="`project-tags-${index}`"
v-model="element.tags"
type="text"
class="block w-full rounded-md shadow-sm sm:text-sm"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`projects.${index}.tags`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`projects.${index}.tags`] }"
>
<p
v-if="form.errors[`projects.${index}.tags`]"
class="mt-2 text-sm text-red-600"
>
{{ form.errors[`projects.${index}.tags`] }}
</p>
</div>
</div>
</div>
</DisclosurePanel>
</Disclosure>
<button
class="py-4 text-red-500 hover:text-red-600 opacity-100 group-hover:opacity-100 transition-opacity hover:scale-110 lg:opacity-0"
type="button"
@click="form.projects.splice(index, 1)"
>
<TrashIcon class="w-5 h-5 text-red-500" />
</button>
</div>
</template>
</Draggable>
<div class="px-8">
<button
type="button"
class="p-4 mx-auto mt-4 w-full font-semibold text-center text-blumilk-600 hover:bg-blumilk-25 focus:outline-none transition-colors"
@click="form.projects.push({
index: form.projects.length,
school: null, school: null,
degree: null, degree: null,
fieldOfStudy: null, fieldOfStudy: null,
@ -264,22 +621,66 @@
</template> </template>
<script setup> <script setup>
import { import { Disclosure, DisclosureButton, DisclosurePanel } from '@headlessui/vue'
Disclosure, import { RadioGroup, RadioGroupOption } from '@headlessui/vue'
DisclosureButton, import { TrashIcon, ViewGridIcon } from '@heroicons/vue/outline'
DisclosurePanel,
} from '@headlessui/vue'
import { TrashIcon } from '@heroicons/vue/outline'
import { useForm } from '@inertiajs/inertia-vue3' import { useForm } from '@inertiajs/inertia-vue3'
import FlatPickr from 'vue-flatpickr-component' import FlatPickr from 'vue-flatpickr-component'
import Draggable from 'vuedraggable'
const levels = [
{
index: 0,
name: 'Poczatkujący',
activeColor: 'bg-rose-400',
backgroundColor: 'bg-rose-100',
textColor: 'text-rose-400',
},
{
index: 1,
name: 'Zaawansowany',
activeColor: 'bg-orange-400',
backgroundColor: 'bg-orange-100',
textColor: 'text-orange-400',
},
{
index: 2,
name: 'Doświadczony',
activeColor: 'bg-amber-400',
backgroundColor: 'bg-amber-100',
textColor: 'text-yellow-500',
},
{
index: 3,
name: 'Ekspert',
activeColor: 'bg-emerald-400',
backgroundColor: 'bg-emerald-100',
textColor: 'text-emerald-400',
},
{
index: 4,
name: 'Chad',
activeColor: 'bg-blumilk-400',
backgroundColor: 'bg-blumilk-100',
textColor: 'text-blumilk-400',
},
{
index: 5,
name: 'xD',
activeColor: 'bg-black',
backgroundColor: 'bg-gray-400',
textColor: 'text-black',
},
]
const form = useForm({ const form = useForm({
elements: [{ educations: [],
school: null, projects: [],
degree: null, technologies: [{
fieldOfStudy: null, index: 0,
startDate: null, name: 'Laravel',
endDate: null, level: levels[0],
}], }],
}) })
</script> </script>