Skip to content

Commit

Permalink
feat: added jsdocs (#4356)
Browse files Browse the repository at this point in the history
* added JSDocs for almost all extensions

* start adding commands jsdocs

* add jsdocs for rest of extensions

* add jsdocs for Extensions

* add js docs for all extensions

* add more jsdocs

* add js docs for node spec definitions
  • Loading branch information
bdbch committed May 11, 2024
1 parent f54d314 commit b941eea
Show file tree
Hide file tree
Showing 124 changed files with 2,332 additions and 78 deletions.
143 changes: 129 additions & 14 deletions packages/core/src/Extension.ts
Expand Up @@ -23,30 +23,54 @@ declare module '@tiptap/core' {
[key: string]: any

/**
* Name
* The extension name - this must be unique.
* It will be used to identify the extension.
*
* @example 'myExtension'
*/
name: string

/**
* Priority
* The priority of your extension. The higher, the later it will be called
* and will take precedence over other extensions with a lower priority.
* @default 1000
* @example 1001
*/
priority?: number

/**
* Default options
* The default options for this extension.
* @example
* defaultOptions: {
* myOption: 'foo',
* myOtherOption: 10,
* }
*/
defaultOptions?: Options

/**
* Default Options
* This method will add options to this extension
* @see https://tiptap.dev/guide/custom-extensions#settings
* @example
* addOptions() {
* return {
* myOption: 'foo',
* myOtherOption: 10,
* }
*/
addOptions?: (this: {
name: string
parent: Exclude<ParentConfig<ExtensionConfig<Options, Storage>>['addOptions'], undefined>
}) => Options

/**
* Default Storage
* The default storage this extension can save data to.
* @see https://tiptap.dev/guide/custom-extensions#storage
* @example
* defaultStorage: {
* prefetchedUsers: [],
* loading: false,
* }
*/
addStorage?: (this: {
name: string
Expand All @@ -55,7 +79,30 @@ declare module '@tiptap/core' {
}) => Storage

/**
* Global attributes
* This function adds globalAttributes to specific nodes.
* @see https://tiptap.dev/guide/custom-extensions#global-attributes
* @example
* addGlobalAttributes() {
* return [
* {
// Extend the following extensions
* types: [
* 'heading',
* 'paragraph',
* ],
* // … with those attributes
* attributes: {
* textAlign: {
* default: 'left',
* renderHTML: attributes => ({
* style: `text-align: ${attributes.textAlign}`,
* }),
* parseHTML: element => element.style.textAlign || 'left',
* },
* },
* },
* ]
* }
*/
addGlobalAttributes?: (this: {
name: string
Expand All @@ -65,7 +112,14 @@ declare module '@tiptap/core' {
}) => GlobalAttributes | {}

/**
* Raw
* This function adds commands to the editor
* @see https://tiptap.dev/guide/custom-extensions#keyboard-shortcuts
* @example
* addCommands() {
* return {
* myCommand: () => ({ chain }) => chain().setMark('type', 'foo').run(),
* }
* }
*/
addCommands?: (this: {
name: string
Expand All @@ -76,7 +130,14 @@ declare module '@tiptap/core' {
}) => Partial<RawCommands>

/**
* Keyboard shortcuts
* This function registers keyboard shortcuts.
* @see https://tiptap.dev/guide/custom-extensions#keyboard-shortcuts
* @example
* addKeyboardShortcuts() {
* return {
* 'Mod-l': () => this.editor.commands.toggleBulletList(),
* }
* },
*/
addKeyboardShortcuts?: (this: {
name: string
Expand All @@ -89,7 +150,17 @@ declare module '@tiptap/core' {
}

/**
* Input rules
* This function adds input rules to the editor.
* @see https://tiptap.dev/guide/custom-extensions#input-rules
* @example
* addInputRules() {
* return [
* markInputRule({
* find: inputRegex,
* type: this.type,
* }),
* ]
* },
*/
addInputRules?: (this: {
name: string
Expand All @@ -100,7 +171,17 @@ declare module '@tiptap/core' {
}) => InputRule[]

/**
* Paste rules
* This function adds paste rules to the editor.
* @see https://tiptap.dev/guide/custom-extensions#paste-rules
* @example
* addPasteRules() {
* return [
* markPasteRule({
* find: pasteRegex,
* type: this.type,
* }),
* ]
* },
*/
addPasteRules?: (this: {
name: string
Expand All @@ -111,7 +192,14 @@ declare module '@tiptap/core' {
}) => PasteRule[]

/**
* ProseMirror plugins
* This function adds Prosemirror plugins to the editor
* @see https://tiptap.dev/guide/custom-extensions#prosemirror-plugins
* @example
* addProseMirrorPlugins() {
* return [
* customPlugin(),
* ]
* }
*/
addProseMirrorPlugins?: (this: {
name: string
Expand All @@ -122,7 +210,16 @@ declare module '@tiptap/core' {
}) => Plugin[]

/**
* Extensions
* This function adds additional extensions to the editor. This is useful for
* building extension kits.
* @example
* addExtensions() {
* return [
* BulletList,
* OrderedList,
* ListItem
* ]
* }
*/
addExtensions?: (this: {
name: string
Expand All @@ -132,7 +229,14 @@ declare module '@tiptap/core' {
}) => Extensions

/**
* Extend Node Schema
* This function extends the schema of the node.
* @example
* extendNodeSchema() {
* return {
* group: 'inline',
* selectable: false,
* }
* }
*/
extendNodeSchema?:
| ((
Expand All @@ -147,7 +251,14 @@ declare module '@tiptap/core' {
| null

/**
* Extend Mark Schema
* This function extends the schema of the mark.
* @example
* extendMarkSchema() {
* return {
* group: 'inline',
* selectable: false,
* }
* }
*/
extendMarkSchema?:
| ((
Expand Down Expand Up @@ -282,6 +393,10 @@ declare module '@tiptap/core' {
}
}

/**
* The Extension class is the base class for all extensions.
* @see https://tiptap.dev/api/extensions#create-a-new-extension
*/
export class Extension<Options = any, Storage = any> {
type = 'extension'

Expand Down

0 comments on commit b941eea

Please sign in to comment.