-
Notifications
You must be signed in to change notification settings - Fork 137
/
ng-ckeditor.js
155 lines (137 loc) · 6 KB
/
ng-ckeditor.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
'use strict';
(function (angular, factory) {
if (typeof define === 'function' && define.amd) {
define(['angular', 'ckeditor'], function (angular) {
return factory(angular);
});
} else {
return factory(angular);
}
}(angular || null, function (angular) {
var app = angular.module('ngCkeditor', []);
var $defer, loaded = false;
app.run(['$q', '$timeout', function ($q, $timeout) {
$defer = $q.defer();
if (angular.isUndefined(CKEDITOR)) {
throw new Error('CKEDITOR not found');
}
CKEDITOR.disableAutoInline = true;
function checkLoaded() {
if (CKEDITOR.status === 'loaded') {
loaded = true;
$defer.resolve();
} else {
checkLoaded();
}
}
CKEDITOR.on('loaded', checkLoaded);
$timeout(checkLoaded, 100);
}]);
app.directive('ckeditor', ['$timeout', '$q', function ($timeout, $q) {
return {
restrict: 'AC',
require: ['ngModel', '^?form'],
scope: false,
link: function (scope, element, attrs, ctrls) {
var ngModel = ctrls[0];
var form = ctrls[1] || null;
var EMPTY_HTML = '<p></p>',
isTextarea = element[0].tagName.toLowerCase() === 'textarea',
data = [],
isReady = false;
if (!isTextarea) {
element.attr('contenteditable', true);
}
var onLoad = function () {
var options = {
toolbar: 'full',
toolbar_full: [ //jshint ignore:line
{
name: 'basicstyles',
items: ['Bold', 'Italic', 'Strike', 'Underline']
},
{name: 'paragraph', items: ['BulletedList', 'NumberedList', 'Blockquote']},
{name: 'editing', items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']},
{name: 'links', items: ['Link', 'Unlink', 'Anchor']},
{name: 'tools', items: ['SpellChecker', 'Maximize']},
'/',
{
name: 'styles',
items: ['Format', 'FontSize', 'TextColor', 'PasteText', 'PasteFromWord', 'RemoveFormat']
},
{name: 'insert', items: ['Image', 'Table', 'SpecialChar']},
{name: 'forms', items: ['Outdent', 'Indent']},
{name: 'clipboard', items: ['Undo', 'Redo']},
{name: 'document', items: ['PageBreak', 'Source']}
],
disableNativeSpellChecker: false,
uiColor: '#FAFAFA',
height: '400px',
width: '100%'
};
options = angular.extend(options, scope[attrs.ckeditor]);
var instance = (isTextarea) ? CKEDITOR.replace(element[0], options) : CKEDITOR.inline(element[0], options),
configLoaderDef = $q.defer();
element.bind('$destroy', function () {
if (instance && CKEDITOR.instances[instance.name]) {
CKEDITOR.instances[instance.name].destroy();
}
});
var setModelData = function (setPristine) {
var data = instance.getData();
if (data === '') {
data = null;
}
$timeout(function () { // for key up event
if (setPristine !== true || data !== ngModel.$viewValue) {
ngModel.$setViewValue(data);
}
if (setPristine === true && form) {
form.$setPristine();
}
}, 0);
}, onUpdateModelData = function (setPristine) {
if (!data.length) {
return;
}
var item = data.pop() || EMPTY_HTML;
isReady = false;
instance.setData(item, function () {
setModelData(setPristine);
isReady = true;
});
};
instance.on('pasteState', setModelData);
instance.on('change', setModelData);
instance.on('blur', setModelData);
//instance.on('key', setModelData); // for source view
instance.on('instanceReady', function () {
scope.$broadcast('ckeditor.ready');
scope.$apply(function () {
onUpdateModelData(true);
});
instance.document.on('keyup', setModelData);
});
instance.on('customConfigLoaded', function () {
configLoaderDef.resolve();
});
ngModel.$render = function () {
data.push(ngModel.$viewValue);
if (isReady) {
onUpdateModelData();
}
};
};
if (CKEDITOR.status === 'loaded') {
loaded = true;
}
if (loaded) {
onLoad();
} else {
$defer.promise.then(onLoad);
}
}
};
}]);
return app;
}));