2016-01-05 08:34:07 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
oml.ui.editDialog = function() {
|
|
|
|
|
2016-01-05 14:43:57 +00:00
|
|
|
var arrayKeys = [
|
|
|
|
'author', 'place', 'publisher', 'language'
|
|
|
|
],
|
|
|
|
ids = oml.user.ui.listSelection,
|
2016-01-05 08:34:07 +00:00
|
|
|
keys = [
|
|
|
|
'title', 'author', 'place', 'publisher', 'date',
|
|
|
|
'edition', 'language', 'pages', 'description'
|
|
|
|
],
|
|
|
|
mixed = ' ',
|
|
|
|
separator = '; ',
|
|
|
|
tooltip = Ox._('Doubleclick to edit'),
|
|
|
|
|
|
|
|
$info = Ox.Element()
|
|
|
|
.addClass('OxSelectable')
|
|
|
|
.css({padding: '16px'});
|
|
|
|
|
|
|
|
var that = Ox.Dialog({
|
|
|
|
buttons: [
|
|
|
|
Ox.Button({
|
|
|
|
title: Ox._('Done')
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
that.close();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
],
|
|
|
|
closeButton: true,
|
|
|
|
content: Ox.LoadingScreen().start(),
|
2016-01-05 14:43:57 +00:00
|
|
|
height: 256,
|
2016-01-05 08:34:07 +00:00
|
|
|
removeOnClose: true,
|
|
|
|
title: Ox._('Edit Metadata for {0}', [
|
|
|
|
Ox.formatNumber(ids.length) + ' ' + (
|
|
|
|
ids.length == 1 ? 'Book' : 'Books'
|
|
|
|
)
|
|
|
|
]),
|
|
|
|
width: 512
|
|
|
|
});
|
|
|
|
|
|
|
|
getMetadata(renderMetadata);
|
|
|
|
|
|
|
|
function editMetadata(key, value) {
|
|
|
|
var edit = {id: ids};
|
2016-01-08 09:35:35 +00:00
|
|
|
if (Ox.contains(arrayKeys, key)) {
|
2016-01-08 09:59:02 +00:00
|
|
|
edit[key] = value ? value.split(separator) : [];
|
2016-01-05 08:34:07 +00:00
|
|
|
} else {
|
2016-01-08 09:59:02 +00:00
|
|
|
edit[key] = value;
|
2016-01-05 08:34:07 +00:00
|
|
|
}
|
|
|
|
oml.api.edit(edit, function(result) {
|
2016-01-05 17:21:35 +00:00
|
|
|
Ox.Request.clearCache();
|
2016-01-05 18:06:57 +00:00
|
|
|
oml.$ui.info.updateElement();
|
2016-01-05 14:43:57 +00:00
|
|
|
oml.$ui.filters.forEach(function($filter) {
|
|
|
|
$filter.reloadList();
|
|
|
|
});
|
2016-01-05 17:45:20 +00:00
|
|
|
oml.$ui.list.reloadList(true);
|
2016-01-05 08:34:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function formatLight(string) {
|
|
|
|
return '<span class="OxLight">' + string + '</span>';
|
|
|
|
}
|
|
|
|
|
|
|
|
function formatKey(key) {
|
|
|
|
var item = Ox.getObjectById(oml.config.itemKeys, key);
|
|
|
|
return '<span style="font-weight: bold">'
|
|
|
|
+ Ox._(Ox.toTitleCase(key)) + ':</span> ';
|
|
|
|
}
|
|
|
|
|
|
|
|
function formatValue(value, key) {
|
2016-01-05 14:43:57 +00:00
|
|
|
var isMixed = value === mixed || (
|
|
|
|
Ox.isArray(value) && value.length == 1 && value[0] === mixed
|
|
|
|
);
|
|
|
|
return isMixed ? formatLight(Ox._(
|
2016-01-05 08:34:07 +00:00
|
|
|
key == 'title' ? 'Mixed Title'
|
|
|
|
: key == 'author' ? 'Mixed Author'
|
2016-01-05 14:43:57 +00:00
|
|
|
: key == 'description' ? 'Mixed Description'
|
2016-01-05 08:34:07 +00:00
|
|
|
: 'mixed'
|
|
|
|
)) : value ? (Ox.isArray(value) ? value : [value]).map(function(value) {
|
2016-01-08 09:59:02 +00:00
|
|
|
return key == 'date' && value ? value.slice(0, 4) : value;
|
2016-01-05 08:34:07 +00:00
|
|
|
}).join(separator) : '';
|
|
|
|
}
|
|
|
|
|
|
|
|
function getMetadata(callback) {
|
|
|
|
oml.api.find({
|
|
|
|
keys: keys,
|
|
|
|
query: {
|
|
|
|
conditions: ids.map(function(id) {
|
|
|
|
return {
|
|
|
|
key: 'id',
|
|
|
|
operator: '==',
|
|
|
|
value: id
|
|
|
|
};
|
|
|
|
}),
|
|
|
|
operator: '|'
|
|
|
|
}
|
|
|
|
}, function(result) {
|
|
|
|
var data = {},
|
|
|
|
items = result.data.items;
|
|
|
|
keys.forEach(function(key) {
|
2016-01-05 18:06:57 +00:00
|
|
|
var isArray = Ox.contains(arrayKeys, key),
|
|
|
|
values = items.map(function(item) {
|
|
|
|
return item[key];
|
|
|
|
});
|
2016-01-05 08:34:07 +00:00
|
|
|
if (isArray) {
|
|
|
|
values = values.map(function(value) {
|
2016-01-05 18:13:35 +00:00
|
|
|
return (value || []).join(separator);
|
2016-01-05 08:34:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
data[key] = Ox.unique(values).length == 1
|
|
|
|
? (isArray ? values[0].split(separator) : values[0])
|
2016-01-05 10:28:18 +00:00
|
|
|
: isArray ? [mixed] : mixed;
|
2016-01-05 08:34:07 +00:00
|
|
|
});
|
|
|
|
callback(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderMetadata(data) {
|
|
|
|
|
|
|
|
var $div;
|
|
|
|
|
|
|
|
// Title
|
|
|
|
|
|
|
|
$('<div>')
|
|
|
|
.css({
|
|
|
|
marginTop: '-2px'
|
|
|
|
})
|
|
|
|
.append(
|
|
|
|
Ox.EditableContent({
|
|
|
|
editable: true,
|
|
|
|
format: function(value) {
|
|
|
|
return formatValue(value, 'title');
|
|
|
|
},
|
|
|
|
placeholder: formatLight(Ox._('No Title')),
|
|
|
|
tooltip: tooltip,
|
2016-01-08 09:59:02 +00:00
|
|
|
value: data.title ? Ox.encodeHTMLEntities(data.title) : ''
|
2016-01-05 08:34:07 +00:00
|
|
|
})
|
|
|
|
.css({
|
|
|
|
fontWeight: 'bold',
|
|
|
|
fontSize: '13px'
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
submit: function(event) {
|
2016-01-08 09:59:02 +00:00
|
|
|
editMetadata('title', Ox.decodeHTMLEntities(event.value));
|
2016-01-05 08:34:07 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
)
|
|
|
|
.appendTo($info);
|
|
|
|
|
|
|
|
// Author
|
|
|
|
|
|
|
|
$('<div>')
|
|
|
|
.css({
|
|
|
|
marginTop: '2px'
|
|
|
|
})
|
|
|
|
.append(
|
|
|
|
Ox.EditableContent({
|
|
|
|
editable: true,
|
|
|
|
format: function(value) {
|
2016-01-08 10:11:24 +00:00
|
|
|
return formatValue(splitValue(value), 'author');
|
2016-01-05 08:34:07 +00:00
|
|
|
},
|
|
|
|
placeholder: formatLight(Ox._('Unknown Author')),
|
|
|
|
tooltip: tooltip,
|
2016-01-08 09:59:02 +00:00
|
|
|
value: data.author ? Ox.encodeHTMLEntities(data.author.join(separator)) : ''
|
2016-01-05 08:34:07 +00:00
|
|
|
})
|
|
|
|
.css({
|
|
|
|
marginBottom: '-3px',
|
|
|
|
fontWeight: 'bold',
|
|
|
|
fontSize: '13px'
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
submit: function(event) {
|
2016-01-08 09:59:02 +00:00
|
|
|
editMetadata('author', Ox.decodeHTMLEntities(event.value));
|
2016-01-05 08:34:07 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
)
|
|
|
|
.appendTo($info);
|
|
|
|
|
|
|
|
// Place, Publisher, Date
|
|
|
|
|
2016-01-05 10:28:18 +00:00
|
|
|
$div = $('<div>')
|
2016-01-05 08:34:07 +00:00
|
|
|
.css({
|
|
|
|
marginTop: '4px'
|
|
|
|
})
|
|
|
|
.appendTo($info);
|
|
|
|
['place', 'publisher', 'date'].forEach(function(key, index) {
|
|
|
|
if (index) {
|
|
|
|
$('<span>').html(', ').appendTo($div);
|
|
|
|
}
|
|
|
|
$('<span>')
|
|
|
|
.html(formatKey(key))
|
|
|
|
.appendTo($div);
|
|
|
|
Ox.EditableContent({
|
|
|
|
editable: true,
|
|
|
|
format: function(value) {
|
2016-01-05 14:43:57 +00:00
|
|
|
return formatValue(
|
2016-01-08 10:11:24 +00:00
|
|
|
key == 'place' ? splitValue(value) : value,
|
2016-01-05 14:43:57 +00:00
|
|
|
key
|
|
|
|
);
|
2016-01-05 08:34:07 +00:00
|
|
|
},
|
|
|
|
placeholder: formatLight(Ox._('unknown')),
|
|
|
|
tooltip: tooltip,
|
2016-01-08 09:59:02 +00:00
|
|
|
value: data[key] ? Ox.encodeHTMLEntities(
|
2016-01-05 14:43:57 +00:00
|
|
|
Ox.contains(arrayKeys, key) && Ox.isArray(data[key])
|
|
|
|
? data[key].join('; ') : data[key]
|
|
|
|
) : ''
|
2016-01-05 08:34:07 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
submit: function(event) {
|
2016-01-08 09:59:02 +00:00
|
|
|
editMetadata(key, Ox.decodeHTMLEntities(event.value));
|
2016-01-05 08:34:07 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.appendTo($div);
|
|
|
|
});
|
|
|
|
|
2016-01-05 14:43:57 +00:00
|
|
|
// Edition, Language, Pages
|
|
|
|
|
|
|
|
$div = $('<div>')
|
|
|
|
.css({
|
|
|
|
marginTop: '4px'
|
|
|
|
})
|
|
|
|
.appendTo($info);
|
|
|
|
['edition', 'language', 'pages'].forEach(function(key, index) {
|
|
|
|
if (index) {
|
|
|
|
$('<span>').html(', ').appendTo($div);
|
|
|
|
}
|
|
|
|
$('<span>')
|
|
|
|
.html(formatKey(key))
|
|
|
|
.appendTo($div);
|
|
|
|
Ox.EditableContent({
|
|
|
|
editable: true,
|
|
|
|
format: function(value) {
|
|
|
|
return formatValue(
|
2016-01-08 10:11:24 +00:00
|
|
|
key == 'language' ? splitValue(value) : value,
|
2016-01-05 14:43:57 +00:00
|
|
|
key
|
|
|
|
);
|
|
|
|
},
|
|
|
|
placeholder: formatLight(Ox._('unknown')),
|
|
|
|
tooltip: tooltip,
|
2016-01-08 09:59:02 +00:00
|
|
|
value: data[key] ? Ox.encodeHTMLEntities(
|
2016-01-05 14:43:57 +00:00
|
|
|
Ox.contains(arrayKeys, key) && Ox.isArray(data[key])
|
|
|
|
? data[key].join(separator) : data[key]
|
|
|
|
) : ''
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
submit: function(event) {
|
2016-01-08 09:59:02 +00:00
|
|
|
editMetadata(key, Ox.decodeHTMLEntities(event.value));
|
2016-01-05 14:43:57 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.appendTo($div);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Description
|
|
|
|
|
|
|
|
$('<div>')
|
|
|
|
.css({
|
|
|
|
marginTop: '8px',
|
|
|
|
textAlign: 'justify'
|
|
|
|
}).append(
|
|
|
|
Ox.EditableContent({
|
|
|
|
editable: true,
|
2016-01-08 10:11:24 +00:00
|
|
|
format: function(value) {
|
|
|
|
return value.replace(/\n/g, '<br>');
|
|
|
|
},
|
2016-01-05 14:43:57 +00:00
|
|
|
placeholder: formatLight('No Description'),
|
|
|
|
tooltip: tooltip,
|
|
|
|
type: 'textarea',
|
2016-01-08 09:59:02 +00:00
|
|
|
value: data.description ? Ox.encodeHTMLEntities(data.description) : ''
|
2016-01-05 14:43:57 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
submit: function(event) {
|
2016-01-08 09:59:02 +00:00
|
|
|
editMetadata(
|
|
|
|
'description',
|
|
|
|
Ox.decodeHTMLEntities(event.value).replace(/<br>/g, '\n')
|
|
|
|
);
|
2016-01-05 14:43:57 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
).appendTo($info);
|
|
|
|
|
|
|
|
$('<div>').css({height: '16px'}).appendTo($info);
|
|
|
|
|
2016-01-05 08:34:07 +00:00
|
|
|
that.options({content: $info});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-08 10:11:24 +00:00
|
|
|
function splitValue(value) {
|
2016-01-09 07:04:51 +00:00
|
|
|
return Ox.decodeHTMLEntities(value).split('; ').map(function(value) {
|
|
|
|
return Ox.encodeHTMLEntities(value);
|
|
|
|
});
|
2016-01-08 10:11:24 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 08:34:07 +00:00
|
|
|
return that;
|
|
|
|
|
2016-01-05 10:28:18 +00:00
|
|
|
};
|