/*
# CKEDITOR Edit-In Place jQuery Plugin.
# Created By Dave Earley.
# www.Dave-Earley.com
*/

$.fn.ckeip = function(options, callback) {

    var original_html = $(this);
    var defaults = {
        e_height: '10',
        data: {}, e_url: '',
        e_hover_color: '#666666',
        ckeditor_config: '',
        e_width: '50'
    };
    var settings = $.extend({}, defaults, options);

    return this.each(function() {
        var eip_html = $(this).html();
        var u_id = Math.floor(Math.random() * 99999999);


        $(this).before("<div id='ckeip_" + u_id + "'  style='display:none;'><textarea id ='ckeip_e_" + u_id + "' cols='" + settings.e_width + "' rows='" + settings.e_height + "'  >" + eip_html + "</textarea>  <br /><a href='#' id='save_ckeip_" + u_id + "'>Save</a> <a href='#' id='cancel_ckeip_" + u_id + "'>Canel </a></div>");

        $('#ckeip_e_' + u_id + '').ckeditor(settings.ckeditor_config);
        CKFinder.setupCKEditor(null, 'ckfinder/');

        $(this).bind("dblclick", function() {
            var eip_html = $(this).html();
            $(this).hide();
            $('#ckeip_e_' + u_id + '').val(eip_html);
            $('#ckeip_' + u_id + '').show();

        });

        $(this).hover(function() {
            $(this).css({
                backgroundColor: settings.e_hover_color
            });
        }, function() {
            $(this).css({
                backgroundColor: ''
            });
        });


        $("#cancel_ckeip_" + u_id + "").click(function() {
            $('#ckeip_' + u_id + '').hide();
            $(original_html).fadeIn();
            return false;
        });

        $("#save_ckeip_" + u_id + "").click(function() {
            var ckeip_html = $('#ckeip_e_' + u_id + '').val();
            var aID = $('.hidden').val();
            $.ajax({ type: "POST",
                url: "writeText.asmx/Save",
                data: "{'Text': '" + ckeip_html + "','ID':'" + aID + "'}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: function() {
                    $(original_html).html(ckeip_html);
                    $('#ckeip_' + u_id + '').hide();
                    $(original_html).fadeIn();
                },
                error: function() { alert('Error!'); }

            }); ;
            return false;

        });

    });
};
