![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
react-native-cn-quill
Advanced tools
react-native-cn-quill is a rich-text editor for react-native. We've developed this library on top of Quill Api.
Quill is a free, open source WYSIWYG editor built for the modern web. Completely customize it for any need with its modular architecture and expressive API. Read more here.
This package is using react-native-webview
. Please follow this document to install it.
npm i react-native-cn-quill
yarn add react-native-cn-quill
Here is a simple overview of our components usage.
import React from 'react';
import { SafeAreaView, StyleSheet, StatusBar } from 'react-native';
import QuillEditor, { QuillToolbar } from 'react-native-cn-quill';
export default function App() {
const _editor = React.createRef();
return (
<SafeAreaView style={styles.root}>
<StatusBar style="auto" />
<QuillEditor
style={styles.editor}
ref={_editor}
initialHtml="<h1>Quill Editor for react-native</h1>"
/>
<QuillToolbar editor={_editor} options="full" theme="light" />
</SafeAreaView>
);
}
const styles = StyleSheet.create({
title: {
fontWeight: 'bold',
alignSelf: 'center',
paddingVertical: 10,
},
root: {
flex: 1,
marginTop: StatusBar.currentHeight || 0,
backgroundColor: '#eaeaea',
},
editor: {
flex: 1,
padding: 0,
borderColor: 'gray',
borderWidth: 1,
marginHorizontal: 30,
marginVertical: 5,
backgroundColor: 'white',
},
});
QuillEditor is the main component of this library. You may easily add it to your application. It is also a wrapper for Quill and provides most of it's functionalities.
style
Type | Required |
---|---|
view.style | No |
initialHtml
The Initial html string to display in editor.
Type | Required |
---|---|
string | No |
quill
You may pass serveral options to customize quill to suit your needs .
Type | Required | description |
---|---|---|
{ id, modules: { toolbar }, theme, placeholder } | No | described below |
quill.id
HTML id of the container where the editor will be appended.
Type | Required |
---|---|
string | No |
quill.placeholder
Placeholder text to show when editor is empty.
Type | Required |
---|---|
string | No |
quill.modules
list of quill modules. (only toolbar is implemented)
to enable quill's built in toolbar pass true
or a simple array of format names to quill.modules.toolbar
Type | Required |
---|---|
{toolbar: boolean | array } | No |
quill.theme
Specify Quill's officially suppoted themes. (custom theme hasn't implemented yet)
Type | Required |
---|---|
'snow' | 'bubble' | No |
import3rdParties
We provide two ways to import required 3rd party scritps and styles like quill's script and styles.
Type | Required |
---|---|
'local' | 'cdn' | No |
containerId
HTML element id of the container for the quill object.
Type | Required |
---|---|
string | No |
loading
Custom text or component to display before webview loaded.
Type | Required |
---|---|
string | React.ReactNode | No |
theme
You may easily make your editor look good with the help of themes. you can pass color for background
, text
and placeholder
.
Type | Required |
---|---|
{ background: string; color: string; placeholder: string } | No |
container
The container component of webview
. you may pass false
to remove container or pass a custom component. Defaults to true
which will wrap the webview
inside a view
component.
Type | Required |
---|---|
boolean | React.ComponentType | No |
webview
You may specify custom props for webview
component.
Type | Required |
---|---|
WebViewProps | No |
onSelectionChange
Calls when quill's selection changes.
Type | Required |
---|---|
(range: { index, lengthmber } , oldRange: { index, length }, source) => void | No |
onTextChange
Calls when when the contents of Quill have changed.
Type | Required |
---|---|
(delta, oldContents, source) => void | No |
onEditorChange
Calls when when the contents of Quill have changed or quill's selection have changed.
Type | Required |
---|---|
(name , args) => void | No |
Read about these methods and their functionality on Quill Api
Name | Params | Returns | type |
---|---|---|---|
blur | - | void | Editor |
focus | - | void | Editor |
disable | - | void | Editor |
enable | enable? | void | Editor |
hasFocus | - | Promise<boolean> | Editor |
update | - | void | Editor |
format | name: string, value: any | void | Formating |
deleteText | index: number, length: number | void | Content |
getContents | index?: number, length?: number | Promise | Content |
getLength | - | Promise | Content |
getHtml | - | Promise | Content |
getText | index?: number, length?: number | Promise | Content |
insertEmbed | index: number, type: string, value: any | void | Content |
insertText | index: number, text: string, formats?: Record<string, any> | void | Content |
setContents | delta: any | void | Content |
setText | text: string | void | Content |
updateContents | delta: any | void | Content |
on | event, handler | - | Event |
off | event, handler | - | Event |
The QuillToolbar component allow users to easily format Quill’s contents. QuillToolbar controls can be specified by a simple array of format names like ['bold', 'italic', 'underline', 'strike']
or by just passing 'basic' or 'full' string to options prop. we've tried to develop it just like Quill Toolbar options.
The QuillToolbar uses a series of icons to render controls. this controls by default applies and removes formatting, but you can easily extend or overwrite these with custom
prop.
For example we may add the image
and clock
(user defined control that inserts current date to the editor) handlers just like this:
...
const clockIcon = require('../assets/icons/clock.png');
customHandler = (name: string, value: any) => {
if (name === 'image') {
this._editor.current?.insertEmbed(
0,
'image',
'https://picsum.photos/200/300'
);
} else if (name === 'clock') {
this._editor.current?.insertText(0, `Today is ${this.getCurrentDate()}`, {
bold: true,
color: 'red',
});
} else {
console.log(`${name} clicked with value: ${value}`);
}
};
render() {
...
<QuillToolbar
editor={this._editor}
options={['image', 'clock']}
theme="light"
custom={{
handler: this.customHandler,
actions: ['image', 'clock'],
icons: {
clock: clockIcon,
},
}}
/>
...
}
To see an example of how to fully implement this please check this Link.
styles
custom styles to pass to the inner components.
Type | Required |
---|---|
{ toolbar, toolset, tool } | No |
editor
Reference of QuillEditor
component.
Type | Required |
---|---|
React.RefObject<QuillEditor> | Yes |
theme
You may easily make your toolbar look good with the help of themes. you can pass dark
, light
values or custom theme object with size
,color
,background
and overlay
props. ex. { size: 30, color: 'white', background: 'gray', overlay: 'rgba(0,0,0,.5')})
Type | Required |
---|---|
'dark' | 'light' | object | No |
options
QuillToolbar controls can be specified by a simple array of format names like ['bold', 'italic', 'underline', 'strike']
or by just passing basic
or full
.
Type | Required |
---|---|
'full' | 'basic' | array | Yes |
custom
You can easily extend or overwrite functionality of QuillToolbar
with custom
prop.
Type | Required |
---|---|
{ handler, actions, icons } | No |
custom.handler
Type | Required |
---|---|
(name: string, value: any) => void | No |
custom.icons
You may pass a dictionary of icons to overwrite or extend the default icons of toolbar. for example: { video: require('../assets/icons/video.png') }
Type | Required |
---|---|
Record<string, any> | No |
custom.actions
you may specify list of format names to be overwriten. for ex. ['video', 'image']
.
Type | Required |
---|---|
string[] | No |
container
The container component of QuillToolbar
. you may pass false
to remove container or pass a custom component. Defaults to avoiding-view
which will wrap the webview
inside a KeyboardAvoidingView
component.
Type | Required |
---|---|
false | 'avoiding-view' | React.ComponentType | No |
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
react-native quill richtext editor
The npm package react-native-cn-quill receives a total of 0 weekly downloads. As such, react-native-cn-quill popularity was classified as not popular.
We found that react-native-cn-quill demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.