mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
216 lines
5.5 KiB
Vue
216 lines
5.5 KiB
Vue
<template>
|
|
<div class="contribution-form">
|
|
<BForm
|
|
ref="form"
|
|
class="form-style p-3 bg-white app-box-shadow gradido-border-radius"
|
|
@submit.prevent="submit"
|
|
>
|
|
<label>{{ $t('contribution.selectDate') }}</label>
|
|
<BFormInput
|
|
id="contribution-date"
|
|
:model-value="date"
|
|
:state="dataFieldMeta.valid"
|
|
:locale="$i18n.locale"
|
|
:max="getMaximalDate"
|
|
:min="minimalDate"
|
|
class="mb-4 bg-248"
|
|
reset-value=""
|
|
:label-no-date-selected="$t('contribution.noDateSelected')"
|
|
required
|
|
:no-flip="true"
|
|
type="date"
|
|
@update:model-value="date = $event"
|
|
>
|
|
<template #nav-prev-year><span></span></template>
|
|
<template #nav-next-year><span></span></template>
|
|
</BFormInput>
|
|
|
|
<div v-if="showMessage" class="p-3" data-test="contribtion-message">
|
|
{{ noOpenCreation }}
|
|
</div>
|
|
<div v-else>
|
|
<input-textarea
|
|
id="contribution-memo"
|
|
name="memo"
|
|
:label="$t('contribution.activity')"
|
|
:placeholder="$t('contribution.yourActivity')"
|
|
:rules="{ required: true, min: 5, max: 255 }"
|
|
/>
|
|
<input-hour
|
|
name="hours"
|
|
:label="$t('form.hours')"
|
|
placeholder="0.25"
|
|
:rules="{
|
|
required: true,
|
|
min: 0.25,
|
|
max: validMaxTime,
|
|
gddCreationTime: { min: 0.25, max: validMaxTime },
|
|
}"
|
|
:valid-max-time="validMaxTime"
|
|
/>
|
|
<input-amount
|
|
id="contribution-amount"
|
|
name="amount"
|
|
:label="$t('form.amount')"
|
|
placeholder="20"
|
|
:rules="{ required: true, gddSendAmount: { min: 20, max: validMaxGDD } }"
|
|
typ="ContributionForm"
|
|
/>
|
|
|
|
<BRow class="mt-5">
|
|
<BCol cols="12" lg="6">
|
|
<BButton
|
|
block
|
|
type="reset"
|
|
variant="secondary"
|
|
data-test="button-cancel"
|
|
@click="fullFormReset"
|
|
>
|
|
{{ $t('form.cancel') }}
|
|
</BButton>
|
|
</BCol>
|
|
<BCol cols="12" lg="6" class="text-right mt-4 mt-lg-0">
|
|
<BButton
|
|
block
|
|
type="submit"
|
|
variant="gradido"
|
|
:disabled="disabled"
|
|
data-test="button-submit"
|
|
>
|
|
{{ form.id ? $t('form.change') : $t('contribution.submit') }}
|
|
</BButton>
|
|
</BCol>
|
|
</BRow>
|
|
</div>
|
|
</BForm>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, computed, watch, onMounted } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import InputHour from '@/components/Inputs/InputHour'
|
|
import InputAmount from '@/components/Inputs/InputAmount'
|
|
import InputTextarea from '@/components/Inputs/InputTextarea'
|
|
import { useField, useForm } from 'vee-validate'
|
|
|
|
const props = defineProps({
|
|
modelValue: { type: Object, required: true },
|
|
isThisMonth: { type: Boolean, required: true },
|
|
minimalDate: { type: Date, required: true },
|
|
maxGddLastMonth: { type: Number, required: true },
|
|
maxGddThisMonth: { type: Number, required: true },
|
|
})
|
|
|
|
const emit = defineEmits(['update-contribution', 'set-contribution'])
|
|
|
|
const { t } = useI18n()
|
|
|
|
const form = ref({ ...props.modelValue })
|
|
|
|
const {
|
|
values: formValues,
|
|
meta: formMeta,
|
|
resetForm,
|
|
defineField,
|
|
setFieldValue,
|
|
} = useForm({
|
|
initialValues: {
|
|
date: props.modelValue.date,
|
|
memo: props.modelValue.memo,
|
|
hours: props.modelValue.hours,
|
|
amount: props.modelValue.amount,
|
|
},
|
|
})
|
|
|
|
const [date, dateProps] = defineField('date')
|
|
|
|
const { meta: dataFieldMeta } = useField('date', 'required')
|
|
|
|
const showMessage = computed(() => {
|
|
if (props.maxGddThisMonth <= 0 && props.maxGddLastMonth <= 0) return true
|
|
if (props.modelValue.date)
|
|
return (
|
|
(props.isThisMonth && props.maxGddThisMonth <= 0) ||
|
|
(!props.isThisMonth && props.maxGddLastMonth <= 0)
|
|
)
|
|
return false
|
|
})
|
|
|
|
const disabled = computed(() => {
|
|
return (
|
|
!formMeta.value.valid ||
|
|
(props.isThisMonth && parseInt(form.value.amount) > parseInt(props.maxGddThisMonth)) ||
|
|
(!props.isThisMonth && parseInt(form.value.amount) > parseInt(props.maxGddLastMonth))
|
|
)
|
|
})
|
|
|
|
const validMaxGDD = computed(() => {
|
|
return Number(props.isThisMonth ? props.maxGddThisMonth : props.maxGddLastMonth)
|
|
})
|
|
|
|
const validMaxTime = computed(() => {
|
|
return Number(validMaxGDD.value / 20)
|
|
})
|
|
|
|
const noOpenCreation = computed(() => {
|
|
if (props.maxGddThisMonth <= 0 && props.maxGddLastMonth <= 0) {
|
|
return t('contribution.noOpenCreation.allMonth')
|
|
}
|
|
if (props.isThisMonth && props.maxGddThisMonth <= 0) {
|
|
return t('contribution.noOpenCreation.thisMonth')
|
|
}
|
|
if (!props.isThisMonth && props.maxGddLastMonth <= 0) {
|
|
return t('contribution.noOpenCreation.lastMonth')
|
|
}
|
|
return ''
|
|
})
|
|
|
|
const getMaximalDate = computed(() => {
|
|
return new Date().toISOString().slice(0, 10)
|
|
})
|
|
|
|
watch(
|
|
() => formValues.hours,
|
|
() => {
|
|
updateAmount(formValues.hours)
|
|
},
|
|
)
|
|
|
|
function updateAmount(hours) {
|
|
setFieldValue('amount', (hours * 20).toFixed(2).toString())
|
|
}
|
|
|
|
function submit() {
|
|
const dataToSave = { ...formValues }
|
|
let emitOption = 'set-contribution'
|
|
if (props.modelValue.id) {
|
|
dataToSave.id = props.modelValue.id
|
|
emitOption = 'update-contribution'
|
|
}
|
|
emit(emitOption, dataToSave)
|
|
fullFormReset()
|
|
}
|
|
|
|
function fullFormReset() {
|
|
resetForm({
|
|
values: {
|
|
id: null,
|
|
date: '',
|
|
memo: '',
|
|
hours: 0,
|
|
amount: '',
|
|
},
|
|
})
|
|
}
|
|
</script>
|
|
<style>
|
|
.form-style {
|
|
min-height: 410px;
|
|
}
|
|
|
|
span.errors {
|
|
color: red;
|
|
}
|
|
</style>
|