define(['jquery', 'underscore', 'requtils', 'renderer/baseeditor', 'renderer/shapebuilder', 'ckeditor-jquery'], function ($, _, requtils, BaseEditor, ShapeBuilder) {
'use strict';
var Utils = requtils.getUtils();
/* NodeEditor Begin */
//var NodeEditor = Renderer.NodeEditor = Utils.inherit(Renderer._BaseEditor);
var NodeEditor = Utils.inherit(BaseEditor);
_(NodeEditor.prototype).extend({
_init: function() {
BaseEditor.prototype._init.apply(this);
this.template = this.options.templates['templates/nodeeditor.html'];
//this.templates['default']= this.options.templates['templates/nodeeditor.html'];
//fusionner avec this.options.node_editor_templates
this.readOnlyTemplate = this.options.templates['templates/nodeeditor_readonly.html'];
},
draw: function() {
var _model = this.source_representation.model,
_created_by = _model.get("created_by") || Utils._USER_PLACEHOLDER(this.renkan),
_template = (this.renderer.isEditable() ? this.template : this.readOnlyTemplate ),
_image_placeholder = this.options.static_url + "img/image-placeholder.png",
_size = (_model.get("size") || 0);
this.editor_$
.html(_template({
node: {
has_creator: !!_model.get("created_by"),
title: _model.get("title"),
uri: _model.get("uri"),
short_uri: Utils.shortenText((_model.get("uri") || "").replace(/^(https?:\/\/)?(www\.)?/,'').replace(/\/$/,''),40),
description: _model.get("description"),
image: _model.get("image") || "",
image_placeholder: _image_placeholder,
color: (_model.has("style") && _model.get("style").color) || _created_by.get("color"),
thickness: (_model.has("style") && _model.get("style").thickness) || 1,
dash: _model.has("style") && _model.get("style").dash ? "checked" : "",
clip_path: _model.get("clip_path") || false,
created_by_color: _created_by.get("color"),
created_by_title: _created_by.get("title"),
size: (_size > 0 ? "+" : "") + _size,
shape: _model.get("shape") || "circle"
},
renkan: this.renkan,
options: this.options,
shortenText: Utils.shortenText,
shapes : _(ShapeBuilder.builders).omit('svg').keys().value(),
}));
this.redraw();
var _this = this,
editorInstance = _this.options.show_node_editor_description_richtext ?
$(".Rk-Edit-Description").ckeditor(_this.options.richtext_editor_config) :
false,
closeEditor = function() {
_this.editor_$.off("keyup");
_this.editor_$.find("input, textarea, select").off("change keyup paste");
_this.editor_$.find(".Rk-Edit-Image-File").off('change');
_this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").off('hover');
_this.editor_$.find(".Rk-Edit-Size-Btn").off('click');
_this.editor_$.find(".Rk-Edit-Image-Del").off('click');
_this.editor_$.find(".Rk-Edit-ColorPicker").find("li").off('hover click');
_this.editor_$.find(".Rk-CloseX").off('click');
_this.editor_$.find(".Rk-Edit-Goto").off('click');
if(_this.options.show_node_editor_description_richtext) {
if(typeof _this.editorListeners !== 'undefined') {
_this.editorListeners.forEach( function(listener) {
listener.removeListener();
});
}
if(typeof editorInstance.editor !== 'undefined') {
var _editor = editorInstance.editor;
delete editorInstance.editor;
_editor.destroy();
}
}
_this.renderer.removeRepresentation(_this);
paper.view.draw();
};
this.editor_$.find(".Rk-CloseX").click(closeEditor);
this.editor_$.find(".Rk-Edit-Goto").click(function() {
if (!_model.get("uri")) {
return false;
}
});
if (this.renderer.isEditable()) {
var onFieldChange = _.throttle(function() {
_.defer(function() {
if (_this.renderer.isEditable()) {
var _data = {
title: _this.editor_$.find(".Rk-Edit-Title").val()
};
if (_this.options.show_node_editor_uri) {
_data.uri = _this.editor_$.find(".Rk-Edit-URI").val();
_this.editor_$.find(".Rk-Edit-Goto").attr("href",_data.uri || "#");
}
if (_this.options.show_node_editor_image) {
_data.image = _this.editor_$.find(".Rk-Edit-Image").val();
_this.editor_$.find(".Rk-Edit-ImgPreview").attr("src", _data.image || _image_placeholder);
}
if (_this.options.show_node_editor_description) {
if(_this.options.show_node_editor_description_richtext &&
typeof editorInstance.editor !== 'undefined' &&
editorInstance.editor.checkDirty())
{
_data.description = editorInstance.editor.getData();
editorInstance.editor.resetDirty();
}
else {
_data.description = _this.editor_$.find(".Rk-Edit-Description").val();
}
}
if (_this.options.show_node_editor_style) {
var dash = _this.editor_$.find(".Rk-Edit-Dash").is(':checked');
_data.style = _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {dash: dash});
}
if (_this.options.change_shapes) {
if(_model.get("shape")!==_this.editor_$.find(".Rk-Edit-Shape").val()){
_data.shape = _this.editor_$.find(".Rk-Edit-Shape").val();
}
}
_model.set(_data);
_this.redraw();
} else {
closeEditor();
}
});
}, 1000);
this.editor_$.on("keyup", function(_e) {
if (_e.keyCode === 27) {
closeEditor();
}
});
this.editor_$.find("input, textarea, select").on("change keyup paste", onFieldChange);
if( _this.options.show_node_editor_description &&
_this.options.show_node_editor_description_richtext &&
typeof editorInstance.editor !== 'undefined')
{
_this.editorListeners = [];
_this.editorListeners.push(editorInstance.editor.on("change", onFieldChange));
_this.editorListeners.push(editorInstance.editor.on("blur", onFieldChange));
}
if(_this.options.allow_image_upload) {
this.editor_$.find(".Rk-Edit-Image-File").change(function() {
if (this.files.length) {
var f = this.files[0],
fr = new FileReader();
if (f.type.substr(0,5) !== "image") {
alert(_this.renkan.translate("This file is not an image"));
return;
}
if (f.size > (_this.options.uploaded_image_max_kb * 1024)) {
alert(_this.renkan.translate("Image size must be under ") + _this.options.uploaded_image_max_kb + _this.renkan.translate("KB"));
return;
}
fr.onload = function(e) {
_this.editor_$.find(".Rk-Edit-Image").val(e.target.result);
onFieldChange();
};
fr.readAsDataURL(f);
}
});
}
this.editor_$.find(".Rk-Edit-Title")[0].focus();
var _picker = _this.editor_$.find(".Rk-Edit-ColorPicker");
this.editor_$.find(".Rk-Edit-ColorPicker-Wrapper").hover(
function(_e) {
_e.preventDefault();
_picker.show();
},
function(_e) {
_e.preventDefault();
_picker.hide();
}
);
_picker.find("li").hover(
function(_e) {
_e.preventDefault();
_this.editor_$.find(".Rk-Edit-Color").css("background", $(this).attr("data-color"));
},
function(_e) {
_e.preventDefault();
_this.editor_$.find(".Rk-Edit-Color").css("background", (_model.has("style") && _model.get("style").color) || (_model.get("created_by") || Utils._USER_PLACEHOLDER(_this.renkan)).get("color"));
}
).click(function(_e) {
_e.preventDefault();
if (_this.renderer.isEditable()) {
_model.set("style", _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {color: $(this).attr("data-color")}));
_picker.hide();
paper.view.draw();
} else {
closeEditor();
}
});
var shiftSize = function(n) {
if (_this.renderer.isEditable()) {
var _newsize = n+(_model.get("size") || 0);
_this.editor_$.find("#Rk-Edit-Size-Value").text((_newsize > 0 ? "+" : "") + _newsize);
_model.set("size", _newsize);
paper.view.draw();
} else {
closeEditor();
}
};
this.editor_$.find("#Rk-Edit-Size-Down").click(function() {
shiftSize(-1);
return false;
});
this.editor_$.find("#Rk-Edit-Size-Up").click(function() {
shiftSize(1);
return false;
});
var shiftThickness = function(n) {
if (_this.renderer.isEditable()) {
var _oldThickness = ((_model.has('style') && _model.get('style').thickness) || 1),
_newThickness = n + _oldThickness;
if(_newThickness < 1 ) {
_newThickness = 1;
}
else if (_newThickness > _this.options.node_stroke_witdh_scale) {
_newThickness = _this.options.node_stroke_witdh_scale;
}
if (_newThickness !== _oldThickness) {
_this.editor_$.find("#Rk-Edit-Thickness-Value").text(_newThickness);
_model.set("style", _.assign( ((_model.has("style") && _.clone(_model.get("style"))) || {}), {thickness: _newThickness}));
paper.view.draw();
}
}
else {
closeEditor();
}
};
this.editor_$.find("#Rk-Edit-Thickness-Down").click(function() {
shiftThickness(-1);
return false;
});
this.editor_$.find("#Rk-Edit-Thickness-Up").click(function() {
shiftThickness(1);
return false;
});
this.editor_$.find(".Rk-Edit-Image-Del").click(function() {
_this.editor_$.find(".Rk-Edit-Image").val('');
onFieldChange();
return false;
});
} else {
if (typeof this.source_representation.highlighted === "object") {
var titlehtml = this.source_representation.highlighted.replace(_(_model.get("title")).escape(),'<span class="Rk-Highlighted">$1</span>');
this.editor_$.find(".Rk-Display-Title" + (_model.get("uri") ? " a" : "")).html(titlehtml);
if (this.options.show_node_tooltip_description) {
this.editor_$.find(".Rk-Display-Description").html(this.source_representation.highlighted.replace(_(_model.get("description")).escape(),'<span class="Rk-Highlighted">$1</span>'));
}
}
}
this.editor_$.find("img").load(function() {
_this.redraw();
});
},
redraw: function() {
if (this.options.popup_editor){
var _coords = this.source_representation.paper_coords;
Utils.drawEditBox(this.options, _coords, this.editor_block, this.source_representation.circle_radius * 0.75, this.editor_$);
}
this.editor_$.show();
paper.view.draw();
}
}).value();
/* NodeEditor End */
return NodeEditor;
});