Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@busfor/react-native-html-to-native
Advanced tools
Create customizable React Native views from HTML markup
Library for parsing HTML code into native iOS and Android components with CSS selector-like styling and rendering
$ yarn add @busfor/react-native-html-to-native
import { HTMLView } from '@busfor/react-native-html-to-native'
<HTMLView
onLinkPress={(url) => console.log(url)}
onError={(err) => console.log(err)}
styles={styles}
renderers={{
'a.link': (renderedChildren, style, props) => {
return (
<TouchableOpacity key={props.key} onPress={() => console.log('Clicked', props.attributes.href)} style={style}>
{renderedChildren}
</TouchableOpacity>
)
},
}}
html={'<div><p>Paragraph</p></div>'}
onLoading={(loading) => console.log(loading)}
/>
Name | Description | Type |
---|---|---|
html* | Raw HTML code to be parsed and presented | string |
renderers | HTML nodes render functions | Object |
passProps | Custom props passed to node renderer | Object |
styles | Custom node styles | Object |
onError | Error callback function | Function |
onLinkPress | Link press callback function | Function |
parserOptions | Parser options, see ParserOptions type | ParserOptions |
onLoading | Loading state callback, only parameter is loadingState of type boolean | Function |
renderLoading | Function to render custom loading indicator | Function |
* - required property
ParserOptions
Option | Description | Type | Default |
---|---|---|---|
normalizeWhitespace | Indicates whether whitespace in text nodes should be normalized | boolean | false |
recognizeSelfClosing | Recognize self-closing HTML tags | boolean | true |
decodeEntities | If set to true, entities within HTML code will be decoded | boolean | true |
ElementRenderer - function for rendering html nodes as native elements
(renderedChildren: Array<ReactNode>, style: StyleProp<any>, props: ElementProps) => ReactNode
Function accepts rendered node's children, node's style and props
Should return ReactNode
For more see Default renderers
ElementProps - props of rendering HTML node
Name | Description | Type |
---|---|---|
attributes | HTML tag attributes | Object or undefined |
passProps | Custom props passed to component render from HTMLView | Object |
handleLinkPress | Link press handler function | Function |
node | HTML node for which element is rendered | Node |
children | Node's children array | Array<Node> |
siblings | Node's siblings array | Array<Node> |
parent | Node's parent | Node |
data | Text data for text nodes | string |
key | Unique key for component rendering | string |
Selectors system built in a CSS-like manner
To select element by tag name just use it as is: ol, p, etc.
For selecting by class or id use .class and #id. For more specific selection of component with class(same for component with id) use it like: p.class
Also it is possible to select HTML node by path like ol>li or ol.class>li#id etc.
Some HTML node have custom selectors. Text nodes are rendered as React Native <Text> components and can be accessed by TextNode selector. Same for list items indicators nodes - access it by IndicatorNode selector.
For more examples of using selectors see Usage, Example app and Default renderers and styles
Some HTML tags are rendered by default, some are skipped while rendering.
To know how HTML tags are rendered and how to use ElementRenderer functions see default renderers
Some default styles for tags could be specified in this library
To see what styles are default for tags see default styles
Feel free to report any bug or request any functionality you would like to be done with Open Issue functionality of GitHub
Also feel free to fork and contribute by opening Pull Request. All pull requests will be reviewed and merged if everything is OK!
⬜️ Improve CSS selectors
⬜️ Complete example app
⬜️ Add HTML parsing from URL
FAQs
Create customizable React Native views from HTML markup
The npm package @busfor/react-native-html-to-native receives a total of 8 weekly downloads. As such, @busfor/react-native-html-to-native popularity was classified as not popular.
We found that @busfor/react-native-html-to-native demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.