2022-03-18 06:37:49 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020 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.
|
|
|
|
//
|
|
|
|
|
2022-03-26 17:34:06 +00:00
|
|
|
import { TxViewlet } from '@anticrm/activity'
|
2022-03-18 06:37:49 +00:00
|
|
|
import { calendarId } from '@anticrm/calendar'
|
|
|
|
import calendar from '@anticrm/calendar-resources/src/plugin'
|
2022-04-19 09:38:31 +00:00
|
|
|
import { Ref } from '@anticrm/core'
|
|
|
|
import type { IntlString } from '@anticrm/platform'
|
2022-03-18 06:37:49 +00:00
|
|
|
import { mergeIds } from '@anticrm/platform'
|
|
|
|
import { AnyComponent } from '@anticrm/ui'
|
2022-04-19 09:38:31 +00:00
|
|
|
import { Action, ViewAction, ViewletDescriptor } from '@anticrm/view'
|
2022-03-18 06:37:49 +00:00
|
|
|
|
|
|
|
export default mergeIds(calendarId, calendar, {
|
|
|
|
component: {
|
2022-03-18 16:07:42 +00:00
|
|
|
CreateCalendar: '' as AnyComponent,
|
2022-03-26 17:34:06 +00:00
|
|
|
CalendarView: '' as AnyComponent,
|
|
|
|
EditEvent: '' as AnyComponent,
|
|
|
|
ReminderPresenter: '' as AnyComponent
|
|
|
|
},
|
|
|
|
action: {
|
|
|
|
SaveEventReminder: '' as Ref<Action>
|
|
|
|
},
|
|
|
|
actionImpl: {
|
2022-04-19 09:38:31 +00:00
|
|
|
SaveEventReminder: '' as ViewAction
|
2022-03-18 06:37:49 +00:00
|
|
|
},
|
|
|
|
string: {
|
2022-03-18 16:07:42 +00:00
|
|
|
ApplicationLabelCalendar: '' as IntlString,
|
2022-03-26 17:34:06 +00:00
|
|
|
Event: '' as IntlString,
|
|
|
|
Reminder: '' as IntlString,
|
|
|
|
Shift: '' as IntlString,
|
|
|
|
State: '' as IntlString,
|
|
|
|
CreatedReminder: '' as IntlString
|
2022-03-18 06:37:49 +00:00
|
|
|
},
|
2022-03-18 16:07:42 +00:00
|
|
|
viewlet: {
|
|
|
|
Calendar: '' as Ref<ViewletDescriptor>
|
2022-03-26 17:34:06 +00:00
|
|
|
},
|
|
|
|
ids: {
|
|
|
|
ReminderViewlet: '' as Ref<TxViewlet>
|
2022-03-18 06:37:49 +00:00
|
|
|
}
|
|
|
|
})
|