-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: export it from client instead of index
- Loading branch information
1 parent
786beef
commit 40041f1
Showing
5 changed files
with
532 additions
and
526 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
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,23 @@ | ||
import { Descendant } from 'slate'; | ||
import { deserialize, normalizeHtml } from '../lib'; | ||
|
||
const parseDomDocumentSync = (normalizedHTML: string) => { | ||
return new DOMParser().parseFromString(normalizedHTML, 'text/html'); | ||
}; | ||
|
||
export function htmlToSlateASTSync<T>( | ||
html: string | ||
): string | Descendant | ChildNode[] | Descendant[] | T | T[] { | ||
if ( | ||
typeof window === 'undefined' || | ||
typeof window.DOMParser === 'undefined' | ||
) { | ||
throw new Error( | ||
'This function is intended to be used in a browser environment only' | ||
); | ||
} | ||
|
||
const normalizedHTML = normalizeHtml(html); | ||
const domDocument = parseDomDocumentSync(normalizedHTML); | ||
return deserialize(domDocument.body, window); | ||
} |
Oops, something went wrong.