2012-02-03 00:59:40 +01:00
|
|
|
(function($) {
|
|
|
|
$.widget('blueimpUIX.fileupload', $.blueimpUI.fileupload, {
|
|
|
|
_initTemplates: function() {
|
2012-02-08 00:58:58 +01:00
|
|
|
this.options.templateContainer = document.createElement(
|
|
|
|
this._files.prop('nodeName')
|
|
|
|
);
|
|
|
|
this.options.uploadTemplate = window.tmpl(this.options.uploadTemplateName);
|
|
|
|
this.options.downloadTemplate = window.tmpl(this.options.downloadTemplateName);
|
|
|
|
},
|
2012-02-03 00:59:40 +01:00
|
|
|
_enableFileInputButton: function() {
|
|
|
|
$.blueimpUI.fileupload.prototype._enableFileInputButton.call(this);
|
|
|
|
this.element.find('.ss-uploadfield-addfile').show();
|
|
|
|
},
|
|
|
|
_disableFileInputButton: function() {
|
|
|
|
$.blueimpUI.fileupload.prototype._disableFileInputButton.call(this);
|
|
|
|
this.element.find('.ss-uploadfield-addfile').hide();
|
|
|
|
},
|
|
|
|
_onAdd: function(e, data) {
|
|
|
|
// use _onAdd instead of add since we only want it called once for a file set, not for each file
|
|
|
|
var result = $.blueimpUI.fileupload.prototype._onAdd.call(this, e, data);
|
|
|
|
var firstNewFile = this._files.find('.ss-uploadfield-item').slice(data.files.length*-1).first();
|
2012-05-20 12:22:04 +02:00
|
|
|
var top = '+=' + (firstNewFile.position().top - parseInt(firstNewFile.css('marginTop'), 10) || 0 - parseInt(firstNewFile.css('borderTopWidth'), 10) || 0);
|
2012-02-03 00:59:40 +01:00
|
|
|
firstNewFile.offsetParent().animate({scrollTop: top}, 1000);
|
2012-05-09 08:38:21 +02:00
|
|
|
|
|
|
|
/* Compute total size of files */
|
|
|
|
var fSize = 0;
|
|
|
|
for(var i = 0; i < data.files.length; i++){
|
|
|
|
if(typeof data.files[i].size === 'number'){
|
|
|
|
fSize = fSize + data.files[i].size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$('.fileOverview .uploadStatus .details .total').text(data.files.length);
|
|
|
|
if(typeof fSize === 'number' && fSize > 0){
|
|
|
|
fSize = this._formatFileSize(fSize);
|
|
|
|
$('.fileOverview .uploadStatus .details .fileSize').text(fSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Fixes case where someone uploads a single erroring file
|
|
|
|
if(data.files.length == 1 && data.files[0].error !== null){
|
|
|
|
$('.fileOverview .uploadStatus .state').text(ss.i18n._t('AssetUploadField.UploadField.UPLOADFAIL', 'Sorry your upload failed'));
|
2012-11-02 00:46:16 +01:00
|
|
|
$('.fileOverview .uploadStatus').addClass("bad").removeClass("good").removeClass("notice");
|
2012-05-09 08:38:21 +02:00
|
|
|
}else{
|
|
|
|
$('.fileOverview .uploadStatus .state').text(ss.i18n._t('AssetUploadField.UPLOADINPROGRESS', 'Please wait… upload in progress'));//.show();
|
2012-11-02 00:46:16 +01:00
|
|
|
$('.ss-uploadfield-item-edit-all').hide();
|
|
|
|
$('.fileOverview .uploadStatus').addClass("notice").removeClass("good").removeClass("bad");
|
2012-05-09 08:38:21 +02:00
|
|
|
}
|
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
return result;
|
2012-05-09 08:38:21 +02:00
|
|
|
},
|
|
|
|
_onAlways: function (jqXHRorResult, textStatus, jqXHRorError, options) {
|
2012-05-20 12:22:04 +02:00
|
|
|
$.blueimpUI.fileupload.prototype._onAlways.call(this, jqXHRorResult, textStatus, jqXHRorError, options);
|
|
|
|
if (this._active === 0) {
|
2012-11-02 00:46:16 +01:00
|
|
|
$('.fileOverview .uploadStatus .state').text(ss.i18n._t('AssetUploadField.FILEUPLOADCOMPLETED', 'File upload completed!'));//.hide();
|
|
|
|
$('.ss-uploadfield-item-edit-all').show();
|
|
|
|
$('.fileOverview .uploadStatus').addClass("good").removeClass("notice").removeClass("bad");
|
2012-05-20 12:22:04 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-03 00:59:40 +01:00
|
|
|
});
|
2012-05-09 08:38:21 +02:00
|
|
|
|
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
$.entwine('ss', function($) {
|
2012-05-09 08:38:21 +02:00
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
$('div.ss-upload').entwine({
|
2012-02-08 00:58:58 +01:00
|
|
|
|
|
|
|
Config: null,
|
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
onmatch: function() {
|
2012-05-09 08:38:21 +02:00
|
|
|
|
2012-03-02 00:43:14 +01:00
|
|
|
if(this.is('.readonly,.disabled')) return;
|
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
var fileInput = this.find('input');
|
|
|
|
var dropZone = this.find('.ss-uploadfield-dropzone');
|
2012-05-09 08:38:21 +02:00
|
|
|
var config = $.parseJSON(fileInput.data('config').replace(/'/g,'"'));
|
2012-04-17 23:55:02 +02:00
|
|
|
|
|
|
|
/* Attach classes to dropzone when element can be dropped*/
|
|
|
|
$(document).unbind('dragover');
|
|
|
|
$(document).bind('dragover', function (e) {
|
2012-04-18 00:51:53 +02:00
|
|
|
timeout = window.dropZoneTimeout;
|
2012-04-17 23:55:02 +02:00
|
|
|
var $target = $(e.target);
|
2012-04-18 00:51:53 +02:00
|
|
|
if (!timeout) {
|
|
|
|
dropZone.addClass('active');
|
|
|
|
} else {
|
|
|
|
clearTimeout(timeout);
|
|
|
|
}
|
|
|
|
if ($target.closest('.ss-uploadfield-dropzone').length > 0) {
|
|
|
|
dropZone.addClass('hover');
|
|
|
|
} else {
|
|
|
|
dropZone.removeClass('hover');
|
|
|
|
}
|
|
|
|
window.dropZoneTimeout = setTimeout(function () {
|
|
|
|
window.dropZoneTimeout = null;
|
|
|
|
dropZone.removeClass('active hover');
|
|
|
|
}, 100);
|
2012-04-17 23:55:02 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
//disable default behaviour if file dropped in the wrong area
|
|
|
|
$(document).bind('drop dragover', function (e){
|
2012-04-18 00:51:53 +02:00
|
|
|
e.preventDefault();
|
2012-04-17 23:55:02 +02:00
|
|
|
});
|
2012-04-18 00:51:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-08 00:58:58 +01:00
|
|
|
this.setConfig(config);
|
2012-02-03 00:59:40 +01:00
|
|
|
this.fileupload($.extend(true,
|
2012-04-18 00:51:53 +02:00
|
|
|
{
|
2012-02-03 00:59:40 +01:00
|
|
|
formData: function(form) {
|
2012-07-20 03:11:38 +02:00
|
|
|
var idVal = $(form).find(':input[name=ID]').val();
|
|
|
|
if(!idVal) {
|
|
|
|
idVal = 0;
|
|
|
|
}
|
2012-03-02 15:21:12 +01:00
|
|
|
return [
|
|
|
|
{name: 'SecurityID', value: $(form).find(':input[name=SecurityID]').val()},
|
2012-07-20 03:11:38 +02:00
|
|
|
{name: 'ID', value: idVal}
|
2012-03-02 15:21:12 +01:00
|
|
|
];
|
2012-02-03 00:59:40 +01:00
|
|
|
},
|
|
|
|
errorMessages: {
|
|
|
|
// errorMessages for all error codes suggested from the plugin author, some will be overwritten by the config comming from php
|
|
|
|
1: ss.i18n._t('UploadField.PHP_MAXFILESIZE'),
|
|
|
|
2: ss.i18n._t('UploadField.HTML_MAXFILESIZE'),
|
|
|
|
3: ss.i18n._t('UploadField.ONLYPARTIALUPLOADED'),
|
|
|
|
4: ss.i18n._t('UploadField.NOFILEUPLOADED'),
|
|
|
|
5: ss.i18n._t('UploadField.NOTMPFOLDER'),
|
|
|
|
6: ss.i18n._t('UploadField.WRITEFAILED'),
|
|
|
|
7: ss.i18n._t('UploadField.STOPEDBYEXTENSION'),
|
2012-05-09 08:38:21 +02:00
|
|
|
maxFileSize: ss.i18n._t('UploadField.TOOLARGESHORT'),
|
2012-02-03 00:59:40 +01:00
|
|
|
minFileSize: ss.i18n._t('UploadField.TOOSMALL'),
|
2012-05-09 08:38:21 +02:00
|
|
|
acceptFileTypes: ss.i18n._t('UploadField.INVALIDEXTENSIONSHORT'),
|
|
|
|
maxNumberOfFiles: ss.i18n._t('UploadField.MAXNUMBEROFFILESSHORT'),
|
2012-02-03 00:59:40 +01:00
|
|
|
uploadedBytes: ss.i18n._t('UploadField.UPLOADEDBYTES'),
|
|
|
|
emptyResult: ss.i18n._t('UploadField.EMPTYRESULT')
|
|
|
|
},
|
|
|
|
send: function(e, data) {
|
2012-02-08 00:58:58 +01:00
|
|
|
if (data.context && data.dataType && data.dataType.substr(0, 6) === 'iframe') {
|
|
|
|
// Iframe Transport does not support progress events.
|
|
|
|
// In lack of an indeterminate progress bar, we set
|
|
|
|
// the progress to 100%, showing the full animated bar:
|
|
|
|
data.total = 1;
|
|
|
|
data.loaded = 1;
|
|
|
|
$(this).data('fileupload').options.progress(e, data);
|
|
|
|
}
|
2012-02-03 00:59:40 +01:00
|
|
|
},
|
|
|
|
progress: function(e, data) {
|
2012-02-08 00:58:58 +01:00
|
|
|
if (data.context) {
|
|
|
|
var value = parseInt(data.loaded / data.total * 100, 10) + '%';
|
|
|
|
data.context.find('.ss-uploadfield-item-status').html((data.total == 1)?ss.i18n._t('UploadField.LOADING'):value);
|
2012-05-09 08:38:21 +02:00
|
|
|
data.context.find('.ss-uploadfield-item-progressbarvalue').css('width', value);
|
2012-02-08 00:58:58 +01:00
|
|
|
}
|
|
|
|
}
|
2012-02-03 00:59:40 +01:00
|
|
|
},
|
|
|
|
config,
|
|
|
|
{
|
|
|
|
fileInput: fileInput,
|
|
|
|
dropZone: dropZone,
|
|
|
|
previewAsCanvas: false,
|
|
|
|
acceptFileTypes: new RegExp(config.acceptFileTypes, 'i')
|
|
|
|
}
|
|
|
|
));
|
2012-10-31 11:34:12 +01:00
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
if (this.data('fileupload')._isXHRUpload({multipart: true})) {
|
|
|
|
$('.ss-uploadfield-item-uploador').show();
|
2012-10-31 11:34:12 +01:00
|
|
|
dropZone.hide().show();
|
2012-02-03 00:59:40 +01:00
|
|
|
}
|
2012-05-09 08:38:21 +02:00
|
|
|
|
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
this._super();
|
2012-02-08 00:58:58 +01:00
|
|
|
},
|
2012-05-14 01:43:36 +02:00
|
|
|
onunmatch: function() {
|
|
|
|
this._super();
|
|
|
|
},
|
2012-02-08 00:58:58 +01:00
|
|
|
openSelectDialog: function() {
|
|
|
|
// Create dialog and load iframe
|
|
|
|
var self = this, config = this.getConfig(), dialogId = 'ss-uploadfield-dialog-' + this.attr('id'), dialog = jQuery('#' + dialogId);
|
|
|
|
if(!dialog.length) dialog = jQuery('<div class="ss-uploadfield-dialog" id="' + dialogId + '" />');
|
|
|
|
|
|
|
|
// Show dialog
|
2012-04-20 01:05:54 +02:00
|
|
|
dialog.ssdialog({iframeUrl: config['urlSelectDialog'], height: 550});
|
2012-02-08 00:58:58 +01:00
|
|
|
|
|
|
|
// TODO Allow single-select
|
|
|
|
dialog.find('iframe').bind('load', function(e) {
|
2012-02-23 15:17:39 +01:00
|
|
|
var contents = $(this).contents(), gridField = contents.find('.ss-gridfield');
|
2012-02-08 00:58:58 +01:00
|
|
|
// TODO Fix jQuery custom event bubbling across iframes on same domain
|
|
|
|
// gridField.find('.ss-gridfield-items')).bind('selectablestop', function() {
|
|
|
|
// });
|
|
|
|
|
|
|
|
// Remove top margin (easier than including new selectors)
|
|
|
|
contents.find('table.ss-gridfield').css('margin-top', 0);
|
|
|
|
|
|
|
|
// Can't use live() in iframes...
|
|
|
|
contents.find('input[name=action_doAttach]').unbind('click.openSelectDialog').bind('click.openSelectDialog', function() {
|
|
|
|
// TODO Fix entwine method calls across iframe/document boundaries
|
|
|
|
var ids = $.map(gridField.find('.ss-gridfield-item.ui-selected'), function(el) {return $(el).data('id');});
|
|
|
|
if(ids && ids.length) self.attachFiles(ids);
|
|
|
|
|
|
|
|
dialog.ssdialog('close');
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
dialog.ssdialog('open');
|
|
|
|
},
|
|
|
|
attachFiles: function(ids) {
|
|
|
|
var self = this, config = this.getConfig();
|
|
|
|
$.post(
|
|
|
|
config['urlAttach'],
|
|
|
|
{'ids': ids},
|
|
|
|
function(data, status, xhr) {
|
|
|
|
var fn = self.fileupload('option', 'downloadTemplate');
|
|
|
|
self.find('.ss-uploadfield-files').append(fn({
|
|
|
|
files: data,
|
|
|
|
formatFileSize: function (bytes) {
|
|
|
|
if (typeof bytes !== 'number') return '';
|
|
|
|
if (bytes >= 1000000000) return (bytes / 1000000000).toFixed(2) + ' GB';
|
|
|
|
if (bytes >= 1000000) return (bytes / 1000000).toFixed(2) + ' MB';
|
|
|
|
return (bytes / 1000).toFixed(2) + ' KB';
|
|
|
|
},
|
|
|
|
options: self.fileupload('option')
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('div.ss-upload *').entwine({
|
|
|
|
getUploadField: function() {
|
2012-04-17 23:55:02 +02:00
|
|
|
|
2012-02-08 00:58:58 +01:00
|
|
|
return this.parents('div.ss-upload:first');
|
2012-02-03 00:59:40 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
$('div.ss-upload .ss-uploadfield-files .ss-uploadfield-item').entwine({
|
|
|
|
onmatch: function() {
|
2012-05-11 06:07:07 +02:00
|
|
|
this._super();
|
2012-02-03 00:59:40 +01:00
|
|
|
this.closest('.ss-upload').find('.ss-uploadfield-addfile').addClass('borderTop');
|
|
|
|
},
|
|
|
|
onunmatch: function() {
|
|
|
|
$('.ss-uploadfield-files:not(:has(.ss-uploadfield-item))').closest('.ss-upload').find('.ss-uploadfield-addfile').removeClass('borderTop');
|
2012-05-11 06:07:07 +02:00
|
|
|
this._super();
|
2012-02-03 00:59:40 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
$('div.ss-upload .ss-uploadfield-startall').entwine({
|
|
|
|
onclick: function(e) {
|
|
|
|
this.closest('.ss-upload').find('.ss-uploadfield-item-start button').click();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('div.ss-upload .ss-uploadfield-item-cancelfailed').entwine({
|
|
|
|
onclick: function(e) {
|
|
|
|
this.closest('.ss-uploadfield-item').remove();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2012-05-09 08:38:21 +02:00
|
|
|
|
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
$('div.ss-upload .ss-uploadfield-item-remove:not(.ui-state-disabled), .ss-uploadfield-item-delete:not(.ui-state-disabled)').entwine({
|
|
|
|
onclick: function(e) {
|
|
|
|
var fileupload = this.closest('div.ss-upload').data('fileupload'),
|
|
|
|
item = this.closest('.ss-uploadfield-item'), msg = '';
|
|
|
|
|
|
|
|
if(this.is('.ss-uploadfield-item-delete')) msg = ss.i18n._t('UploadField.ConfirmDelete');
|
|
|
|
if(!msg || confirm(msg)) {
|
|
|
|
fileupload._trigger('destroy', e, {
|
|
|
|
context: item,
|
|
|
|
url: this.data('href'),
|
|
|
|
type: 'get',
|
|
|
|
dataType: fileupload.options.dataType
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2012-05-09 08:38:21 +02:00
|
|
|
|
2012-11-02 00:46:16 +01:00
|
|
|
$('div.ss-upload .ss-uploadfield-item-edit-all').entwine({
|
2012-05-09 08:38:21 +02:00
|
|
|
onclick: function(e) {
|
|
|
|
|
|
|
|
if($(this).hasClass('opened')){
|
|
|
|
$('.ss-uploadfield-item .ss-uploadfield-item-edit .toggle-details-icon.opened').each(function(i){
|
|
|
|
$(this).closest('.ss-uploadfield-item-edit').click();
|
|
|
|
});
|
|
|
|
$(this).removeClass('opened').find('.toggle-details-icon').removeClass('opened');
|
|
|
|
}else{
|
|
|
|
$('.ss-uploadfield-item .ss-uploadfield-item-edit .toggle-details-icon').each(function(i){
|
|
|
|
if(!$(this).hasClass('opened')){
|
|
|
|
$(this).closest('.ss-uploadfield-item-edit').click();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$(this).addClass('opened').find('.toggle-details-icon').addClass('opened');
|
|
|
|
}
|
|
|
|
|
|
|
|
e.preventDefault(); // Avoid a form submit
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('div.ss-upload .ss-uploadfield-item-edit, div.ss-upload .ss-uploadfield-item-name').entwine({
|
2012-02-03 00:59:40 +01:00
|
|
|
onclick: function(e) {
|
|
|
|
var editform = this.closest('.ss-uploadfield-item').find('.ss-uploadfield-item-editform');
|
2012-05-09 08:38:21 +02:00
|
|
|
var disabled;
|
|
|
|
var iframe = editform.find('iframe');
|
2012-05-11 12:40:57 +02:00
|
|
|
|
|
|
|
// Mark the row as changed if any of its form fields are edited
|
|
|
|
iframe.contents().ready(function() {
|
|
|
|
// Need to use the iframe's own jQuery, as custom event triggers
|
|
|
|
// (e.g. from TreeDropdownField) can't be captured by the parent jQuery object.
|
|
|
|
var iframe_jQuery = iframe.get(0).contentWindow.jQuery;
|
|
|
|
iframe_jQuery(iframe_jQuery.find(':input')).bind('change', function(e){
|
2012-05-11 04:43:17 +02:00
|
|
|
editform.removeClass('edited');
|
2012-05-09 08:38:21 +02:00
|
|
|
editform.addClass('edited');
|
|
|
|
});
|
2012-05-11 12:40:57 +02:00
|
|
|
});
|
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
if (editform.hasClass('loading')) {
|
|
|
|
// TODO Display loading indication, and register an event to toggle edit form
|
|
|
|
} else {
|
2012-05-09 08:38:21 +02:00
|
|
|
if(this.hasClass('ss-uploadfield-item-edit')){
|
|
|
|
disabled=this.siblings();
|
|
|
|
}else{
|
|
|
|
disabled=this.find('ss-uploadfield-item-edit').siblings();
|
|
|
|
}
|
|
|
|
editform.parent('.ss-uploadfield-item').removeClass('ui-state-warning');
|
|
|
|
disabled.toggleClass('ui-state-disabled');
|
2012-02-03 00:59:40 +01:00
|
|
|
editform.toggleEditForm();
|
|
|
|
}
|
2012-02-23 17:31:28 +01:00
|
|
|
e.preventDefault(); // Avoid a form submit
|
2012-02-03 00:59:40 +01:00
|
|
|
}
|
|
|
|
});
|
2012-05-09 08:38:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-03 00:59:40 +01:00
|
|
|
$('div.ss-upload .ss-uploadfield-item-editform').entwine({
|
2012-03-01 11:58:40 +01:00
|
|
|
fitHeight: function() {
|
2012-05-10 06:47:52 +02:00
|
|
|
var iframe = this.find('iframe'), padding = 32, parentPadding = 2;
|
|
|
|
var h = iframe.contents().find('form').height() + padding;
|
|
|
|
|
|
|
|
if(this.hasClass('includeParent')){
|
|
|
|
padding=0;
|
|
|
|
parentPadding=12;
|
|
|
|
}
|
2012-04-18 05:11:18 +02:00
|
|
|
|
2012-04-30 02:25:35 +02:00
|
|
|
/* Set height of body except in IE8. Setting this in IE8 breaks the
|
|
|
|
dropdown */
|
2012-05-10 06:47:52 +02:00
|
|
|
if(!$.browser.msie && $.browser.version.slice(0,3) != "8.0"){
|
2012-04-30 02:25:35 +02:00
|
|
|
iframe.contents().find('body').css({'height':(h-padding)});
|
2012-05-10 06:47:52 +02:00
|
|
|
}
|
2012-04-30 02:25:35 +02:00
|
|
|
|
2012-03-01 11:58:40 +01:00
|
|
|
// Set iframe to match its contents height
|
2012-04-18 05:11:18 +02:00
|
|
|
iframe.height(h);
|
2012-04-30 02:25:35 +02:00
|
|
|
|
|
|
|
// set container to match the same height
|
2012-11-02 00:46:16 +01:00
|
|
|
iframe.parent().animate({height: h+parentPadding}, 500);
|
2012-04-30 02:25:35 +02:00
|
|
|
iframe.contents().find('body form').css({'width':'98%'});
|
|
|
|
|
2012-03-01 11:58:40 +01:00
|
|
|
},
|
2012-02-03 00:59:40 +01:00
|
|
|
toggleEditForm: function() {
|
2012-05-09 08:38:21 +02:00
|
|
|
var itemInfo = this.prev('.ss-uploadfield-item-info'), status = itemInfo.find('.ss-uploadfield-item-status');
|
|
|
|
var iframe = this.find('iframe').contents(), saved=iframe.find('#Form_EditForm_error');
|
2012-05-11 04:43:17 +02:00
|
|
|
var text="";
|
|
|
|
|
2012-03-01 11:58:40 +01:00
|
|
|
if(this.height() === 0) {
|
2012-05-12 09:53:44 +02:00
|
|
|
text = ss.i18n._t('UploadField.Editing', "Editing ...");
|
2012-05-09 08:38:21 +02:00
|
|
|
this.fitHeight();
|
|
|
|
itemInfo.find('.toggle-details-icon').addClass('opened');
|
2012-05-11 04:43:17 +02:00
|
|
|
status.removeClass('ui-state-success-text').removeClass('ui-state-warning-text');
|
2012-05-09 08:38:21 +02:00
|
|
|
iframe.find('#Form_EditForm_action_doEdit').click(function(){
|
|
|
|
itemInfo.find('label .name').text(iframe.find('#Name input').val());
|
|
|
|
});
|
|
|
|
if($('div.ss-upload .ss-uploadfield-files .ss-uploadfield-item-actions .toggle-details-icon:not(.opened)').index() < 0){
|
2012-11-02 00:46:16 +01:00
|
|
|
$('div.ss-upload .ss-uploadfield-item-edit-all').addClass('opened').find('.toggle-details-icon').addClass('opened');
|
2012-05-09 08:38:21 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 11:58:40 +01:00
|
|
|
} else {
|
2012-11-02 00:46:16 +01:00
|
|
|
this.animate({height: 0}, 500);
|
2012-05-09 08:38:21 +02:00
|
|
|
itemInfo.find('.toggle-details-icon').removeClass('opened');
|
2012-11-02 00:46:16 +01:00
|
|
|
$('div.ss-upload .ss-uploadfield-item-edit-all').removeClass('opened').find('.toggle-details-icon').removeClass('opened');
|
2012-05-09 08:38:21 +02:00
|
|
|
if(!this.hasClass('edited')){
|
2012-05-20 12:22:04 +02:00
|
|
|
text = ss.i18n._t('UploadField.NOCHANGES', 'No Changes');
|
2012-05-11 04:43:17 +02:00
|
|
|
status.addClass('ui-state-success-text');
|
2012-05-09 08:38:21 +02:00
|
|
|
}else{
|
|
|
|
if(saved.hasClass('good')){
|
2012-05-20 12:22:04 +02:00
|
|
|
text = ss.i18n._t('UploadField.CHANGESSAVED', 'Changes Saved');
|
2012-05-09 08:38:21 +02:00
|
|
|
this.removeClass('edited').parent('.ss-uploadfield-item').removeClass('ui-state-warning');
|
2012-05-11 04:43:17 +02:00
|
|
|
status.addClass('ui-state-success-text');
|
2012-05-09 08:38:21 +02:00
|
|
|
}else{
|
2012-05-20 12:22:04 +02:00
|
|
|
text = ss.i18n._t('UploadField.UNSAVEDCHANGES', 'Unsaved Changes');
|
2012-05-09 08:38:21 +02:00
|
|
|
this.parent('.ss-uploadfield-item').addClass('ui-state-warning');
|
2012-05-11 04:43:17 +02:00
|
|
|
status.addClass('ui-state-warning-text');
|
|
|
|
}
|
2012-05-09 08:38:21 +02:00
|
|
|
}
|
|
|
|
saved.removeClass('good').hide();
|
2012-03-01 11:58:40 +01:00
|
|
|
}
|
2012-05-11 04:43:17 +02:00
|
|
|
status.attr('title',text).text(text);
|
2012-02-03 00:59:40 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
$('div.ss-upload .ss-uploadfield-item-editform iframe').entwine({
|
|
|
|
onmatch: function() {
|
2012-03-01 11:58:40 +01:00
|
|
|
// TODO entwine event binding doesn't work for iframes
|
2012-02-03 00:59:40 +01:00
|
|
|
this.load(function() {
|
2012-03-01 11:58:40 +01:00
|
|
|
$(this).parent().removeClass('loading');
|
2012-02-03 00:59:40 +01:00
|
|
|
});
|
2012-05-11 06:07:07 +02:00
|
|
|
this._super();
|
2012-05-14 01:43:36 +02:00
|
|
|
},
|
|
|
|
onunmatch: function() {
|
|
|
|
this._super();
|
2012-02-03 00:59:40 +01:00
|
|
|
}
|
|
|
|
});
|
2012-02-08 00:58:58 +01:00
|
|
|
$('div.ss-upload .ss-uploadfield-fromfiles').entwine({
|
|
|
|
onclick: function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.getUploadField().openSelectDialog();
|
|
|
|
}
|
|
|
|
});
|
2012-02-03 00:59:40 +01:00
|
|
|
});
|
2012-04-20 01:05:54 +02:00
|
|
|
}(jQuery));
|