-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add Node.getIf support * chore: restructure get to use getIf
- Loading branch information
1 parent
f31167c
commit ee2c454
Showing
5 changed files
with
74 additions
and
5 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'slate': patch | ||
--- | ||
|
||
feat: add Node.getIf method |
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,17 @@ | ||
/** @jsx jsx */ | ||
import { Node } from 'slate' | ||
import { jsx } from 'slate-hyperscript' | ||
import { cloneDeep } from 'lodash' | ||
|
||
export const input = ( | ||
<editor> | ||
<element> | ||
<text /> | ||
</element> | ||
</editor> | ||
) | ||
export const test = value => { | ||
return Node.getIf(value, []) | ||
} | ||
export const skip = true // TODO: see https://github.com/ianstormtaylor/slate/pull/4188 | ||
export const output = cloneDeep(input) |
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,19 @@ | ||
/** @jsx jsx */ | ||
import { Node } from 'slate' | ||
import { jsx } from 'slate-hyperscript' | ||
|
||
export const input = ( | ||
<editor> | ||
<element> | ||
<text /> | ||
</element> | ||
</editor> | ||
) | ||
export const test = value => { | ||
return Node.getIf(value, [0]) | ||
} | ||
export const output = ( | ||
<element> | ||
<text /> | ||
</element> | ||
) |
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,15 @@ | ||
/** @jsx jsx */ | ||
import { Node } from 'slate' | ||
import { jsx } from 'slate-hyperscript' | ||
|
||
export const input = ( | ||
<editor> | ||
<element> | ||
<text /> | ||
</element> | ||
</editor> | ||
) | ||
export const test = value => { | ||
return Node.getIf(value, [0, 0, 0]) | ||
} | ||
export const output = undefined |