- vue composition api (#91)

* wip

* fix

Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
This commit is contained in:
Adrian Hopek
2022-03-22 15:03:42 +01:00
committed by GitHub
parent 95f5ed44d6
commit dcda8c6255
33 changed files with 938 additions and 1466 deletions

View File

@@ -81,34 +81,19 @@
</div>
</template>
<script>
import {useForm} from '@inertiajs/inertia-vue3'
<script setup>
import { useForm } from '@inertiajs/inertia-vue3'
import FlatPickr from 'vue-flatpickr-component'
import useCurrentYearPeriodInfo from '@/Composables/yearPeriodInfo'
export default {
name: 'HolidayCreate',
components: {
FlatPickr,
},
setup() {
const form = useForm({
name: null,
date: null,
})
const form = useForm({
name: null,
date: null,
})
const {minDate, maxDate} = useCurrentYearPeriodInfo()
const { minDate, maxDate } = useCurrentYearPeriodInfo()
return {
form,
minDate,
maxDate,
}
},
methods: {
createHoliday() {
this.form.post('/holidays')
},
},
function createHoliday() {
form.post('/holidays')
}
</script>

View File

@@ -80,34 +80,20 @@
</div>
</template>
<script>
<script setup>
import { useForm } from '@inertiajs/inertia-vue3'
import FlatPickr from 'vue-flatpickr-component'
export default {
name: 'HolidayEdit',
components: {
FlatPickr,
},
props: {
holiday: {
type: Object,
default: () => null,
},
},
setup(props) {
const form = useForm({
name: props.holiday.name,
date: props.holiday.date,
})
const props = defineProps({
holiday: Object,
})
return { form }
},
methods: {
editHoliday() {
this.form
.put(`/holidays/${this.holiday.id}`)
},
},
const form = useForm({
name: props.holiday.name,
date: props.holiday.date,
})
function editHoliday() {
form.put(`/holidays/${props.holiday.id}`)
}
</script>

View File

@@ -94,10 +94,7 @@
:href="`/holidays/${holiday.id}/edit`"
:class="[active ? 'bg-gray-100 text-gray-900' : 'text-gray-700', 'font-medium block px-4 py-2 text-sm']"
>
<PencilIcon
class="mr-2 h-5 w-5 text-blue-500"
aria-hidden="true"
/> Edytuj
<PencilIcon class="mr-2 h-5 w-5 text-blue-500" /> Edytuj
</InertiaLink>
</MenuItem>
<MenuItem
@@ -111,10 +108,7 @@
:href="`/holidays/${holiday.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 h-5 w-5 text-red-500"
aria-hidden="true"
/> Usuń
<TrashIcon class="mr-2 h-5 w-5 text-red-500" /> Usuń
</InertiaLink>
</MenuItem>
</div>
@@ -123,9 +117,7 @@
</Menu>
</td>
</tr>
<tr
v-if="!holidays.data.length"
>
<tr v-if="!holidays.data.length">
<td
colspan="100%"
class="text-center py-4 text-xl leading-5 text-gray-700"
@@ -140,33 +132,12 @@
</div>
</template>
<script>
<script setup>
import { DotsVerticalIcon, PencilIcon, TrashIcon } from '@heroicons/vue/solid'
import { Menu, MenuButton, MenuItem, MenuItems } from '@headlessui/vue'
export default {
name: 'HolidayIndex',
components: {
DotsVerticalIcon,
PencilIcon,
TrashIcon,
Menu,
MenuButton,
MenuItem,
MenuItems,
},
props: {
holidays: {
type: Object,
default: () => null,
},
can: {
type: Object,
default: () => null,
},
},
setup() {
return {}
},
}
defineProps({
holidays: Object,
can: Object,
})
</script>