tachybase_todo/packages/client/src/schema-initializer/buttons/CalendarActionInitializers.tsx
chenos f791d43716
feat: acl provider (#279)
* feat: acl provider

* feat: menu server hook

* feat: improve code

* fix: fields filter
2022-04-10 19:22:39 +08:00

77 lines
1.9 KiB
TypeScript

// 日历的操作配置
export const CalendarActionInitializers = {
title: 'Configure actions',
icon: 'SettingOutlined',
style: { marginLeft: 8 },
items: [
{
type: 'itemGroup',
title: 'Enable actions',
children: [
{
type: 'item',
title: 'Today',
component: 'ActionInitializer',
schema: {
title: 'Today',
'x-component': 'CalendarV2.Today',
'x-action': `calendar:today`,
'x-align': 'left',
},
},
{
type: 'item',
title: 'Turn pages',
component: 'ActionInitializer',
schema: {
title: 'Turn pages',
'x-component': 'CalendarV2.Nav',
'x-action': `calendar:nav`,
'x-align': 'left',
},
},
{
type: 'item',
title: 'Title',
component: 'ActionInitializer',
schema: {
title: 'Title',
'x-component': 'CalendarV2.Title',
'x-action': `calendar:title`,
'x-align': 'left',
},
},
{
type: 'item',
title: 'Select view',
component: 'ActionInitializer',
schema: {
title: 'Select view',
'x-component': 'CalendarV2.ViewSelect',
'x-action': `calendar:viewSelect`,
'x-align': 'right',
'x-designer': 'Action.Designer',
},
},
{
type: 'item',
title: "{{t('Filter')}}",
component: 'FilterActionInitializer',
schema: {
'x-align': 'right',
},
},
{
type: 'item',
title: '{{ t("Add new") }}',
component: 'CreateActionInitializer',
schema: {
'x-align': 'right',
'x-decorator': 'ACLActionProvider',
},
},
],
},
],
};