accomadesc 0.3.34 → 0.3.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
|
|
58
58
|
let occupationState: OccupationState = getOccupationState(calUrl);
|
|
59
59
|
let invalid = $derived(
|
|
60
|
-
occupationState && arrival && leave ? occupationState.validRequest(arrival, leave) : false,
|
|
60
|
+
occupationState && arrival && leave ? !occupationState.validRequest(arrival, leave) : false,
|
|
61
61
|
);
|
|
62
62
|
const messageChanged = (value: string) => {
|
|
63
63
|
message = value;
|
|
@@ -127,6 +127,9 @@
|
|
|
127
127
|
|
|
128
128
|
arrival = undefined;
|
|
129
129
|
leave = undefined;
|
|
130
|
+
email = '';
|
|
131
|
+
name = '';
|
|
132
|
+
message = '';
|
|
130
133
|
inputDatesEngaged = false;
|
|
131
134
|
sending = false;
|
|
132
135
|
|
package/dist/ContactForm.svelte
CHANGED
package/dist/helpers/readICS.js
CHANGED
|
@@ -79,16 +79,26 @@ const getDate = (icsLine) => {
|
|
|
79
79
|
//e.g. DTEND;VALUE=DATE:20260818
|
|
80
80
|
const [typePart, valuePart] = icsLine.split('=');
|
|
81
81
|
const dateString = valuePart.split(':')[1];
|
|
82
|
-
|
|
82
|
+
//console.log(dateString);
|
|
83
|
+
const year = parseInt(dateString.slice(0, 4));
|
|
84
|
+
const month = parseInt(dateString.slice(4, 6));
|
|
85
|
+
const day = parseInt(dateString.slice(6, 8));
|
|
86
|
+
let rawDateTime = lx.utc().set({
|
|
87
|
+
year: year, month: month, day: day,
|
|
88
|
+
hour: 12, minute: 0, second: 0, millisecond: 0
|
|
89
|
+
});
|
|
90
|
+
return rawDateTime;
|
|
83
91
|
//end date has to be moved back when whole day ending
|
|
84
|
-
if (/^DTEND;VALUE$/.test(typePart)) {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
}
|
|
92
|
-
//
|
|
93
|
-
|
|
92
|
+
//if (/^DTEND;VALUE$/.test(typePart)) {
|
|
93
|
+
// if (
|
|
94
|
+
// rawDateTime.hour == 0 &&
|
|
95
|
+
// rawDateTime.minute == 0 &&
|
|
96
|
+
// rawDateTime.second == 0 &&
|
|
97
|
+
// rawDateTime.millisecond == 0
|
|
98
|
+
// ) {
|
|
99
|
+
// rawDateTime = rawDateTime.plus({ hour: 12 });
|
|
100
|
+
// }
|
|
101
|
+
//}
|
|
102
|
+
////normalize to noon
|
|
103
|
+
//return rawDateTime.set({ hour: 12, minute: 0, second: 0, millisecond: 0 });
|
|
94
104
|
};
|
|
@@ -324,7 +324,8 @@ export class OccupationState {
|
|
|
324
324
|
};
|
|
325
325
|
validRequest = (from, to) => {
|
|
326
326
|
//TODO take min nights into account
|
|
327
|
-
|
|
327
|
+
const found = this.occupations.find((o) => o.arrival < to && o.leave > from);
|
|
328
|
+
return !found;
|
|
328
329
|
};
|
|
329
330
|
occupationStyle = (d, highlightWeekend = false, maxDate) => {
|
|
330
331
|
const valid = validDay(d);
|