2020-01-27 18:56:56 +00:00
|
|
|
<template>
|
2020-02-22 10:14:54 +00:00
|
|
|
<div v-if="day">
|
|
|
|
<v-card :color="color(day)" max-width="250px" min-width="250px">
|
|
|
|
<v-card-title v-if="day.date" class="subtitle-1 font-weight-bold">
|
|
|
|
{{ day.name }} den {{ day.date.getDate() }}.{{
|
|
|
|
day.date.getMonth() + 1
|
|
|
|
}}.{{ day.date.getFullYear() }}
|
|
|
|
</v-card-title>
|
|
|
|
<v-card-text>
|
|
|
|
<v-expand-transition>
|
|
|
|
<v-row align="center" justify="center" v-if="day.loading">
|
|
|
|
<v-progress-circular indeterminate color="grey" />
|
|
|
|
</v-row>
|
|
|
|
</v-expand-transition>
|
|
|
|
<v-expand-transition>
|
|
|
|
<div v-show="!day.loading">
|
|
|
|
<!-- <v-autocomplete-->
|
|
|
|
<!-- chips-->
|
|
|
|
<!-- return-object-->
|
|
|
|
<!-- multiple-->
|
|
|
|
<!-- v-model="day.worker"-->
|
|
|
|
<!-- item-text="fullName"-->
|
|
|
|
<!-- label="Dienste"-->
|
|
|
|
<!-- filled-->
|
|
|
|
<!-- color="green"-->
|
|
|
|
<!-- @input="searchInput = null"-->
|
|
|
|
<!-- :search-input.sync="searchInput"-->
|
|
|
|
<!-- @blur="focused = false"-->
|
|
|
|
<!-- @focus="focused = true"-->
|
|
|
|
<!-- disabled-->
|
|
|
|
<!-- >-->
|
|
|
|
<!-- <template v-slot:prepend-inner>-->
|
|
|
|
<!-- <v-icon>{{ account_add }}</v-icon>-->
|
|
|
|
<!-- </template>-->
|
|
|
|
<!-- <template v-slot:selection="data">-->
|
|
|
|
<!-- <v-chip v-bind="data.attrs" :input-value="data.selected" close>-->
|
|
|
|
<!-- {{ data.item.firstname }} {{ data.item.lastname }}-->
|
|
|
|
<!-- </v-chip>-->
|
|
|
|
<!-- </template>-->
|
|
|
|
<!-- <template v-slot:item="data">-->
|
|
|
|
<!-- <v-list-item-content>-->
|
|
|
|
<!-- <v-list-item-title>-->
|
|
|
|
<!-- {{ data.item.firstname }} {{ data.item.lastname }}-->
|
|
|
|
<!-- </v-list-item-title>-->
|
|
|
|
<!-- </v-list-item-content>-->
|
|
|
|
<!-- </template>-->
|
|
|
|
<!-- </v-autocomplete>-->
|
|
|
|
<v-chip style="margin: 3px;" v-for="worker in day.worker" :key="day.worker.indexOf(worker)">{{ worker.firstname }} {{ worker.lastname }}</v-chip>
|
|
|
|
</div>
|
|
|
|
</v-expand-transition>
|
|
|
|
</v-card-text>
|
|
|
|
</v-card>
|
|
|
|
</div>
|
2020-01-27 18:56:56 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-02-22 10:14:54 +00:00
|
|
|
import { mapActions, mapGetters } from 'vuex'
|
|
|
|
import { mdiAccountPlus } from '@mdi/js'
|
2020-01-27 18:56:56 +00:00
|
|
|
export default {
|
|
|
|
name: 'Day',
|
|
|
|
props: {
|
|
|
|
day: Object
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2020-02-22 10:14:54 +00:00
|
|
|
account_add: mdiAccountPlus,
|
|
|
|
searchInput: null
|
2020-01-27 18:56:56 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
2020-02-22 10:14:54 +00:00
|
|
|
this.setLoading(this.day.date)
|
|
|
|
this.getUser({
|
|
|
|
date: this.day.date.getTime() / 1000,
|
|
|
|
startdatetime: this.day.date
|
|
|
|
})
|
2020-01-27 18:56:56 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
...mapActions({
|
2020-02-22 10:14:54 +00:00
|
|
|
getUser: 'jobs/getUser',
|
|
|
|
setLoading: 'jobs/setDayLoading',
|
|
|
|
setNotLoading: 'jobs/setDayNotLoading'
|
|
|
|
}),
|
|
|
|
test(event) {
|
|
|
|
console.log('blur', event)
|
|
|
|
},
|
|
|
|
color: day => {
|
|
|
|
if (day) {
|
|
|
|
if (day.date.getDay() === 0 || day.date.getDay() === 1) {
|
|
|
|
return 'grey lighten-4'
|
|
|
|
} else {
|
|
|
|
if (day.worker.length < 2) {
|
|
|
|
return 'yellow'
|
|
|
|
} else {
|
|
|
|
return 'light-green'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return 'grey lighten-4'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapGetters({
|
|
|
|
disabled: 'jobs/disabled'
|
2020-01-27 18:56:56 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
day() {
|
2020-02-22 10:14:54 +00:00
|
|
|
this.getUser({
|
|
|
|
date: this.day.date.getTime() / 1000,
|
|
|
|
startdatetime: this.day.date
|
|
|
|
})
|
|
|
|
},
|
|
|
|
worker() {
|
|
|
|
return this.day.worker
|
2020-01-27 18:56:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped></style>
|