mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 16:48:14 +00:00
60 lines
2.0 KiB
TypeScript
60 lines
2.0 KiB
TypeScript
import React, { useContext } from 'react';
|
|
import {
|
|
Plugin,
|
|
Action,
|
|
CurrentAppInfoProvider,
|
|
SchemaComponentOptions,
|
|
useCollectionManagerV2,
|
|
CollectionManagerProviderV2,
|
|
} from '@nocobase/client';
|
|
import { Kanban } from './Kanban';
|
|
import { KanbanCard } from './Kanban.Card';
|
|
import { KanbanCardDesigner, kanbanCardInitializers } from './Kanban.Card.Designer';
|
|
import { KanbanCardDesignerTitleSwitch } from './Kanban.Card.Designer.TitleSwitch';
|
|
import { KanbanCardViewer } from './Kanban.CardViewer';
|
|
import { KanbanDesigner } from './Kanban.Designer';
|
|
import { kanbanActionInitializers } from './KanbanActionInitializers';
|
|
import { KanbanBlockProvider, useKanbanBlockProps } from './KanbanBlockProvider';
|
|
import { KanbanBlockInitializer } from './KanbanBlockInitializer';
|
|
import { kanbanSettings } from './Kanban.Settings';
|
|
|
|
Kanban.Card = KanbanCard;
|
|
Kanban.CardAdder = Action;
|
|
Kanban.CardViewer = KanbanCardViewer;
|
|
Kanban.Card.Designer = KanbanCardDesigner;
|
|
Kanban.Card.Designer.TitleSwitch = KanbanCardDesignerTitleSwitch;
|
|
Kanban.Designer = KanbanDesigner;
|
|
|
|
const KanbanV2 = Kanban;
|
|
|
|
const KanbanPluginProvider = React.memo((props) => {
|
|
return (
|
|
<CurrentAppInfoProvider>
|
|
<SchemaComponentOptions
|
|
components={{ Kanban, KanbanBlockProvider, KanbanV2, KanbanBlockInitializer }}
|
|
scope={{ useKanbanBlockProps }}
|
|
>
|
|
{props.children}
|
|
</SchemaComponentOptions>
|
|
</CurrentAppInfoProvider>
|
|
);
|
|
});
|
|
KanbanPluginProvider.displayName = 'KanbanPluginProvider';
|
|
|
|
class KanbanPlugin extends Plugin {
|
|
async load() {
|
|
this.app.use(KanbanPluginProvider);
|
|
this.app.schemaInitializerManager.add(kanbanCardInitializers);
|
|
this.app.schemaInitializerManager.add(kanbanActionInitializers);
|
|
this.app.schemaSettingsManager.add(kanbanSettings);
|
|
|
|
const blockInitializers = this.app.schemaInitializerManager.get('BlockInitializers');
|
|
blockInitializers?.add('dataBlocks.kanban', {
|
|
title: '{{t("Kanban")}}',
|
|
Component: 'KanbanBlockInitializer',
|
|
});
|
|
}
|
|
}
|
|
|
|
export default KanbanPlugin;
|