React Native WebView with "super powers". This package is basically a WebView with some extra perks included.
- Possibility to inject JS scripts easily.
- Browser cookies enabled by default.
- DOM Storage Enabled
- Auto Height
WebView
options, in order to useWebView
s inside components likeScrollView
scrollEnabled
set to default false
Caution! This package can only be used with row HTML content. If a uri
is passed as the source
prop this component will return an empty <View/>
.
!Here is also a Test CASE
npm install react-native-js-injector --save
yarn add react-native-js-injector
This library is depended of the latest updates of the WebView
component.
At the current time of this release, the react team suggests using the RN community backed WebView as they are removing WebView
from the react core.
Install the following WebView
yarn add react-native-webview
react-native link react-native-webview
If there are any issues check out their Getting-Started guide.
import {WebViewInjector, INJECTOR_TYPE} from 'react-native-js-injector'
const htmlTemplate = `<p>Hello!</p`
//example script
const script = `<script>document.body.appendChild(document.createElement("hr"));</script>`
export default class App extends Component {
render() {
return (<View style={styles.container}>
<WebViewInjector
injectScript={script}
scrollEnabled={false}
// style={{backgroundColor: 'red'}}
showsVerticalScrollIndicator={false}
showsHorizontalScrollIndicator={false}
type={INJECTOR_TYPE.AUTO_HEIGHT}
source={{html: htmlTemplate}}
/>
</View>
)
}
}
The props are build to follow the same guidelines as the standard props that WebView
accepts.
source
(Object) - JS object containing the raw HTML code. Example:{html: <div></div>}
type
(String) - A flag specifying if the component should use the auto-height perks or not. INJECTOR_TYPE.DEFAULT || INJECTOR_TYPE.AUTO_HEIGHT. Not required!injectScript
(String) - String containing the script that will be executed on theWebView
. Read the guideline scripts bellow.defaultHeight
(Number) - In case of using INJECTOR_TYPE.AUTO_HEIGHT, use this property to set a default height to theWebView
content.maxHeight
(Number) - In case of using INJECTOR_TYPE.AUTO_HEIGHT, use this property to set the MAX height theWebView
can reach.minHeight
(Number) - In case of using INJECTOR_TYPE.AUTO_HEIGHT, use this property to set the MIN height theWebView
can have.*****
(PROPS) - The component is build to accept any of the default props that are supported by the standardWebView
.
In order to execute scripts make sure they are **IIFE** (Immediately Invoked Function Expression)
.
Make sure the injectScript
props is passed as String
. You can use one of the following examples to pass as the value of injectScript
prop.
const script1 = (function () {
//statements...
})();
// usage
injectScript={script1.toString()}
const script2 = `<script>(console.log('worthless script');)()</script>`
// usage
injectScript={script2}
In order to remotely debug WebView issues read the following steps. Debugging Info
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.