This commit is contained in:
Adrian Hopek
2022-05-17 11:38:16 +02:00
parent 45510a898b
commit d2babab7a0
17 changed files with 596 additions and 110 deletions

View File

@@ -207,7 +207,7 @@
Data rozpoczęcia
</label>
<div class="mt-1 sm:mt-0">
<FlatPickr
<MonthPicker
v-model="element.startDate"
placeholder="Wybierz datę"
class="block w-full rounded-md shadow-sm sm:text-sm"
@@ -226,12 +226,23 @@
Data zakończenia
</label>
<div class="mt-1 sm:mt-0">
<FlatPickr
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[`education.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`education.${index}.endDate`] }"
/>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700 sm:mt-px">
<input
v-model="element.current"
type="checkbox"
class="focus:ring-blumilk-500 h-4 w-4 text-blumilk-600 border-gray-300 rounded mr-1"
>
W trakcie
</label>
<MonthPicker
v-model="element.endDate"
placeholder="Wybierz datę"
:disabled="element.current"
class="block w-full rounded-md shadow-sm sm:text-sm disabled:bg-gray-100"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`education.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`education.${index}.endDate`] }"
/>
</div>
<p
v-if="form.errors[`education.${index}.endDate`]"
class="mt-2 text-sm text-red-600"
@@ -436,12 +447,12 @@
Data rozpoczęcia
</label>
<div class="mt-1 sm:mt-0">
<FlatPickr
<MonthPicker
: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`] }"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`projects.${index}.startDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`projects.${index}.startDate`] }"
/>
<p
v-if="form.errors[`projects.${index}.startDate`]"
@@ -459,13 +470,24 @@
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`] }"
/>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700 sm:mt-px">
<input
v-model="element.current"
type="checkbox"
class="focus:ring-blumilk-500 h-4 w-4 text-blumilk-600 border-gray-300 rounded mr-1"
>
W trakcie
</label>
<MonthPicker
:id="`project-endDate-${index}`"
v-model="element.endDate"
placeholder="Wybierz datę"
:disabled="element.current"
class="block w-full rounded-md shadow-sm sm:text-sm disabled:bg-gray-100"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`projects.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`projects.${index}.endDate`] }"
/>
</div>
<p
v-if="form.errors[`projects.${index}.endDate`]"
class="mt-2 text-sm text-red-600"
@@ -525,7 +547,7 @@ import { Listbox, ListboxOption, ListboxOptions, ListboxLabel, ListboxButton } f
import { SelectorIcon, CheckIcon } from '@heroicons/vue/outline'
import { ExclamationCircleIcon } from '@heroicons/vue/solid'
import { useForm } from '@inertiajs/inertia-vue3'
import FlatPickr from 'vue-flatpickr-component'
import MonthPicker from '@/Shared/Forms/MonthPicker'
import DynamicSection from '@/Shared/Forms/DynamicSection'
import Combobox from '@/Shared/Forms/Combobox'
import MultipleCombobox from '@/Shared/Forms/MultipleCombobox'

View File

@@ -207,7 +207,7 @@
Data rozpoczęcia
</label>
<div class="mt-1 sm:mt-0">
<FlatPickr
<MonthPicker
v-model="element.startDate"
placeholder="Wybierz datę"
class="block w-full rounded-md shadow-sm sm:text-sm"
@@ -226,12 +226,23 @@
Data zakończenia
</label>
<div class="mt-1 sm:mt-0">
<FlatPickr
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[`education.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`education.${index}.endDate`] }"
/>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700 sm:mt-px">
<input
v-model="element.current"
type="checkbox"
class="focus:ring-blumilk-500 h-4 w-4 text-blumilk-600 border-gray-300 rounded mr-1"
>
W trakcie
</label>
<MonthPicker
v-model="element.endDate"
placeholder="Wybierz datę"
:disabled="element.current"
class="block w-full rounded-md shadow-sm sm:text-sm disabled:bg-gray-100"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`education.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`education.${index}.endDate`] }"
/>
</div>
<p
v-if="form.errors[`education.${index}.endDate`]"
class="mt-2 text-sm text-red-600"
@@ -436,12 +447,12 @@
Data rozpoczęcia
</label>
<div class="mt-1 sm:mt-0">
<FlatPickr
<MonthPicker
: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`] }"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`projects.${index}.startDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`projects.${index}.startDate`] }"
/>
<p
v-if="form.errors[`projects.${index}.startDate`]"
@@ -459,13 +470,24 @@
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`] }"
/>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700 sm:mt-px">
<input
v-model="element.current"
type="checkbox"
class="focus:ring-blumilk-500 h-4 w-4 text-blumilk-600 border-gray-300 rounded mr-1"
>
W trakcie
</label>
<MonthPicker
:id="`project-endDate-${index}`"
v-model="element.endDate"
placeholder="Wybierz datę"
:disabled="element.current"
class="block w-full rounded-md shadow-sm sm:text-sm disabled:bg-gray-100"
:class="{ 'border-red-300 text-red-900 focus:outline-none focus:ring-red-500 focus:border-red-500': form.errors[`projects.${index}.endDate`], 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors[`projects.${index}.endDate`] }"
/>
</div>
<p
v-if="form.errors[`projects.${index}.endDate`]"
class="mt-2 text-sm text-red-600"
@@ -525,7 +547,7 @@ import { Listbox, ListboxOption, ListboxOptions, ListboxLabel, ListboxButton } f
import { SelectorIcon, CheckIcon } from '@heroicons/vue/outline'
import { ExclamationCircleIcon } from '@heroicons/vue/solid'
import { useForm } from '@inertiajs/inertia-vue3'
import FlatPickr from 'vue-flatpickr-component'
import MonthPicker from '@/Shared/Forms/MonthPicker'
import DynamicSection from '@/Shared/Forms/DynamicSection'
import Combobox from '@/Shared/Forms/Combobox'
import MultipleCombobox from '@/Shared/Forms/MultipleCombobox'
@@ -552,11 +574,11 @@ const form = useForm(`EditResume:${props.resume.id}`,{
educations: props.resume.education ?? [],
projects: props.resume.projects ?? [],
technologies: props.resume.technologies.map((technology) => ({
name: props.technologies.find((tech) => tech === technology.name),
name: technology.name,
level: technologyLevels.find((level) => level.level === technology.level),
})) ?? [],
languages: props.resume.languages.map((language) => ({
name: languages.find((lang) => lang === language.name),
name: language.name,
level: languageLevels.find((level) => level.level === language.level),
})) ?? [],
})
@@ -606,7 +628,10 @@ function submitResume() {
.transform((data) => ({
user: data.user?.id,
name: data.name,
education: data.educations,
education: data.educations.map(education => ({
...education,
endDate: education.current ? null: education.endDate,
})),
languages: data.languages.map(language => ({
name: language.name,
level: language.level.level,
@@ -615,7 +640,10 @@ function submitResume() {
name: technology.name,
level: technology.level.level,
})),
projects: data.projects,
projects: data.projects.map(project => ({
...project,
endDate: project.current ? null : project.endDate,
})),
}))
.put(`/resumes/${props.resume.id}`)
}

View File

@@ -0,0 +1,222 @@
<template>
<InertiaHead title="Klucze" />
<div class="bg-white shadow-md">
<div class="flex justify-between items-center p-4 sm:px-6">
<div>
<h2 class="text-lg font-medium leading-6 text-gray-900">
Technologie
</h2>
</div>
<div>
<button
type="button"
class="inline-flex items-center py-3 px-4 text-sm font-medium leading-4 text-white bg-blumilk-600 hover:bg-blumilk-700 rounded-md border border-transparent focus:outline-none focus:ring-2 focus:ring-blumilk-500 focus:ring-offset-2 shadow-sm"
@click="creating = true"
>
Dodaj technologię
</button>
</div>
</div>
<div class="border-t border-gray-200">
<div class="overflow-auto xl:overflow-visible">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th
scope="col"
class="py-3 px-4 text-xs font-semibold tracking-wider text-left text-gray-500 uppercase whitespace-nowrap"
>
Technologia
</th>
<th
scope="col"
class="py-3 px-4 text-xs font-semibold tracking-wider text-left text-gray-500 uppercase whitespace-nowrap"
/>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-100">
<tr
v-for="technology in technologies.data"
:key="technology.id"
class="hover:bg-blumilk-25"
>
<td class="px-4 py-2 text-sm text-gray-500 whitespace-nowrap">
{{ technology.name }}
</td>
<td class="px-4 py-2 text-sm text-right text-gray-500 whitespace-nowrap">
<Menu
as="div"
class="inline-block relative text-left"
>
<MenuButton
class="flex items-center text-gray-400 hover:text-gray-600 rounded-full focus:outline-none focus:ring-2 focus:ring-blumilk-500 focus:ring-offset-2 focus:ring-offset-gray-100"
>
<DotsVerticalIcon class="w-5 h-5" />
</MenuButton>
<transition
enter-active-class="transition ease-out duration-100"
enter-from-class="transform opacity-0 scale-95"
enter-to-class="transform opacity-100 scale-100"
leave-active-class="transition ease-in duration-75"
leave-from-class="transform opacity-100 scale-100"
leave-to-class="transform opacity-0 scale-95"
>
<MenuItems
class="absolute right-0 z-10 mt-2 w-56 bg-white rounded-md focus:outline-none ring-1 ring-black ring-opacity-5 shadow-lg origin-top-right"
>
<div class="py-1">
<MenuItem
v-slot="{ active }"
class="flex"
>
<InertiaLink
as="button"
method="delete"
preserve-scroll
:href="`/technologies/${technology.id}`"
:class="[active ? 'bg-gray-100 text-gray-900' : 'text-gray-700', 'block w-full text-left font-medium px-4 py-2 text-sm']"
>
<TrashIcon class="mr-2 w-5 h-5 text-red-500" />
Usuń
</InertiaLink>
</MenuItem>
</div>
</MenuItems>
</transition>
</Menu>
</td>
</tr>
<tr v-if="!technologies.data.length">
<td
colspan="100%"
class="py-4 text-xl leading-5 text-center text-gray-700"
>
Brak danych
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<TransitionRoot
as="template"
:show="creating"
>
<Dialog
is="div"
class="overflow-y-auto fixed inset-0 z-10"
@close="creating = false"
>
<div class="flex justify-center items-end px-4 pt-4 pb-20 min-h-screen text-center sm:block sm:p-0">
<TransitionChild
as="template"
enter="ease-out duration-300"
enter-from="opacity-0"
enter-to="opacity-100"
leave="ease-in duration-200"
leave-from="opacity-100"
leave-to="opacity-0"
>
<DialogOverlay class="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity" />
</TransitionChild>
<span class="hidden sm:inline-block sm:h-screen sm:align-middle">&#8203;</span>
<TransitionChild
as="template"
enter="ease-out duration-300"
enter-from="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
enter-to="opacity-100 translate-y-0 sm:scale-100"
leave="ease-in duration-200"
leave-from="opacity-100 translate-y-0 sm:scale-100"
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
>
<form
class="inline-block relative px-4 pt-5 pb-4 text-left align-bottom bg-white rounded-lg shadow-xl transition-all transform sm:p-6 sm:my-8 sm:w-full sm:max-w-sm sm:align-middle"
@submit.prevent="submitCreateTechnology"
>
<div>
<div>
<DialogTitle
as="h3"
class="text-lg font-medium leading-6 text-center text-gray-900 font-sembiold"
>
Dodaj technologię
</DialogTitle>
<div class="mt-5">
<label
for="name"
class="block text-sm font-medium text-gray-700 sm:mt-px"
>
Nazwa
</label>
<div class="mt-2">
<input
id="name"
v-model="form.name"
type="text"
class="block w-full max-w-lg 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.name, 'focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm border-gray-300': !form.errors.name }"
>
<p
v-if="form.errors.name"
class="mt-2 text-sm text-red-600"
>
{{ form.errors.name }}
</p>
</div>
</div>
</div>
</div>
<div class="mt-5 sm:mt-6">
<div class="flex justify-end space-x-3">
<button
type="button"
class="py-2 px-4 text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 rounded-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blumilk-500 focus:ring-offset-2 shadow-sm"
@click="creating = false"
>
Anuluj
</button>
<button
type="submit"
:disabled="form.processing"
class="inline-flex justify-center py-2 px-4 text-base font-medium text-white bg-blumilk-600 hover:bg-blumilk-700 rounded-md border border-transparent focus:outline-none focus:ring-2 focus:ring-blumilk-500 focus:ring-offset-2 shadow-sm sm:text-sm"
>
Dodaj
</button>
</div>
</div>
</form>
</TransitionChild>
</div>
</Dialog>
</TransitionRoot>
</template>
<script setup>
import { DotsVerticalIcon, TrashIcon } from '@heroicons/vue/solid'
import { Menu, MenuButton, MenuItem, MenuItems } from '@headlessui/vue'
import { ref } from 'vue'
import { Dialog, DialogOverlay, DialogTitle, TransitionChild, TransitionRoot } from '@headlessui/vue'
import { useForm } from '@inertiajs/inertia-vue3'
defineProps({
technologies: Object,
})
const creating = ref(false)
const form = useForm({
name: null,
})
function submitCreateTechnology() {
form.post('technologies', {
preserveState: (page) => Object.keys(page.props.errors).length,
preserveScroll: true,
onSuccess: () => form.reset(),
})
}
</script>