use Ox.EditableContent for info in documents item view
This commit is contained in:
parent
fdbd17fdc1
commit
f52daaacbd
1 changed files with 160 additions and 105 deletions
|
@ -310,7 +310,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
|
|
||||||
$preview,
|
$preview,
|
||||||
|
|
||||||
$form,
|
$data,
|
||||||
|
|
||||||
$itemStatusbar = Ox.Bar({size: 16})
|
$itemStatusbar = Ox.Bar({size: 16})
|
||||||
.css({textAlign: 'center'}),
|
.css({textAlign: 'center'}),
|
||||||
|
@ -492,13 +492,74 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderForm() {
|
function renderData() {
|
||||||
var item = $list.value($list.options('selected')[0]),
|
var $title, $description,
|
||||||
|
item = $list.value($list.options('selected')[0]),
|
||||||
editable = item.user == pandora.user.username
|
editable = item.user == pandora.user.username
|
||||||
|| pandora.site.capabilities.canEditDocuments[pandora.user.level],
|
|| pandora.site.capabilities.canEditDocuments[pandora.user.level],
|
||||||
inputWidth = ui.documentSize - 16 - Ox.UI.SCROLLBAR_SIZE,
|
labelWidth = 80,
|
||||||
labelWidth = 80;
|
width = ui.documentSize - 16 - Ox.UI.SCROLLBAR_SIZE;
|
||||||
return Ox.Form({
|
return isItemView
|
||||||
|
? Ox.Element()
|
||||||
|
.append(
|
||||||
|
Ox.$('<div>').css({height: '16px'})
|
||||||
|
)
|
||||||
|
.append(
|
||||||
|
$title = Ox.EditableContent({
|
||||||
|
editable: false,
|
||||||
|
value: item.name,
|
||||||
|
width: width
|
||||||
|
})
|
||||||
|
.css({
|
||||||
|
margin: '0 4px',
|
||||||
|
textAlign: 'center',
|
||||||
|
fontWeight: 'bold'
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
edit: function() {
|
||||||
|
$title.options({
|
||||||
|
width: that.width()
|
||||||
|
});
|
||||||
|
},
|
||||||
|
submit: function() {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.append(
|
||||||
|
Ox.$('<div>').css({height: '8px'})
|
||||||
|
)
|
||||||
|
.append(
|
||||||
|
$description = Ox.EditableContent({
|
||||||
|
format: function(value) {
|
||||||
|
return '<div class="OxLight" style="text-align: center">'
|
||||||
|
+ value + '</div>';
|
||||||
|
},
|
||||||
|
height: width,
|
||||||
|
placeholder: 'No description',
|
||||||
|
type: 'textarea',
|
||||||
|
value: item.description || '',
|
||||||
|
width: width
|
||||||
|
})
|
||||||
|
.css({
|
||||||
|
marginLeft: '8px',
|
||||||
|
textAlign: 'center'
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
submit: function(data) {
|
||||||
|
pandora.api.editDocument({
|
||||||
|
description: data.value,
|
||||||
|
id: item.id,
|
||||||
|
item: ui.item,
|
||||||
|
}, function(result) {
|
||||||
|
$description.options({value: result.data.description});
|
||||||
|
Ox.Request.clearCache('findDocuments');
|
||||||
|
$list.reloadList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
)
|
||||||
|
: Ox.Form({
|
||||||
items: [
|
items: [
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: !editable,
|
disabled: !editable,
|
||||||
|
@ -506,7 +567,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
label: Ox._('Name'),
|
label: Ox._('Name'),
|
||||||
labelWidth: labelWidth,
|
labelWidth: labelWidth,
|
||||||
value: item.name,
|
value: item.name,
|
||||||
width: inputWidth
|
width: width
|
||||||
}),
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
|
@ -514,7 +575,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
label: Ox._('Extension'),
|
label: Ox._('Extension'),
|
||||||
labelWidth: labelWidth,
|
labelWidth: labelWidth,
|
||||||
value: item.extension,
|
value: item.extension,
|
||||||
width: inputWidth
|
width: width
|
||||||
}),
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
|
@ -524,7 +585,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
value: Ox.isArray(item.dimensions)
|
value: Ox.isArray(item.dimensions)
|
||||||
? Ox.formatDimensions(item.dimensions, 'px')
|
? Ox.formatDimensions(item.dimensions, 'px')
|
||||||
: Ox.formatCount(item.dimensions, 'page'),
|
: Ox.formatCount(item.dimensions, 'page'),
|
||||||
width: inputWidth
|
width: width
|
||||||
}),
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
|
@ -532,7 +593,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
label: Ox._('Size'),
|
label: Ox._('Size'),
|
||||||
labelWidth: labelWidth,
|
labelWidth: labelWidth,
|
||||||
value: Ox.formatValue(item.size, 'B'),
|
value: Ox.formatValue(item.size, 'B'),
|
||||||
width: inputWidth
|
width: width
|
||||||
}),
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
|
@ -540,7 +601,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
label: Ox._('Matches'),
|
label: Ox._('Matches'),
|
||||||
labelWidth: labelWidth,
|
labelWidth: labelWidth,
|
||||||
value: item.matches,
|
value: item.matches,
|
||||||
width: inputWidth
|
width: width
|
||||||
}),
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
|
@ -548,7 +609,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
label: Ox._('Username'),
|
label: Ox._('Username'),
|
||||||
labelWidth: labelWidth,
|
labelWidth: labelWidth,
|
||||||
value: item.user,
|
value: item.user,
|
||||||
width: inputWidth
|
width: width
|
||||||
}),
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: !editable,
|
disabled: !editable,
|
||||||
|
@ -556,7 +617,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
label: Ox._('Type'),
|
label: Ox._('Type'),
|
||||||
labelWidth: labelWidth,
|
labelWidth: labelWidth,
|
||||||
value: item.type,
|
value: item.type,
|
||||||
width: inputWidth
|
width: width
|
||||||
}),
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
disabled: !editable,
|
disabled: !editable,
|
||||||
|
@ -565,7 +626,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
placeholder: Ox._('Description'),
|
placeholder: Ox._('Description'),
|
||||||
type: 'textarea',
|
type: 'textarea',
|
||||||
value: item.description,
|
value: item.description,
|
||||||
width: inputWidth
|
width: width
|
||||||
})
|
})
|
||||||
],
|
],
|
||||||
width: 240
|
width: 240
|
||||||
|
@ -678,14 +739,6 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
})
|
})
|
||||||
.on({
|
.on({
|
||||||
click: openDocuments
|
click: openDocuments
|
||||||
// FIXME
|
|
||||||
/*
|
|
||||||
var item = $list.value(selected);
|
|
||||||
window.open(
|
|
||||||
'/documents/' + selected + '/' + item.name + '.' + item.extension,
|
|
||||||
'_blank'
|
|
||||||
);
|
|
||||||
*/
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -698,10 +751,12 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
}).css({
|
}).css({
|
||||||
margin: size.margin
|
margin: size.margin
|
||||||
});
|
});
|
||||||
$form && $form.options('items').forEach(function($item) {
|
if (!isItemView && $data) {
|
||||||
|
$data.options('items').forEach(function($item) {
|
||||||
$item.options({width: width});
|
$item.options({width: width});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function selectDocuments() {
|
function selectDocuments() {
|
||||||
var selected = ui.documentsSelection[isItemView ? ui.item : ''] || [],
|
var selected = ui.documentsSelection[isItemView ? ui.item : ''] || [],
|
||||||
|
@ -733,7 +788,7 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
$item.empty();
|
$item.empty();
|
||||||
if (selected.length) {
|
if (selected.length) {
|
||||||
$preview = renderPreview().appendTo($item);
|
$preview = renderPreview().appendTo($item);
|
||||||
$form = renderForm().appendTo($item);
|
$data = renderData().appendTo($item);
|
||||||
}
|
}
|
||||||
$itemStatus.html(
|
$itemStatus.html(
|
||||||
selected.length
|
selected.length
|
||||||
|
|
Loading…
Reference in a new issue