Skip to content
Snippets Groups Projects
Verified Commit 7deed039 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix first time mode and make it configurable

parent 991f32b5
No related branches found
No related tags found
1 merge request!1304Refactor calendar overview in more different components
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
:events="events" :events="events"
:type="internalCalendarType" :type="internalCalendarType"
:event_color="getColorForEvent" :event_color="getColorForEvent"
:first-time="firstTime" :first-time="startWithFirstTime ? firstTime : undefined"
interval-height="60" interval-height="60"
@click:date="viewDay" @click:date="viewDay"
@click:day="viewDay" @click:day="viewDay"
...@@ -69,6 +69,12 @@ export default { ...@@ -69,6 +69,12 @@ export default {
required: false, required: false,
default: null, default: null,
}, },
// Start the calendar with the time of the first starting calendar event
startWithFirstTime: {
type: Object,
required: false,
default: () => false,
},
}, },
data() { data() {
return { return {
...@@ -106,8 +112,10 @@ export default { ...@@ -106,8 +112,10 @@ export default {
computed: { computed: {
rangeDateTime() { rangeDateTime() {
return { return {
start: this.range.start ? this.$parseISODate(this.range.start) : null, start: this.range.start
end: this.range.end ? this.$parseISODate(this.range.end) : null, ? this.$parseISODate(this.range.start.date)
: null,
end: this.range.end ? this.$parseISODate(this.range.end.date) : null,
}; };
}, },
events() { events() {
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
@changeCalendarType="setCalendarType" @changeCalendarType="setCalendarType"
v-bind="$attrs" v-bind="$attrs"
ref="calendar" ref="calendar"
:startWithFirstTime="startWithFirstTime"
/> />
</div> </div>
</template> </template>
...@@ -52,6 +53,11 @@ export default { ...@@ -52,6 +53,11 @@ export default {
type: Array, type: Array,
required: true, required: true,
}, },
startWithFirstTime: {
type: Object,
required: false,
default: () => true,
},
}, },
}; };
</script> </script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment