mirror of
https://github.com/ascribe/onion.git
synced 2025-01-03 10:25:08 +01:00
Use object to construct ColumnModel to improve readability
This commit is contained in:
parent
d6a9873bd0
commit
b7d731f8f3
@ -121,62 +121,62 @@ let AccordionListItemTableEditions = React.createClass({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const columnList = [
|
const columnList = [
|
||||||
new ColumnModel(
|
new ColumnModel({
|
||||||
(item) => {
|
transformFn: (item) => {
|
||||||
return {
|
return {
|
||||||
'editionId': item.id,
|
'editionId': item.id,
|
||||||
'pieceId': parentId,
|
'pieceId': parentId,
|
||||||
'selectItem': this.selectItem,
|
'selectItem': this.selectItem,
|
||||||
'selected': item.selected
|
'selected': item.selected
|
||||||
}; },
|
};
|
||||||
'',
|
},
|
||||||
|
displayName: (
|
||||||
<AccordionListItemTableSelectAllEditionsCheckbox
|
<AccordionListItemTableSelectAllEditionsCheckbox
|
||||||
onChange={this.toggleAllItems}
|
onChange={this.toggleAllItems}
|
||||||
numOfSelectedEditions={selectedEditionsCount}
|
numOfSelectedEditions={selectedEditionsCount}
|
||||||
numOfAllEditions={allEditionsCount}/>,
|
numOfAllEditions={allEditionsCount}/>
|
||||||
TableItemCheckbox,
|
),
|
||||||
1,
|
displayType: TableItemCheckbox,
|
||||||
false
|
rowWidth: 1
|
||||||
),
|
}),
|
||||||
new ColumnModel(
|
new ColumnModel({
|
||||||
(item) => {
|
transition,
|
||||||
|
transformFn: (item) => {
|
||||||
return {
|
return {
|
||||||
'content': item.edition_number + ' ' + getLangText('of') + ' ' + item.num_editions
|
'content': item.edition_number + ' ' + getLangText('of') + ' ' + item.num_editions
|
||||||
}; },
|
};
|
||||||
'edition_number',
|
},
|
||||||
getLangText('Edition'),
|
columnName: 'edition_number',
|
||||||
TableItemText,
|
displayName: getLangText('Edition'),
|
||||||
1,
|
displayType: TableItemText,
|
||||||
false,
|
rowWidth: 1
|
||||||
transition
|
}),
|
||||||
),
|
new ColumnModel({
|
||||||
new ColumnModel(
|
transition,
|
||||||
(item) => {
|
transformFn: (item) => {
|
||||||
return {
|
return {
|
||||||
'content': item.bitcoin_id
|
'content': item.bitcoin_id
|
||||||
}; },
|
};
|
||||||
'bitcoin_id',
|
},
|
||||||
getLangText('ID'),
|
columnName: 'bitcoin_id',
|
||||||
TableItemText,
|
displayName: getLangText('ID'),
|
||||||
5,
|
displayType: TableItemText,
|
||||||
false,
|
rowWidth: 5,
|
||||||
transition,
|
className: 'hidden-xs visible-sm visible-md visible-lg'
|
||||||
'hidden-xs visible-sm visible-md visible-lg'
|
}),
|
||||||
),
|
new ColumnModel({
|
||||||
new ColumnModel(
|
transition,
|
||||||
(item) => {
|
transformFn: (item) => {
|
||||||
let content = item.acl;
|
|
||||||
return {
|
return {
|
||||||
'content': content,
|
'content': item.acl,
|
||||||
'notifications': item.notifications
|
'notifications': item.notifications
|
||||||
}; },
|
};
|
||||||
'acl',
|
},
|
||||||
getLangText('Actions'),
|
columnName: 'acl',
|
||||||
TableItemAclFiltered,
|
displayName: getLangText('Actions'),
|
||||||
4,
|
displayType: TableItemAclFiltered,
|
||||||
false,
|
rowWidth: 4,
|
||||||
transition
|
})
|
||||||
)
|
|
||||||
];
|
];
|
||||||
|
|
||||||
if (show && editionsForPiece && editionsForPiece.length) {
|
if (show && editionsForPiece && editionsForPiece.length) {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
export class ColumnModel {
|
export class ColumnModel {
|
||||||
// ToDo: Add validation for all passed-in parameters
|
// ToDo: Add validation for all passed-in parameters
|
||||||
constructor(transformFn, columnName, displayName, displayType, rowWidth, canBeOrdered, transition, className) {
|
constructor({ transformFn, columnName = '', displayName, displayType, rowWidth, canBeOrdered, transition, className = '' }) {
|
||||||
this.transformFn = transformFn;
|
this.transformFn = transformFn;
|
||||||
this.columnName = columnName;
|
this.columnName = columnName;
|
||||||
this.displayName = displayName;
|
this.displayName = displayName;
|
||||||
@ -10,7 +10,7 @@ export class ColumnModel {
|
|||||||
this.rowWidth = rowWidth;
|
this.rowWidth = rowWidth;
|
||||||
this.canBeOrdered = canBeOrdered;
|
this.canBeOrdered = canBeOrdered;
|
||||||
this.transition = transition;
|
this.transition = transition;
|
||||||
this.className = className ? className : '';
|
this.className = className;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user