platform/models/calendar/src/index.ts
Denis Bykhov d0d884cf84
Disable calendar app (#3736)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-09-25 15:54:17 +06:00

288 lines
8.2 KiB
TypeScript

//
// Copyright © 2020, 2021 Anticrm Platform Contributors.
//
// 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.
//
import activity from '@hcengineering/activity'
import {
Calendar,
CalendarEventPresenter,
Event,
ReccuringEvent,
ReccuringInstance,
RecurringRule
} from '@hcengineering/calendar'
import { Contact } from '@hcengineering/contact'
import { DateRangeMode, Domain, IndexKind, Markup, Ref, Timestamp } from '@hcengineering/core'
import {
ArrOf,
Builder,
Collection,
Index,
Mixin,
Model,
Prop,
ReadOnly,
TypeBoolean,
TypeDate,
TypeMarkup,
TypeRef,
TypeString,
TypeTimestamp,
UX
} from '@hcengineering/model'
import attachment from '@hcengineering/model-attachment'
import contact from '@hcengineering/model-contact'
import core, { TAttachedDoc, TClass } from '@hcengineering/model-core'
import { TSpaceWithStates } from '@hcengineering/model-task'
import view, { createAction } from '@hcengineering/model-view'
import notification from '@hcengineering/notification'
import setting from '@hcengineering/setting'
import { AnyComponent } from '@hcengineering/ui'
import calendar from './plugin'
export * from '@hcengineering/calendar'
export { calendarId } from '@hcengineering/calendar'
export { calendarOperation } from './migration'
export const DOMAIN_CALENDAR = 'calendar' as Domain
@Model(calendar.class.Calendar, core.class.Space)
@UX(calendar.string.Calendar, calendar.icon.Calendar)
export class TCalendar extends TSpaceWithStates implements Calendar {
visibility!: 'public' | 'freeBusy' | 'private'
sync?: boolean
}
@Model(calendar.class.Event, core.class.AttachedDoc, DOMAIN_CALENDAR)
@UX(calendar.string.Event, calendar.icon.Calendar)
export class TEvent extends TAttachedDoc implements Event {
declare space: Ref<Calendar>
eventId!: string
@Prop(TypeString(), calendar.string.Title)
@Index(IndexKind.FullText)
title!: string
@Prop(TypeMarkup(), calendar.string.Description)
@Index(IndexKind.FullText)
description!: Markup
@Prop(TypeString(), calendar.string.Location, { icon: calendar.icon.Location })
@Index(IndexKind.FullText)
location?: string
@Prop(TypeBoolean(), calendar.string.AllDay)
@ReadOnly()
allDay!: boolean
@Prop(TypeDate(DateRangeMode.DATETIME), calendar.string.Date)
date!: Timestamp
@Prop(TypeDate(DateRangeMode.DATETIME), calendar.string.DueTo)
dueDate!: Timestamp
@Prop(Collection(attachment.class.Attachment), attachment.string.Attachments, { shortLabel: attachment.string.Files })
attachments?: number
@Prop(ArrOf(TypeRef(contact.class.Contact)), calendar.string.Participants)
participants!: Ref<Contact>[]
@Prop(ArrOf(TypeTimestamp()), calendar.string.Reminders)
reminders?: number[]
@Prop(ArrOf(TypeString()), calendar.string.ExternalParticipants)
externalParticipants?: string[]
access!: 'freeBusyReader' | 'reader' | 'writer' | 'owner'
visibility?: 'public' | 'freeBusy' | 'private'
}
@Model(calendar.class.ReccuringEvent, calendar.class.Event)
@UX(calendar.string.ReccuringEvent, calendar.icon.Calendar)
export class TReccuringEvent extends TEvent implements ReccuringEvent {
rules!: RecurringRule[]
exdate!: Timestamp[]
rdate!: Timestamp[]
}
@Model(calendar.class.ReccuringInstance, calendar.class.Event)
@UX(calendar.string.Event, calendar.icon.Calendar)
export class TReccuringInstance extends TReccuringEvent implements ReccuringInstance {
recurringEventId!: Ref<ReccuringEvent>
originalStartTime!: number
isCancelled?: boolean
virtual?: boolean
}
@Mixin(calendar.mixin.CalendarEventPresenter, core.class.Class)
export class TCalendarEventPresenter extends TClass implements CalendarEventPresenter {
presenter!: AnyComponent
}
export function createModel (builder: Builder): void {
builder.createModel(TCalendar, TReccuringEvent, TReccuringInstance, TEvent, TCalendarEventPresenter)
builder.mixin(calendar.class.Event, core.class.Class, calendar.mixin.CalendarEventPresenter, {
presenter: calendar.component.CalendarEventPresenter
})
builder.createDoc(
view.class.Viewlet,
core.space.Model,
{
attachTo: calendar.class.Event,
descriptor: calendar.viewlet.Calendar,
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
config: [''],
configOptions: {
hiddenKeys: ['title', 'date']
}
},
calendar.viewlet.CalendarEvent
)
builder.createDoc(
setting.class.IntegrationType,
core.space.Model,
{
label: calendar.string.Calendar,
description: calendar.string.IntegrationDescr,
icon: calendar.component.CalendarIntegrationIcon,
createComponent: calendar.component.IntegrationConnect,
onDisconnect: calendar.handler.DisconnectHandler,
reconnectComponent: calendar.component.IntegrationConnect,
configureComponent: calendar.component.IntegrationConfigure
},
calendar.integrationType.Calendar
)
builder.createDoc(
notification.class.NotificationGroup,
core.space.Model,
{
label: calendar.string.Calendar,
icon: calendar.icon.Calendar
},
calendar.ids.CalendarNotificationGroup
)
builder.mixin(calendar.class.Event, core.class.Class, notification.mixin.ClassCollaborators, {
fields: ['participants']
})
builder.createDoc(
notification.class.NotificationType,
core.space.Model,
{
hidden: false,
generated: false,
label: calendar.string.Reminder,
group: calendar.ids.CalendarNotificationGroup,
txClasses: [],
objectClass: calendar.class.Event,
allowedForAuthor: true,
templates: {
textTemplate: 'Reminder: {doc}',
htmlTemplate: 'Reminder: {doc}',
subjectTemplate: 'Reminder: {doc}'
},
providers: {
[notification.providers.PlatformNotification]: true,
[notification.providers.EmailNotification]: false
}
},
calendar.ids.ReminderNotification
)
builder.createDoc(
activity.class.TxViewlet,
core.space.Model,
{
objectClass: calendar.class.Event,
icon: calendar.icon.Reminder,
txClass: core.class.TxUpdateDoc,
label: calendar.string.Reminder,
component: calendar.activity.ReminderViewlet,
display: 'emphasized',
editable: false,
hideOnRemove: true
},
calendar.ids.ReminderViewlet
)
builder.createDoc(
view.class.ViewletDescriptor,
core.space.Model,
{
label: calendar.string.Calendar,
icon: calendar.icon.Calendar,
component: calendar.component.CalendarView
},
calendar.viewlet.Calendar
)
builder.createDoc(
view.class.ActionCategory,
core.space.Model,
{ label: calendar.string.Calendar, visible: true },
calendar.category.Calendar
)
createAction(
builder,
{
action: calendar.actionImpl.SaveEventReminder,
label: calendar.string.RemindMeAt,
icon: calendar.icon.Reminder,
input: 'focus',
category: calendar.category.Calendar,
target: calendar.class.Event,
context: {
mode: 'context',
group: 'create'
}
},
calendar.action.SaveEventReminder
)
createAction(
builder,
{
action: calendar.actionImpl.DeleteRecEvent,
override: [view.action.Delete],
label: view.string.Delete,
icon: view.icon.Delete,
keyBinding: ['Meta + Backspace'],
category: view.category.General,
input: 'any',
target: calendar.class.ReccuringInstance,
context: { mode: ['context', 'browser'], group: 'remove' }
},
calendar.action.DeleteRecEvent
)
builder.mixin(calendar.class.Event, core.class.Class, view.mixin.ObjectEditor, {
editor: calendar.component.EditEvent
})
builder.mixin(calendar.class.Event, core.class.Class, view.mixin.ObjectPresenter, {
presenter: calendar.component.EventPresenter
})
}
export default calendar