-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: trigger inputrule on enter for code block #1940
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Modified from | ||
// https://github.com/ProseMirror/prosemirror-inputrules/blob/master/src/inputrules.js | ||
// license: MIT | ||
|
||
import { InputRule } from 'prosemirror-inputrules' | ||
import { Plugin as ProseMirrorPlugin } from 'prosemirror-state' | ||
import type { Plugin, TextSelection } from 'prosemirror-state' | ||
import type { EditorView } from 'prosemirror-view' | ||
|
||
const MAX_MATCH = 500 | ||
|
||
function run(view: EditorView, from: number, to: number, text: string, rules: any[], plugin: Plugin) { | ||
if (view.composing) return false | ||
const state = view.state; const | ||
$from = state.doc.resolve(from) | ||
if ($from.parent.type.spec.code) return false | ||
const textBefore = $from.parent.textBetween(Math.max(0, $from.parentOffset - MAX_MATCH), $from.parentOffset, | ||
undefined, '\ufffc') + text | ||
for (let i = 0; i < rules.length; i += 1) { | ||
const match = rules[i].match.exec(textBefore) | ||
const tr = match && rules[i].handler(state, match, from - (match[0].length - text.length), to) | ||
if (!tr) continue | ||
view.dispatch(tr.setMeta(plugin, { | ||
transform: tr, from, to, text, | ||
})) | ||
return true | ||
} | ||
return false | ||
} | ||
|
||
export default function (options: any = {}) { | ||
const rules: InputRule[] = options.rules || [] | ||
const plugin: Plugin = new ProseMirrorPlugin({ | ||
props: { | ||
handleKeyDown(view, event) { | ||
if (event.key !== 'Enter') return false | ||
const { $cursor } = view.state.selection as TextSelection | ||
if ($cursor) return run(view, $cursor.pos, $cursor.pos, '\n', rules, plugin) | ||
return false | ||
}, | ||
}, | ||
}) | ||
|
||
return plugin | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is missing the
compositionend
event in the originalinputrule
, and well as theisInputRules
field which allowsundoInputRule
to work; as well as the original plugin state. Why not just copy the original plugin and add thehandleKeyDown
field?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ProseMirror/prosemirror-inputrules#6
Because marijnh said {enter} is not a kind of inputrule, so I made a standalone plugin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The origin inputrule plugin is not removed, IMO there is no necessary to add
compositionend
here maybe.I'm not familiar with ProseMirror, I'm not sure whether
the origin plugin state
is needed here 😥There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The plugin state is kept there so that the
undoInputRule
function (which is binded tobackspace
) can work using thesetMeta
andgetMeta
fields.https://prosemirror.net/docs/ref/#state.Transaction.setMeta
https://prosemirror.net/docs/ref/#state.Transaction.getMeta
I think you could argue enter is a type of inputrule, but where the trigger isn't an explicit key being entered, but an implicit key being pressed; plus, you're still using the
InputRule
abstraction, just handling / running it differently.