base
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
/**
|
||||
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
* See the LICENSE file for details.
|
||||
*/
|
||||
|
||||
import { useCallback, useMemo } from "react";
|
||||
// plane editor
|
||||
import type { TMentionSection } from "@plane/editor";
|
||||
// plane types
|
||||
import type { TSearchEntities, TSearchResponse } from "@plane/types";
|
||||
|
||||
export type TUseAdditionalEditorMentionArgs = {
|
||||
enableAdvancedMentions: boolean;
|
||||
};
|
||||
|
||||
export type TAdditionalEditorMentionHandlerArgs = {
|
||||
response: TSearchResponse;
|
||||
};
|
||||
|
||||
export type TAdditionalEditorMentionHandlerReturnType = {
|
||||
sections: TMentionSection[];
|
||||
};
|
||||
|
||||
export type TAdditionalParseEditorContentArgs = {
|
||||
id: string;
|
||||
entityType: TSearchEntities;
|
||||
};
|
||||
|
||||
export type TAdditionalParseEditorContentReturnType =
|
||||
| {
|
||||
redirectionPath: string;
|
||||
textContent: string;
|
||||
}
|
||||
| undefined;
|
||||
|
||||
export const useAdditionalEditorMention = (_args: TUseAdditionalEditorMentionArgs) => {
|
||||
const updateAdditionalSections = useCallback(
|
||||
(_args: TAdditionalEditorMentionHandlerArgs): TAdditionalEditorMentionHandlerReturnType => ({
|
||||
sections: [],
|
||||
}),
|
||||
[]
|
||||
);
|
||||
|
||||
const parseAdditionalEditorContent = useCallback(
|
||||
(_args: TAdditionalParseEditorContentArgs): TAdditionalParseEditorContentReturnType => undefined,
|
||||
[]
|
||||
);
|
||||
|
||||
const editorMentionTypes: TSearchEntities[] = useMemo(() => ["user_mention"], []);
|
||||
|
||||
return {
|
||||
updateAdditionalSections,
|
||||
parseAdditionalEditorContent,
|
||||
editorMentionTypes,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user