As requested, some suggestions.
Opened this issue · 2 comments
Deleted user commented
You'll note that in the Dialog, I've added a select box to choose which Bootstrap Image options to the class option. My thoughts were to when choosing an option that it would simply add the value with a leading space to the input field.
(function (factory) {
/* global define */
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], factory);
} else if (typeof module === 'object' && module.exports) {
// Node/CommonJS
module.exports = factory(require('jquery'));
} else {
// Browser globals
factory(window.jQuery);
}
}(function ($) {
$.extend($.summernote.lang['en-US'], {
imageTitle: {
edit: 'Edit title',
title: 'Title',
alt: 'Alt',
class: 'Class',
style: 'Style'
},
});
$.extend($.summernote.plugins, {
'imageTitle': function (context) {
var self = this;
var ui = $.summernote.ui;
var $note = context.layoutInfo.note;
var $editor = context.layoutInfo.editor;
var $editable = context.layoutInfo.editable;
var options = context.options;
var lang = options.langInfo;
context.memo('button.imageTitle', function () {
var button = ui.button({
contents: ui.icon(options.icons.pencil),
tooltip: lang.imageTitle.edit,
click: function (e) {
context.invoke('imageTitle.show');
}
});
return button.render();
});
this.initialize = function () {
var $container = options.dialogsInBody ? $(document.body) : $editor;
var body = '<div class="form-group">' +
'<label class="control-label col-xs-2">' + lang.imageTitle.title + '</label>' +
'<div class="input-group col-xs-10">'+
'<input class="note-image-title-text form-control" type="text" />' +
'</div>'+
'</div>'+
'<div class="form-group">'+
'<label class="control-label col-xs-2">' + lang.imageTitle.alt + '</label>'+
'<div class="input-group col-xs-10">'+
'<input class="note-image-alt-text form-control" type="text" />' +
'</div>'+
'</div>'+
'<div class="form-group">'+
'<label class="control-label col-xs-2">' + lang.imageTitle.class + '</label>' +
'<div class="input-group col-xs-10">'+
'<input class="note-image-class-text form-control" type="text" />' +
'<div class="input-group-btn">'+
'<select class="note-image-class-select btn btn-default" onchange="$(\'.note-image-class-text\').val($(\'.note-image-class-text\').val()+$(this).val());">'+
'<option value="">Select Class</option>'+
'<option value=" img-responsive">Responsive</option>'+
'<option value=" img-rounded">Rounded</option>'+
'<option value=" img-circle">Circle</option>'+
'<option value=" img-thumbnail">Thumbnail</option>'+
'</select>'+
'</div>'
'</div>'+
'</div>'+
'<div class="form-group">'+
'<label class="control-label col-xs-2">' + lang.imageTitle.style + '</label>'+
'<div class="input-group col-xs-10">'+
'<input class="note-image-style-text form-control" type="text" />'+
'</div>'+
'</div>';
var footer = '<button href="#" class="btn btn-primary note-image-title-btn">OK</button>';
this.$dialog = ui.dialog({
title: lang.imageTitle.edit,
body: body,
footer: footer
}).render().appendTo($container);
};
this.destroy = function () {
ui.hideDialog(this.$dialog);
this.$dialog.remove();
};
this.bindEnterKey = function ($input, $btn) {
$input.on('keypress', function (event) {
if (event.keyCode === 13) {
$btn.trigger('click');
}
});
};
this.show = function () {
var $img = $($editable.data('target'));
var imgInfo = {
imgDom: $img,
title: $img.attr('title'),
alt: $img.attr('alt'),
class: $img.attr('class'),
style: $img.attr('style')
};
this.showLinkDialog(imgInfo).then(function (imgInfo) {
ui.hideDialog(self.$dialog);
var $img = imgInfo.imgDom;
$img.attr('alt', imgInfo.alt);
$img.attr('title', imgInfo.title);
$img.attr('class', imgInfo.class);
$img.attr('style', imgInfo.style);
$note.val(context.invoke('code'));
$note.change();
});
};
this.showLinkDialog = function (imgInfo) {
return $.Deferred(function (deferred) {
var $imageTitle = self.$dialog.find('.note-image-title-text');
var $imageAlt = self.$dialog.find('.note-image-alt-text');
var $imageClass = self.$dialog.find('.note-image-class-text');
var $imageStyle = self.$dialog.find('.note-image-style-text');
var $editBtn = self.$dialog.find('.note-image-title-btn');
ui.onDialogShown(self.$dialog, function () {
context.triggerEvent('dialog.shown');
$editBtn.click(function (event) {
event.preventDefault();
deferred.resolve({
imgDom: imgInfo.imgDom,
alt: $imageAlt.val(),
class: $imageClass.val(),
title: $imageTitle.val(),
style: $imageStyle.val()
});
});
$imageTitle.on('keyup paste', function () {
var url = $imageTitle.val();
ui.toggleBtn($editBtn, url);
}).val(imgInfo.title).trigger('focus');
$imageAlt.on('keyup paste', function () {
var url = $imageAlt.val();
ui.toggleBtn($editBtn, url);
}).val(imgInfo.alt).trigger('focus');
$imageClass.on('keyup paste', function () {
var url = $imageClass.val();
ui.toggleBtn($editBtn, url);
}).val(imgInfo.class).trigger('focus');
$imageStyle.on('keyup paste', function () {
var url = $imageStyle.val();
ui.toggleBtn($editBtn, url);
}).val(imgInfo.style).trigger('focus');
self.bindEnterKey($imageAlt, $imageClass, $imageStyle, $imageTitle, $editBtn);
});
ui.onDialogHidden(self.$dialog, function () {
$imageTitle.off('keyup paste keypress');
$editBtn.off('click');
if (deferred.state() === 'pending') {
deferred.reject();
}
});
ui.showDialog(self.$dialog);
});
};
}
});
}));
Deleted user commented
Just added a Style option.
asiffermann commented
Fixed in d359c25: you now can choose to have a specific field for the alt attribute with the option specificAltField
.
For the class feature, as discussed earlier, I think that using the specific plugin summernote-addclass might be a better choice thant to implement it here.
Thank you!