-
Notifications
You must be signed in to change notification settings - Fork 61
feat: context-sensitive perm tags creation #1822
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
Open
chittolinag
wants to merge
3
commits into
main
Choose a base branch
from
feature/perm-block-nodes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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 hidden or 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
53 changes: 53 additions & 0 deletions
53
packages/super-editor/src/core/super-converter/helpers/node-context.js
This file contains hidden or 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,53 @@ | ||
| const INLINE_PARENT_NAMES = new Set([ | ||
| 'w:r', | ||
| 'w:hyperlink', | ||
| 'w:smartTag', | ||
| 'w:fldSimple', | ||
| 'w:proofErr', | ||
| 'w:del', | ||
| 'w:ins', | ||
| 'w:p', // Paragraph is an inline container; unknown children must be inline-safe | ||
| ]); | ||
|
|
||
| const INLINE_NODE_NAMES = new Set([ | ||
| 'm:oMathPara', | ||
| 'm:oMath', | ||
| 'm:t', | ||
| 'm:r', | ||
| 'm:ctrlPr', | ||
| 'm:sSupPr', | ||
| 'm:e', | ||
| 'm:sup', | ||
| 'm:sSup', | ||
| ]); | ||
|
|
||
| const BLOCK_BOUNDARY_NAMES = new Set(['w:body', 'w:tbl', 'w:tc', 'w:tr']); | ||
|
|
||
| /** | ||
| * Determines if the current DOCX node position accepts inline-only content. | ||
| * Walks up the ancestor chain until it finds an inline parent or block boundary. | ||
| * | ||
| * @param {Array<{ name?: string }>} [path=[]] Ancestor chain leading to the current node. | ||
| * @param {string} [currentNodeName] Optional immediate node name override. | ||
| * @returns {boolean} | ||
| */ | ||
| export const isInlineContext = (path = [], currentNodeName) => { | ||
| const immediateName = currentNodeName ?? path[path.length - 1]?.name; | ||
| if (immediateName && INLINE_NODE_NAMES.has(immediateName)) { | ||
| return true; | ||
| } | ||
| if (!Array.isArray(path) || path.length === 0) return false; | ||
|
|
||
| for (let i = path.length - 1; i >= 0; i--) { | ||
| const ancestorName = path[i]?.name; | ||
| if (!ancestorName) continue; | ||
| if (INLINE_NODE_NAMES.has(ancestorName) || INLINE_PARENT_NAMES.has(ancestorName)) { | ||
| return true; | ||
| } | ||
| if (BLOCK_BOUNDARY_NAMES.has(ancestorName)) { | ||
| return false; | ||
| } | ||
| } | ||
|
|
||
| return false; | ||
| }; | ||
45 changes: 1 addition & 44 deletions
45
packages/super-editor/src/core/super-converter/v2/importer/passthroughNodeImporter.js
This file contains hidden or 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
3 changes: 2 additions & 1 deletion
3
packages/super-editor/src/core/super-converter/v2/importer/passthroughNodeImporter.test.js
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
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.
Just moved this out of
passthroughNodeImporterso it can be reused.