'use strict'; oml.ui.infoView = function(identifyData) { var ui = oml.user.ui, coverSize = identifyData ? 256 : ui.coverSize, css = getCSS(coverSize, oml.config.coverRatio), that = Ox.Element() .addClass('OxTextPage') .css({overflowY: 'auto'}) .bindEvent({ oml_item: function() { if (ui.item) { that.updateElement(ui.item); } }, oml_listselection: function(data) { if (data.value && data.value.length) { that.updateElement(data.value[0]); } } }), $cover = Ox.Element() .css({ position: 'absolute', left: '16px', top: '16px', width: css.cover.width }) .appendTo(that), $info = Ox.Element() .addClass('OxSelectable') .css({ position: 'absolute', left: css.info.left, right: !identifyData ? '176px' : 16 + Ox.UI.SCROLLBAR_SIZE + 'px', top: '16px' }) [coverSize == 512 ? 'hide' : 'show']() .appendTo(that), $data, $image, $reflection, $reflectionImage; if (!identifyData) { $data = Ox.Element() .addClass('OxSelectable') .css({ position: 'absolute', right: '16px', top: '16px', width: '128px' }) .appendTo(that); } function getCSS(size, ratio) { var width = Math.round(ratio >= 1 ? size : size * ratio), height = Math.round(ratio <= 1 ? size : size / ratio), left = size == 256 ? Math.floor((size - width) / 2) : 0; return { cover: { width: size + 'px' }, info: { left: (size == 256 ? size + 32 : width + 48) + 'px' }, image: { left: left + 'px', width: width + 'px', height: height + 'px' }, reflection: { top: height + 'px' } }; } function getImageSize(size, ratio) { var width = Math.round(ratio >= 1 ? size : size * ratio), height = Math.round(ratio <= 1 ? size : size / ratio), left = Math.floor((size - width) / 2); return {width: width, height: height, left: left}; } function formatLight(str) { return '' + str + ''; } function formatKey(key) { var item = Ox.getObjectById(oml.config.itemKeys, key); return '' + Ox._(Ox.toTitleCase(key)) + ': '; } function formatValue(value, key, join) { value = Ox.encodeHTMLEntities(value); return value ? (Ox.isArray(value) ? value : [value]).map(function(value) { return key && !identifyData ? '' + value + '' : value; }).join(join || ', ') : ''; } function identify(data) { oml.ui.identifyDialog(data).open(); } function renderMediaButton(data) { function getListItems() { var items = []; if (ui._lists) { items = ui._lists.filter(function(list) { return list.user == oml.user.preferences.username && list.type != 'smart'; }).map(function(list) { return { id: list.id, title: Ox._('Download to {0}', [list.name]) }; }); items.splice(1, 0, [{}]); } return items; } function setListItems() { if ($element && ui._lists) { $element.options({ disabled: false }).options('elements')[1].options({ items: getListItems() }); } else { setTimeout(setListItems, 100); } } if (data.mediastate == 'unavailable' && !ui._lists) { setListItems(); } var $element = data.mediastate == 'unavailable' ? Ox.FormElementGroup({ elements: [ Ox.Button({ title: Ox._('Download Book'), width: 112 }) .bindEvent({ click: function() { data.mediastate = 'transferring'; that.updateElement(data, $data); oml.api.download({id: ui.item}, function(result) { // ... }); } }), Ox.MenuButton({ disabled: !ui._lists, items: getListItems(), overlap: 'left', title: 'list', tooltip: Ox._('Download Book to a List'), type: 'image' }) .bindEvent({ click: function(data) { data.mediastate = 'transferring'; that.updateElement(data, $data); oml.api.download(Ox.extend({ id: ui.item, }, data.id == ':' ? {} : { list: data.id.slice(1) }), function(result) { // ... }); } }) ], float: 'right' }) : data.mediastate == 'transferring' ? Ox.FormElementGroup({ elements: [ Ox.Button({ title: Ox._('Transferring...'), width: 112 }) .bindEvent({ click: function() { oml.UI.set({page: 'transfers'}); } }), Ox.Button({ overlap: 'left', title: 'close', tooltip: Ox._('Cancel Transfer'), type: 'image' }) .bindEvent({ click: function() { data.mediastate = 'unavailable'; that.updateElement(data, $data); oml.api.cancelDownload({id: ui.item}, function() { that.updateElement(ui.item, $data); }); } }) ], float: 'right' }) : Ox.Button({ title: Ox._('Read Book'), width: 128 }) .bindEvent({ click: function() { oml.UI.set({itemView: 'book'}); } }); return $element; } function toggleCoverSize(ratio) { var css; coverSize = coverSize == 256 ? 512 : 256, css = getCSS(coverSize, ratio); //$cover.animate(css.cover, 250); $info.animate(css.info, 250); $image.animate(css.image, 250); $reflectionImage.animate(css.image, 250); $reflection.animate(css.reflection, 250); oml.UI.set({coverSize: coverSize}); } function updateCover(ratio) { var css = getCSS(coverSize, ratio); $image.css(css.image).show(); $reflectionImage.css(css.image); $reflection.css(css.reflection).show(); } that.updateElement = function(idOrData, $elements) { var data = Ox.isObject(idOrData) ? idOrData : null, id = data ? null : idOrData, $elements = $elements ? Ox.makeArray($elements) : [$cover, $info, $data]; (data ? Ox.noop : oml.api.get)({ id: id, keys: [] }, function(result) { if (!identifyData && id && id != ui.item) { return; } if (result) { data = result.data; } Ox.print('BOOK DATA', data) var $mediaButton, isEditable = !data.mainid && data.mediastate == 'available', src = !identifyData ? '/' + data.id + '/cover512.jpg?' + data.modified : data.cover, ratio = data.coverRatio || oml.config.coverRatio, size = coverSize, reflectionSize = Math.round(size / 2); $elements.forEach(function($element) { $element.empty(); if ($element == $cover) { $image = Ox.Element({ element: '', tooltip: '' // TODO }) .on({ error: function() { if (size == 512) { $info.show(); } }, load: function() { ratio = $image[0].width / $image[0].height; updateCover(ratio); if (size == 512) { $info.css({ left: getCSS(512, ratio).info.left }).show(); } } }) .attr({src: src}) .css({ position: 'absolute' }) .hide() .bindEvent({ singleclick: function() { if (!identifyData) { toggleCoverSize(ratio); } } }) .appendTo($cover); $reflection = $('