163 lines
4.7 KiB
JavaScript
163 lines
4.7 KiB
JavaScript
/*
|
|
* MediaFinder plugin
|
|
*
|
|
* Data attributes:
|
|
* - data-control="mediafinder" - enables the plugin on an element
|
|
* - data-option="value" - an option with a value
|
|
*
|
|
* JavaScript API:
|
|
* $('a#someElement').recordFinder({ option: 'value' })
|
|
*
|
|
* Dependences:
|
|
* - Some other plugin (filename.js)
|
|
*/
|
|
|
|
+function ($) { "use strict";
|
|
var Base = $.oc.foundation.base,
|
|
BaseProto = Base.prototype
|
|
|
|
var MediaFinder = function (element, options) {
|
|
this.$el = $(element)
|
|
this.options = options || {}
|
|
|
|
$.oc.foundation.controlUtils.markDisposable(element)
|
|
Base.call(this)
|
|
this.init()
|
|
}
|
|
|
|
MediaFinder.prototype = Object.create(BaseProto)
|
|
MediaFinder.prototype.constructor = MediaFinder
|
|
|
|
MediaFinder.prototype.init = function() {
|
|
if (this.options.isMulti === null) {
|
|
this.options.isMulti = this.$el.hasClass('is-multi')
|
|
}
|
|
|
|
if (this.options.isPreview === null) {
|
|
this.options.isPreview = this.$el.hasClass('is-preview')
|
|
}
|
|
|
|
if (this.options.isImage === null) {
|
|
this.options.isImage = this.$el.hasClass('is-image')
|
|
}
|
|
|
|
this.$el.one('dispose-control', this.proxy(this.dispose))
|
|
|
|
if (this.options.thumbnailWidth > 0) {
|
|
this.$el.css('maxWidth', this.options.thumbnailWidth + 'px')
|
|
}
|
|
|
|
else if (this.options.thumbnailHeight > 0) {
|
|
this.$el.css('maxHeight', this.options.thumbnailHeight + 'px')
|
|
}
|
|
|
|
// Stop here for preview mode
|
|
if (this.options.isPreview) {
|
|
return
|
|
}
|
|
|
|
this.$el.on('click', '.find-button', this.proxy(this.onClickFindButton))
|
|
this.$el.on('click', '.find-remove-button', this.proxy(this.onClickRemoveButton))
|
|
|
|
this.$findValue = $('[data-find-value]', this.$el)
|
|
}
|
|
|
|
MediaFinder.prototype.dispose = function() {
|
|
this.$el.off('click', '.find-button', this.proxy(this.onClickFindButton))
|
|
this.$el.off('click', '.find-remove-button', this.proxy(this.onClickRemoveButton))
|
|
this.$el.off('dispose-control', this.proxy(this.dispose))
|
|
this.$el.removeData('oc.mediaFinder')
|
|
|
|
this.$findValue = null
|
|
this.$el = null
|
|
|
|
// In some cases options could contain callbacks,
|
|
// so it's better to clean them up too.
|
|
this.options = null
|
|
|
|
BaseProto.dispose.call(this)
|
|
}
|
|
|
|
MediaFinder.prototype.onClickRemoveButton = function() {
|
|
this.$findValue.val('')
|
|
this.evalIsPopulated()
|
|
}
|
|
|
|
MediaFinder.prototype.onClickFindButton = function() {
|
|
var self = this
|
|
|
|
new $.oc.mediaManager.popup({
|
|
alias: 'ocmediamanager',
|
|
cropAndInsertButton: true,
|
|
onInsert: function(items) {
|
|
if (!items.length) {
|
|
alert('Please select image(s) to insert.')
|
|
return
|
|
}
|
|
|
|
if (items.length > 1) {
|
|
alert('Please select a single item.')
|
|
return
|
|
}
|
|
|
|
var path, publicUrl
|
|
for (var i=0, len=items.length; i<len; i++) {
|
|
path = items[i].path
|
|
publicUrl = items[i].publicUrl
|
|
}
|
|
|
|
self.$findValue.val(path)
|
|
|
|
if (self.options.isImage) {
|
|
$('[data-find-image]', self.$el).attr('src', publicUrl)
|
|
}
|
|
|
|
self.evalIsPopulated()
|
|
|
|
this.hide()
|
|
}
|
|
})
|
|
}
|
|
|
|
MediaFinder.prototype.evalIsPopulated = function() {
|
|
var isPopulated = !!this.$findValue.val()
|
|
this.$el.toggleClass('is-populated', isPopulated)
|
|
$('[data-find-file-name]', this.$el).text(this.$findValue.val().substring(1))
|
|
}
|
|
|
|
MediaFinder.DEFAULTS = {
|
|
isMulti: null,
|
|
isPreview: null,
|
|
isImage: null
|
|
}
|
|
|
|
// PLUGIN DEFINITION
|
|
// ============================
|
|
|
|
var old = $.fn.mediaFinder
|
|
|
|
$.fn.mediaFinder = function(option) {
|
|
var args = arguments;
|
|
|
|
return this.each(function() {
|
|
var $this = $(this)
|
|
var data = $this.data('oc.mediaFinder')
|
|
var options = $.extend({}, MediaFinder.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
|
if (!data) $this.data('oc.mediaFinder', (data = new MediaFinder(this, options)))
|
|
if (typeof option == 'string') data[option].apply(data, args)
|
|
})
|
|
}
|
|
|
|
$.fn.mediaFinder.Constructor = MediaFinder
|
|
|
|
$.fn.mediaFinder.noConflict = function() {
|
|
$.fn.mediaFinder = old
|
|
return this
|
|
}
|
|
|
|
$(document).render(function() {
|
|
$('[data-control="mediafinder"]').mediaFinder()
|
|
})
|
|
|
|
}(window.jQuery);
|