<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>AngularUI - TinyMCE Demo</title>
<script data-require="angular.js@1.4.7" data-semver="1.4.7" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.js"></script>
<script src="https://tinymce.cachefly.net/4.0/tinymce.min.js"></script>
<script src="tinymce.js"></script>
<script src="demo.js"></script>
</head>
<body ng-app="ui.tinymce" ng-controller="DemoCtrl as demo">
<form method="post">
<textarea ui-tinymce="tinyMceOptions" ng-model="demo.tinymce" ng-change="demo.updateHtml()"></textarea>
</form>
<div ng-bind-html="demo.tinymceHtml"></div>
</body>
</html>
// Code goes here
angular.module('ui.tinymce')
.controller('DemoCtrl',['$scope', '$sce', '$timeout', function($scope,$sce,$timeout) {
var ctrl = this;
$timeout(function() {
$scope.tinyMceOptions = {
statusbar: false,
menubar: false,
resize: false,
toolbar: 'formatselect | bold italic underline | bullist numlist | undo redo '
};
$timeout(function() {
$scope.tinyMceOptions.readonly = true;
//$scope.$broadcast("$tinymce:refresh");
}, 200)
})
this.updateHtml = function() {
ctrl.tinymceHtml = $sce.trustAsHtml(ctrl.tinymce);
};
}]);
/**
* Binds a TinyMCE widget to <textarea> elements.
*/
angular.module('ui.tinymce', [])
.value('uiTinymceConfig', {})
.directive('uiTinymce', ['$rootScope', '$compile', '$timeout', '$window', '$sce', 'uiTinymceConfig', function($rootScope, $compile, $timeout, $window, $sce, uiTinymceConfig) {
uiTinymceConfig = uiTinymceConfig || {};
var generatedIds = 0;
var ID_ATTR = 'ui-tinymce';
if (uiTinymceConfig.baseUrl) {
tinymce.baseURL = uiTinymceConfig.baseUrl;
}
return {
require: ['ngModel', '^?form'],
link: function(scope, element, attrs, ctrls) {
if (!$window.tinymce) {
return;
}
var ngModel = ctrls[0],
form = ctrls[1] || null;
var expression, options = {}, tinyInstance,
updateView = function(editor) {
var content = editor.getContent({format: options.format}).trim();
content = $sce.trustAsHtml(content);
ngModel.$setViewValue(content);
if (!$rootScope.$$phase) {
scope.$apply();
}
};
function toggleDisable(disabled) {
if (disabled) {
ensureInstance();
if (tinyInstance) {
tinyInstance.getBody().setAttribute('contenteditable', false);
}
} else {
ensureInstance();
if (tinyInstance && !tinyInstance.settings.readonly) {
tinyInstance.getBody().setAttribute('contenteditable', true);
}
}
}
// generate an ID
attrs.$set('id', ID_ATTR + '-' + generatedIds++);
expression = {};
angular.extend(expression, scope.$eval(attrs.uiTinymce));
var setupOptions = {
// Update model when calling setContent
// (such as from the source editor popup)
setup: function(ed) {
ed.on('init', function() {
ngModel.$render();
ngModel.$setPristine();
if (form) {
form.$setPristine();
}
});
// Update model on button click
ed.on('ExecCommand', function() {
ed.save();
updateView(ed);
});
// Update model on change
ed.on('change', function() {
ed.save();
updateView(ed);
});
ed.on('blur', function() {
element[0].blur();
});
// Update model when an object has been resized (table, image)
ed.on('ObjectResized', function() {
ed.save();
updateView(ed);
});
ed.on('remove', function() {
element.remove();
});
if (expression.setup) {
expression.setup(ed, {
updateView: updateView
});
}
},
format: expression.format || 'html',
selector: '#' + attrs.id
};
// extend options with initial uiTinymceConfig and
// options from directive attribute value
angular.extend(options, uiTinymceConfig, expression, setupOptions);
// Wrapped in $timeout due to $tinymce:refresh implementation, requires
// element to be present in DOM before instantiating editor when
// re-rendering directive
$timeout(function() {
tinymce.init(options);
toggleDisable(scope.$eval(attrs.ngDisabled));
});
ngModel.$formatters.unshift(function(modelValue) {
return modelValue ? $sce.trustAsHtml(modelValue) : '';
});
ngModel.$parsers.unshift(function(viewValue) {
return viewValue ? $sce.getTrustedHtml(viewValue) : '';
});
ngModel.$render = function() {
ensureInstance();
var viewValue = ngModel.$viewValue ?
$sce.getTrustedHtml(ngModel.$viewValue) : '';
// instance.getDoc() check is a guard against null value
// when destruction & recreation of instances happen
if (tinyInstance &&
tinyInstance.getDoc()
) {
tinyInstance.setContent(viewValue);
// Triggering change event due to TinyMCE not firing event &
// becoming out of sync for change callbacks
tinyInstance.fire('change');
}
};
attrs.$observe('disabled', toggleDisable);
scope.$watch(attrs.uiTinymce, function(newValue, oldValue) {
if (newValue && newValue !== oldValue) {
refreshEditor();
}
}, true);
// This block is because of TinyMCE not playing well with removal and
// recreation of instances, requiring instances to have different
// selectors in order to render new instances properly
scope.$on('$tinymce:refresh', refreshEditor);
function refreshEditor(e, id) {
ensureInstance();
var eid = attrs.id;
if (angular.isUndefined(id) || id === eid) {
var parentElement = element.parent();
var clonedElement = element.clone();
clonedElement.removeAttr('id');
clonedElement.removeAttr('style');
clonedElement.removeAttr('aria-hidden');
removeTinyInstance();
parentElement.append($compile(clonedElement)(scope));
}
}
scope.$on('$destroy', function() {
ensureInstance();
removeTinyInstance()
});
function removeTinyInstance() {
if (tinyInstance) {
tinyInstance.remove();
tinyInstance = null;
}
}
function ensureInstance() {
if (!tinyInstance) {
tinyInstance = tinymce.get(attrs.id);
}
}
}
};
}]);