All Projects → froala → Angular Froala

froala / Angular Froala

Licence: mit
Angular.js bindings for Froala WYSIWYG HTML Rich Text Editor.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Angular Froala

rtexteditorview
A simple WYSIWYG editor for Android
Stars: ✭ 51 (-82.94%)
Mutual labels:  rich-text-editor, wysiwyg-editor
typester
✒️ A WYSIWYG that gives you predictable and clean HTML
Stars: ✭ 29 (-90.3%)
Mutual labels:  rich-text-editor, wysiwyg-editor
wysiwyg-editor-python-sdk
Python SDK to ease the integration of Froala WYSIWYG Editor on server side.
Stars: ✭ 20 (-93.31%)
Mutual labels:  rich-text-editor, wysiwyg-editor
wysiwyg-editor-dotnet-sdk
.NET SDK to ease the integration of Froala WYSIWYG Editor on server side.
Stars: ✭ 23 (-92.31%)
Mutual labels:  rich-text-editor, wysiwyg-editor
wordpress-froala-wysiwyg
Wordpress plugin for Froala WYSIWYG HTML Editor.
Stars: ✭ 38 (-87.29%)
Mutual labels:  rich-text-editor, wysiwyg-editor
Ngx Editor
🖋️ Rich Text Editor for angular using ProseMirror
Stars: ✭ 251 (-16.05%)
Mutual labels:  rich-text-editor, wysiwyg-editor
wysiwyg-editor-php-sdk
PHP SDK to ease the integration of Froala WYSIWYG Editor on server side.
Stars: ✭ 37 (-87.63%)
Mutual labels:  rich-text-editor, wysiwyg-editor
Flutter Quill
Rich text editor for Flutter
Stars: ✭ 177 (-40.8%)
Mutual labels:  rich-text-editor, wysiwyg-editor
cazary
jQuery plugin of WYSIWYG editor that aims for fast, lightweight, stylish, customizable, cross-browser, and multi-language.
Stars: ✭ 12 (-95.99%)
Mutual labels:  rich-text-editor, wysiwyg-editor
bangle.dev
Collection of higher level rich text editing tools. It powers the local only note taking app https://bangle.io
Stars: ✭ 541 (+80.94%)
Mutual labels:  rich-text-editor, wysiwyg-editor
textbus
Textbus 是一个组件化的、数据驱动的富文本框架,支持在线协同编辑,同时也可以作为一个开箱即用的富文本编辑器,拥有非常好的扩展性和可定制性,是构建复杂富文本的不二之选!
Stars: ✭ 642 (+114.72%)
Mutual labels:  rich-text-editor, wysiwyg-editor
Trix
A rich text editor for everyday writing
Stars: ✭ 16,546 (+5433.78%)
Mutual labels:  rich-text-editor, wysiwyg-editor
React Text Selection Popover
Selection based Text UI made easy
Stars: ✭ 245 (-18.06%)
Mutual labels:  rich-text-editor, wysiwyg-editor
Textbus
基于组件 + 数据驱动的现代富文本编辑器
Stars: ✭ 242 (-19.06%)
Mutual labels:  rich-text-editor, wysiwyg-editor
Ng Quill
AngularJS Component for Quill rich text editor
Stars: ✭ 223 (-25.42%)
Mutual labels:  rich-text-editor, wysiwyg-editor
ngx-wall
Helps build content editor for note-taking application
Stars: ✭ 78 (-73.91%)
Mutual labels:  rich-text-editor, wysiwyg-editor
Awesome Wysiwyg
A curated list of awesome WYSIWYG editors.
Stars: ✭ 1,801 (+502.34%)
Mutual labels:  rich-text-editor, wysiwyg-editor
Pell
📝 the simplest and smallest WYSIWYG text editor for web, with no dependencies
Stars: ✭ 11,653 (+3797.32%)
Mutual labels:  rich-text-editor, wysiwyg-editor
wysihtml5-rails
A wysiwyg text editor for use in the Rails asset pipeline
Stars: ✭ 28 (-90.64%)
Mutual labels:  rich-text-editor, wysiwyg-editor
am-editor
A rich text collaborative editor framework that can use React and Vue custom plug-ins. 一个富文本实时协同编辑器框架,可以使用React和Vue自定义插件。
Stars: ✭ 542 (+81.27%)
Mutual labels:  rich-text-editor, wysiwyg-editor

AngularJS 1 Froala WYSIWYG HTML Editor

npm npm npm

For AngularJS 2 bindings see https://github.com/froala/angular2-froala-wysiwyg.

Version 2

This repository contains bindings for the latest version of the Froala Editor (version 2). Checkout the V1 branch for support of Version 1 of the editor.

Installation

  1. Clone this repo or download the zip.

  2. Run bower install or Download the editor from https://www.froala.com/wysiwyg-editor/

  3. Load Froala WYSIWYG editor (and all desired plugins) and the angular-froala files into your project.

  • src/angular-froala.js

Update editor

With npm:

npm update froala-editor

With bower:

bower install froala-wysiwyg-editor

Usage

  1. Add the froala dependency to your Angular project. example:
  • angular.module('myApp', ['froala'])
  1. Create a textarea with the froala directive in your view and give it a model, where myHtml is a variable on $scope.
  • <textarea froala ng-model="myHtml"></textarea>

Options

Setting Defaults: to set defaults for the editor pass a config object to angular.value with the key froalaConfig like this:

angular.module('myApp', ['froala']).
	value('froalaConfig', {
		toolbarInline: false,
		placeholderText: 'Enter Text Here'
	});

From the Controller: to set options from the controller, create an options object on scope and simply pass it to the froala directive. example:

app.js

function myCtrl($scope){
	$scope.myHtml = "<h1>Hello World</h1>"
	$scope.froalaOptions = {
		toolbarButtons : ["bold", "italic", "underline", "|", "align", "formatOL", "formatUL"]
	}
}

view.html

<textarea froala="froalaOptions" ng-model="myHtml"></textarea>

You can pass any existing Froala option. Consult the Froala documentation to view the list of all the available options.

Directive Specific Option

The angular-froala directive exposes the following additional option:

  • immediateAngularModelUpdate: (default: false) This option synchronizes the angular model as soon as a key is released in the editor. Note that it may affect performances.

Methods

To use the methods available, access the editor instance from your froalaOptions object $scope.options.froalaEditor.methodName() and use it as described in the method docs. example:

function myCtrl($scope){
	$scope.myHtml = "";
	$scope.froalaOptions = {
		toolbarButtons : ["bold", "italic", "underline", "|", "align", "formatOL", "formatUL"],
		events: {
			'froalaEditor': function () {
				// Use the methods like this.
				$scope.froalaOptions.froalaEditor.selection.get();
			}
		}
	}
}

Events

Events can be passed in with the options, with a key events and object where the key is the event name and the value is the callback function.

Attribute

app.js

$scope.froalaOptions = {
	placeholder: "Edit Me",
	events : {
		focus: function(e, editor) {/* ... */}
	}
}

Special tags

You can also use the editor on img, button, input and a tags:

<img froala ng-model="imgObj"/>

The model must be an object containing the attributes for your special tags. Example:

$scope.imgObj = {
 	src: 'path/to/image.jpg'
};

The ng-model will change as the attributes change during usage.

  • Ng-model can contain a special attribute named innerHTML which inserts innerHTML in the element: If you are using 'button' tag, you can specify the button text like this:
$scope.buttonObj = {
	innerHTML: 'Button text'
};

As the button text is modified by the editor, the innerHTML attribute from buttonObj model will be modified too.

Specific option for special tags

  • angularIgnoreAttrs: (default: null) This option is an array of attributes that you want to ignore when the editor updates the ng-model:
$scope.inputOptions = {
   angularIgnoreAttrs: ['class', 'ng-model', 'id']
};

Manual Instantiation

Sometimes you want to control when the Froala Editor will be instantiated. The directive includes a froala-init attributes which will provide you with the controls required to initialize and close the editor.

<div froala froala-init="myControllerFunction(initControls)"></div>

Where MyControllerFunction is the name of a function in your controller which will receive an object with different methods to control the editor initialization process. It is primordial that the name of the parameter be initControls otherwise your function will not receive the controls.

The object received by the function will contain the following methods:

  • initialize: Call this method to initialize the Froala Editor
  • destroy: Call this method to destroy the Froala Editor
  • getEditor: Call this method to retrieve the editor that was created. This method will return null if the editor was not yet created

Checkout the demo file to see a working example.

screenshot 2016-02-25 16 47 15

To display content created with the froala editor use the froala-view directive. if myHtml is your model, then the following will render your content.

<div froala-view="myHtml"></div>

If you are using the old ng-bind-html that will continue to work however it still requires froala-sanitize.js to be used and not all of froala is supported with it. The updated directive does not require froala-sanitize.

Congrats all is done!

License

The angular-froala project is under MIT license. However, in order to use Froala WYSIWYG HTML Editor plugin you should purchase a license for it.

Froala Editor has 3 different licenses for commercial use. For details please see License Agreement.

Development environment setup

If you want to contribute to Angular-Froala, you will first need to install the required tools to get the project going.

Prerequisites

Dependencies

Installation

Clone the Git Angular-Froala repository on your local machine and run the commands below in the project root directory.

1. Install Grunt and Bower
$ npm install -g grunt-cli bower
2. Install project dependencies
$ npm install
$ bower install

Running tests

Each contribution to the project should come with its set of unit tests thus ensuring that the new behaviour will not be altered by subsequent commits. So, before each commit to the repository, run the tests by running the following grunt task:

$ grunt test

This will first run a javascript linting tool (JSHint) to make sure that the code is clean and in accordance to the standards. If any errors or warnings are found, they will be displayed on the console. Fix them and rerun the task. When the code is doesn't have any linting warning, the unit tests will be run.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].