platform/plugins/calendar-resources/src/components/CreateEvent.svelte
Denis Bykhov afcd637ed2
Fix calendar event visibility (#8510)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2025-04-10 11:46:02 +07:00

327 lines
9.4 KiB
Svelte

<!--
// Copyright © 2022 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<script lang="ts">
import { Calendar, Event, ReccuringEvent, RecurringRule, Visibility, generateEventId } from '@hcengineering/calendar'
import { Person, PersonAccount } from '@hcengineering/contact'
import core, { Class, Doc, Markup, Ref, generateId, getCurrentAccount } from '@hcengineering/core'
import { OK, Severity, Status } from '@hcengineering/platform'
import presentation, {
DocCreateExtComponent,
DocCreateExtensionManager,
createQuery,
getClient
} from '@hcengineering/presentation'
import { EmptyMarkup } from '@hcengineering/text'
import { StyledTextBox } from '@hcengineering/text-editor-resources'
import {
Button,
EditBox,
FocusHandler,
Icon,
IconClose,
Scroller,
Status as StatusControl,
createFocusManager,
getUserTimezone,
showPopup
} from '@hcengineering/ui'
import { createEventDispatcher } from 'svelte'
import calendar from '../plugin'
import { saveUTC } from '../utils'
import CalendarSelector from './CalendarSelector.svelte'
import EventParticipants from './EventParticipants.svelte'
import EventReminders from './EventReminders.svelte'
import EventTimeEditor from './EventTimeEditor.svelte'
import EventTimeExtraButton from './EventTimeExtraButton.svelte'
import LocationEditor from './LocationEditor.svelte'
import ReccurancePopup from './ReccurancePopup.svelte'
import VisibilityEditor from './VisibilityEditor.svelte'
const currentUser = getCurrentAccount() as PersonAccount
export let attachedTo: Ref<Doc> = calendar.ids.NoAttached
export let attachedToClass: Ref<Class<Doc>> = calendar.class.Event
export let title: string = ''
export let date: Date | undefined = undefined
export let withTime = false
export let participants: Ref<Person>[] = [currentUser.person]
const now = new Date()
const defaultDuration = 60 * 60 * 1000
const allDayDuration = 24 * 60 * 60 * 1000 - 1
const docCreateManager = DocCreateExtensionManager.create(calendar.class.Event)
let startDate =
date === undefined ? now.getTime() : withTime ? date.getTime() : date.setHours(now.getHours(), now.getMinutes())
const duration = defaultDuration
let dueDate = startDate + duration
let allDay = false
let location = ''
let timeZone: string = getUserTimezone()
let reminders = [30 * 60 * 1000]
let description: Markup = EmptyMarkup
let visibility: Visibility = 'private'
const me = getCurrentAccount()
let _calendar: Ref<Calendar> = `${me._id}_calendar` as Ref<Calendar>
const q = createQuery()
q.query(calendar.class.ExternalCalendar, { default: true, createdBy: me._id, hidden: false }, (res) => {
if (res.length > 0) {
_calendar = res[0]._id
}
})
let rules: RecurringRule[] = []
let externalParticipants: string[] = []
const dispatch = createEventDispatcher()
const client = getClient()
export function canClose (): boolean {
return title !== undefined && title.trim().length === 0 && participants.length === 0
}
async function saveEvent (): Promise<void> {
let date: number | undefined
if (startDate != null) date = startDate
if (date === undefined) return
if (title === '') return
const user = me._id
const _id = generateId<Event>()
if (rules.length > 0) {
await client.addCollection(
calendar.class.ReccuringEvent,
calendar.space.Calendar,
attachedTo,
attachedToClass,
'events',
{
calendar: _calendar,
eventId: generateEventId(),
date: allDay ? saveUTC(date) : date,
dueDate: allDay ? saveUTC(dueDate) : dueDate,
externalParticipants,
rdate: [],
exdate: [],
rules,
reminders,
description,
participants,
visibility,
title,
location,
allDay,
access: 'owner',
originalStartTime: allDay ? saveUTC(date) : date,
timeZone,
user
},
_id as Ref<ReccuringEvent>
)
} else {
await client.addCollection(
calendar.class.Event,
calendar.space.Calendar,
attachedTo,
attachedToClass,
'events',
{
calendar: _calendar,
eventId: generateEventId(),
date: allDay ? saveUTC(date) : date,
dueDate: allDay ? saveUTC(dueDate) : dueDate,
externalParticipants,
description,
visibility,
participants,
reminders,
title,
location,
allDay,
timeZone,
access: 'owner',
user
},
_id
)
}
const space = await client.findOne(core.class.Space, { _id: calendar.space.Calendar })
if (space !== undefined) {
await docCreateManager.commit(client, _id, space, {}, 'post')
} else {
console.error('calendarspace not found')
}
dispatch('close')
}
function allDayChangeHandler (): void {
if (allDay) {
startDate = new Date(startDate).setHours(0, 0, 0, 0)
if (dueDate - startDate < allDayDuration) dueDate = allDayDuration + startDate
else dueDate = new Date(dueDate).setHours(23, 59, 59, 999)
} else {
dueDate = startDate + defaultDuration
}
}
function setRecurrance (): void {
showPopup(ReccurancePopup, { rules, startDate }, undefined, (res) => {
if (res) {
rules = res
}
})
}
let status: Status = OK
const statusStore = docCreateManager.status
$: status = $statusStore
const manager = createFocusManager()
</script>
<FocusHandler {manager} />
<div class="eventPopup-container">
<div class="header flex-between">
<EditBox
bind:value={title}
placeholder={calendar.string.EventTitlePlaceholder}
kind={'ghost-large'}
fullSize
focusable
autoFocus
focusIndex={10001}
/>
<div class="flex-row-center gap-1 flex-no-shrink ml-3">
<Button
id="card-close"
focusIndex={10003}
icon={IconClose}
kind={'ghost'}
size={'small'}
on:click={() => {
dispatch('close')
}}
/>
</div>
</div>
<Scroller thinScrollBars>
<div class="block first flex-no-shrink">
<EventTimeEditor {allDay} bind:startDate bind:dueDate {timeZone} focusIndex={10004} />
<EventTimeExtraButton
bind:allDay
bind:timeZone
bind:rules
on:repeat={setRecurrance}
on:allday={allDayChangeHandler}
/>
</div>
<div class="block rightCropPadding">
<LocationEditor focusIndex={10010} bind:value={location} />
<EventParticipants focusIndex={10011} bind:participants bind:externalParticipants />
</div>
<div class="block">
<DocCreateExtComponent manager={docCreateManager} kind={'body'} />
</div>
<div class="block row gap-1-5">
<div class="top-icon">
<Icon icon={calendar.icon.Description} size={'small'} />
</div>
<StyledTextBox
alwaysEdit={true}
isScrollable={false}
kind={'indented'}
showButtons={false}
focusIndex={10100}
placeholder={calendar.string.Description}
bind:content={description}
/>
</div>
<div class="block rightCropPadding">
<CalendarSelector bind:value={_calendar} focusIndex={10101} />
<div class="flex-row-center flex-gap-1">
<Icon icon={calendar.icon.Hidden} size={'small'} />
<VisibilityEditor bind:value={visibility} kind={'tertiary'} size={'small'} focusIndex={10102} withoutIcon />
</div>
<EventReminders bind:reminders focusIndex={10103} />
</div>
</Scroller>
<div class="antiDivider noMargin" />
<div class="flex-between p-5 flex-no-shrink">
<StatusControl {status} />
<Button
kind="primary"
label={presentation.string.Create}
focusIndex={10104}
on:click={saveEvent}
disabled={title === '' || status.severity !== Severity.OK}
/>
</div>
</div>
<style lang="scss">
.eventPopup-container {
display: flex;
flex-direction: column;
max-width: 25rem;
min-width: 25rem;
min-height: 0;
background: var(--theme-popup-color);
border-radius: 1rem;
box-shadow: var(--theme-popup-shadow);
.header {
flex-shrink: 0;
padding: 0.75rem 0.75rem 0.5rem;
}
.block {
display: flex;
flex-shrink: 0;
min-width: 0;
min-height: 0;
&:not(:last-child) {
border-bottom: 1px solid var(--theme-divider-color);
}
&:not(.row) {
flex-direction: column;
}
&.first {
padding-top: 0;
}
&:not(.rightCropPadding) {
padding: 0.75rem 1.25rem;
}
&.rightCropPadding {
padding: 0.75rem 1rem 0.75rem 1.25rem;
}
&.row {
padding: 0 1.25rem 0.5rem;
}
}
.top-icon {
flex-shrink: 0;
margin-top: 1.375rem;
}
}
</style>