shadow-react
v0.3.3
Published
wrap your component in shadow dom
Downloads
11
Readme
Shadow DOM in React
Props
props you can pass in:
static propTypes = {
boundaryMode: PropTypes.oneOf(['open', 'closed']),
children: PropTypes.node.isRequired,
includes: PropTypes.array,
htmlString: PropTypes.string,
htmlStringWrapperTag: PropTypes.string,
wrapperTag: PropTypes.string,
}
static defaultProps = {
includes: [],
wrapperTag: 'div',
htmlStringWrapperTag: 'div',
boundaryMode: 'open'
}
- the direct child of this React Component must be a html tag rather than a React Component, because the direct child will be the the host element of the shadow dom
- htmlString provided will be added into the shadow dom right before the direct child's children
- includes will be added after the direct child's children in order
Update
Since then shadow dom will not change when the render
called, use the provided method update to update component
shadowReact.update().then(()=> console.log('updated))
// update() {
// return new Promise(async resolve => {
// const root = this.attachShadow()
// await this.attachIncludes(root)
// resolve()
// })
// }
Flash of unstyled content
Since documents specified in the includes
prop are fetched over the network, so a hook is provided,
the host element has a className of @ShadowReact_fetching
when fetching, @ShadowReact_fetched
after all the documents are fetched or failed (Promise.all
)
Demo
run yarn start
import React, { Component } from 'react'
import logo from './logo.svg'
import ShadowReact from './ShadowReact'
class App extends Component {
render() {
return (
<ShadowReact includes={['App.css']}>
<div className="ShadowReact demo">
<div className="App">
<div className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h2>Welcome to React</h2>
</div>
<p className="App-intro">
To get started, edit <code>src/App.js</code> and save to reload.
</p>
</div>
</div>
</ShadowReact>
)
}
}
export default App
Demo's almost the same with the init page provided by create-react-app
, but using shadow dom instead.