Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
munir ishak e072d8b6d1 initial commit il y a 3 ans
example initial commit il y a 3 ans
img initial commit il y a 3 ans
newExample initial commit il y a 3 ans
readme initial commit il y a 3 ans
src initial commit il y a 3 ans
.gitignore initial commit il y a 3 ans
.npmignore initial commit il y a 3 ans
LICENSE initial commit il y a 3 ans
README.md initial commit il y a 3 ans
htmlCopy.gradle initial commit il y a 3 ans
index.js initial commit il y a 3 ans
package.json initial commit il y a 3 ans

README.md

React Native Rich Text Editor with react-native-webview

Visit original repo first

This resolves #171, #174, and #178

Inspirations

For now, the original library has problems of using two deprecated modules, ListView and react-native-webview-bridge-updated. ListView problem is solved by Ankit-96 ’s PR. So I focused on removing react-native-webview-bridge-updated and making use of react-native-webview.

What I did

  • Did just like what Ankit-96 did; replaced ListView with FlatList
  • Replaced react-native-webview-bridge-updated with react-native-webview
    • Instead of injecting MessageHandler into webpage(WebViewBridge) and sending message through sendToBridge, I directly inject zss_editor’s function calls through injectJavaScript. To achieve that, I fixed WebViewMessageHandler.js to be mapper function, translating functions of RichTextEditor to those of zss_editor.
    • In editor.html, replace WebViewBridge.send with ReactNativeWebView.postMessage
  • Added ./newExample. You should $ cd newExample; yarn; cd ios; pod install; cd ..; react-native run-ios;.

How to use it

  • $ yarn add https://github.com/jb-/react-native-zss-rich-text-editor
  • $ yarn add react-native-webview (I’m not sure why I have to do this)
  • $ cd ios; pod install;

Limitations

  • Tested on RN 0.61.5, iOS only.

  • Since I worked it for my project only, I did not test it on other versions or on Android platform. If any of you are familiar with both Android and iOS natives, please refer to my project and collaborate.

References