mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
8c716b173a
* chore: Update editor generics * fix: Address PR review on editor generics - Restore null-guard on Link click handler so anchors aren't inert when no onClickLink is provided - Mark onClickLink optional in LinkOptions and openLink command to match runtime - Remove dead `collapsed` option from HeadingOptions - Make ToggleBlock dictionary optional and restore optional-chained access for server-side schema instantiation Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import type { InputRule } from "prosemirror-inputrules";
|
|
import type { ParseSpec } from "prosemirror-markdown";
|
|
import type {
|
|
MarkSpec,
|
|
MarkType,
|
|
Node as ProsemirrorNode,
|
|
Schema,
|
|
} from "prosemirror-model";
|
|
import type { Command } from "prosemirror-state";
|
|
import { toggleMark } from "../commands/toggleMark";
|
|
import type { CommandFactory } from "../lib/Extension";
|
|
import Extension from "../lib/Extension";
|
|
import type { MarkdownSerializerState } from "../lib/markdown/serializer";
|
|
import type { Primitive } from "utility-types";
|
|
|
|
export default abstract class Mark<
|
|
TOptions extends object = object,
|
|
> extends Extension<TOptions> {
|
|
get type() {
|
|
return "mark";
|
|
}
|
|
|
|
get schema(): MarkSpec {
|
|
return {};
|
|
}
|
|
|
|
get markdownToken(): string {
|
|
return "";
|
|
}
|
|
|
|
keys(_options: { type: MarkType; schema: Schema }): Record<string, Command> {
|
|
return {};
|
|
}
|
|
|
|
inputRules(_options: { type: MarkType; schema: Schema }): InputRule[] {
|
|
return [];
|
|
}
|
|
|
|
toMarkdown(_state: MarkdownSerializerState, _node: ProsemirrorNode) {
|
|
throw new Error("toMarkdown not implemented");
|
|
}
|
|
|
|
parseMarkdown(): ParseSpec | void {
|
|
return undefined;
|
|
}
|
|
|
|
commands({
|
|
type,
|
|
}: {
|
|
type: MarkType;
|
|
schema: Schema;
|
|
}): Record<string, CommandFactory> | CommandFactory | undefined {
|
|
return (attrs) => toggleMark(type, attrs as Record<string, Primitive>);
|
|
}
|
|
}
|