0.1.2 • Published 4 years ago

react-native-tinymce v0.1.2

Weekly downloads
12
License
MIT*
Repository
-
Last release
4 years ago

react-native-tinymce

HTML WYSIWYG for React Native, in pure JS. (Works in Expo apps!)

Combine the power of TinyMCE with the usability of native UI.

Demo

A demo of the editor is included in this repo. You can run this in the iOS Simulator or on your native device using Expo in minutes.

# Clone down this repo.
git clone https://github.com/rmccue/react-native-tinymce.git
cd react-native-tinymce

# Install dependencies.
npm install

# Build the app using Expo.
npm start

Once the app has started, follow the instructions in the build tool to run in the simulator or on-device.

Usage

import React from 'react';
import { Editor, Provider, Tools } from 'react-native-tinymce';

const MyEditor = props => (
	<Provider>
		<Editor
			ref={ ref => this.editor = ref }
			value="<p>Hello world!</p>"
		/>

		<Tools />
	</Provider>
)

Place the Editor component wherever you want the main WYSIWYG editor view.

The Tools component must be placed in the view-root of the current screen, as it uses absolute positioning to attach to the keyboard.

The Provider must be a common ancestor to both the Editor and the Tools components; typically as a wrapper around your SafeAreaView or similar root.

Props

Pass the initial HTML content as the value prop to Editor.

To retrieve the content from the editor, call the getContent() method on the Editor instance. This returns a promise which will resolve to the HTML string.

Avoid changing the value prop too often, as it causes TinyMCE to re-parse and re-render the value unnecessarily.

Architecture

The main component is the Editor component. This renders a TinyMCE-based WYSIWYG into a webview, and sets up the interactions with it.

The Provider component contains the bulk of the logic for the editor, and it tracks state and actions. These are provided to the Editor and Tools components via context.

When focussed on the WYSIWYG, the Tools component renders the toolbar as a keyboard accessory view.

The toolbar can be overridden via the children render prop, and by default renders the included Toolbar component. Override this prop to add additional buttons as needed.

When the user presses the format button, the toolbar and keyboard are hidden, and the formatter pane is shown. This pane interacts with TinyMCE's underlying formatting utilities.

Icons

By default, react-native-tinymce uses a set of fallback icons.

To use native iOS icons, load in SF Symbols as a font using expo-font, with the name sfsymbols.

Credits

Copyright 2019 Ryan McCue

Licensed under the MIT license.

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago