refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s

This commit is contained in:
Kroonk
2026-05-22 16:19:55 +02:00
parent 38cc4c09ca
commit a213a1dba0
2215 changed files with 242567 additions and 6015 deletions

View File

@@ -0,0 +1,255 @@
<style scoped>
</style>
<template>
<div>
<div class="pa4-ns ph3 pv2 bb b--gray-monica">
<div class="mb3 mb0-ns">
<form-radio
v-model.lazy="selectedOption"
:name="'birthdate'"
:value="'unknown'"
:dclass="'flex mb3'"
:iclass="[ dirltr ? 'mr2' : 'ml2' ]"
@change="event => { _saveOption(); }"
>
<template slot="label">
{{ $t('people.information_edit_unknown') }}
</template>
</form-radio>
<form-radio
v-model.lazy="selectedOption"
:name="'birthdate'"
:value="'approximate'"
:dclass="'flex mb3'"
:iclass="[ dirltr ? 'mr2' : 'ml2' ]"
@change="event => { if (selectedOptionSave !== 'approximate') {_focusAge();} _saveOption(); }"
>
<template slot="label">
{{ $t('people.information_edit_probably') }}
</template>
<div v-if="selectedOption === 'approximate'" slot="extra">
<form-input
:id="'age'"
ref="age"
v-model="selectedAge"
:input-type="'number'"
:width="50"
:required="true"
:validator="$v.selectedAge"
/>
</div>
</form-radio>
<form-radio
v-model.lazy="selectedOption"
:name="'birthdate'"
:value="'almost'"
:dclass="'flex mb3'"
:iclass="[ dirltr ? 'mr2' : 'ml2' ]"
@change="event => { if (selectedOptionSave !== 'almost') {_focusMonth();} _saveOption(); }"
>
<template slot="label">
{{ $t('people.information_edit_not_year') }}
</template>
<div v-if="selectedOption === 'almost'" slot="extra" class="mt2">
<div class="flex">
<form-select
:id="'month'"
ref="month"
v-model="selectedMonth"
:options="months"
:title="''"
:class="[ dirltr ? 'mr3' : '' ]"
/>
<form-select
:id="'day'"
v-model="selectedDay"
:options="days"
:title="''"
:class="[ dirltr ? '' : 'mr3' ]"
/>
</div>
</div>
</form-radio>
<form-radio
v-model.lazy="selectedOption"
:name="'birthdate'"
:value="'exact'"
:dclass="'flex mb3'"
:iclass="[ dirltr ? 'mr2' : 'ml2' ]"
@change="event => { if (selectedOptionSave !== 'exact') {_focusBirthday();} _saveOption(); }"
>
<template slot="label">
{{ $t('people.information_edit_exact') }}
</template>
<div v-if="selectedOption === 'exact'" slot="extra" class="mt2">
<form-date
:id="'birthdayDate'"
ref="birthday"
v-model="selectedDate"
:show-calendar-on-focus="true"
:locale="locale"
:label="$t('people.information_edit_birthdate_label')"
:class="[ dirltr ? 'fl' : 'fr' ]"
:validator="$v.selectedDate"
/>
</div>
</form-radio>
</div>
</div>
<div v-if="selectedOption === 'exact' || selectedOption === 'almost'" class="pa4-ns ph3 pv2 bb b--gray-monica">
<div class="mb2 mb0-ns">
<form-checkbox
v-model.lazy="hasBirthdayReminder"
:name="'addReminder'"
:value="'addReminder'"
:dclass="[ 'flex', dirltr ? 'mr2' : 'ml2' ]"
>
<template slot="label">
{{ $t('people.people_add_reminder_for_birthday') }}
</template>
</form-checkbox>
</div>
</div>
</div>
</template>
<script>
import moment from 'moment';
import { validationMixin } from 'vuelidate';
import { required, numeric, helpers } from 'vuelidate/lib/validators';
const before = (param) =>
helpers.withParams(
{ type: 'before', date: param },
(value) => !helpers.req(value) || moment(value).isBefore(param)
);
export default {
mixins: [validationMixin],
props: {
value: {
type: String,
default: '',
},
days: {
type: Array,
default: () => [],
},
months: {
type: Array,
default: () => [],
},
day: {
type: Number,
default: 0,
},
month: {
type: Number,
default: 0,
},
birthdate: {
type: String,
default: '',
},
age: {
type: Number,
default: 0,
},
reminder: {
type: Boolean,
default: false,
},
},
data() {
return {
selectedDate: null,
selectedOption: null,
selectedOptionSave: null,
selectedAge: 0,
selectedMonth: 0,
selectedDay: 0,
hasBirthdayReminder: false
};
},
validations() {
switch (this.selectedOption) {
case 'approximate':
return {
selectedAge: {
required,
numeric,
}
};
case 'exact':
return {
selectedDate: {
required,
before: before(moment())
}
};
}
return null;
},
computed: {
dirltr() {
return this.$root.htmldir === 'ltr';
},
locale() {
return this.$root.locale;
}
},
watch: {
birthdate(val) {
this.selectedDate = val;
},
value(val) {
this.selectedOption = val;
},
age(val) {
this.selectedAge = val;
},
},
mounted() {
this.selectedDate = this.birthdate;
this.selectedOption = this.value !== '' ? this.value : 'unknown';
this.selectedOptionSave = this.selectedOption;
this.selectedAge = this.age;
this.selectedMonth = this.month;
this.selectedDay = this.day;
this.hasBirthdayReminder = this.reminder;
},
methods: {
_focusAge() {
setTimeout(() => {
this.$refs.age.focus();
}, 100);
},
_focusMonth() {
setTimeout(() => {
this.$refs.month.focus();
}, 100);
},
_focusBirthday() {
setTimeout(() => {
this.$refs.birthday.focus();
}, 100);
},
_saveOption() {
this.selectedOptionSave = this.selectedOption;
},
}
};
</script>