Skip to content
Snippets Groups Projects
Commit 50a6d6e2 authored by esikkala's avatar esikkala
Browse files

Timespan cell: order values by start date

parent c65b9ae4
No related branches found
No related tags found
No related merge requests found
......@@ -108,6 +108,7 @@ class ResultTable extends React.Component {
return (
<ResultTableCell
key={column.id}
columnId={column.id}
data={row[column.id] == null ? '-' : row[column.id]}
valueType={column.valueType}
makeLink={column.makeLink}
......
import React from 'react';
import PropTypes from 'prop-types';
import { orderBy, has } from 'lodash';
import { sortBy, orderBy, has } from 'lodash';
import TableCell from '@material-ui/core/TableCell';
import { withStyles } from '@material-ui/core/styles';
......@@ -68,8 +68,12 @@ const ResultTableCell = props => {
return '-';
}
else if (Array.isArray(cell)) {
cell = sortValues ? orderBy(cell, 'prefLabel') : cell;
if (props.columnId == 'timespan') {
cell = sortValues ? sortBy(cell, obj => Number(obj.start)) : cell;
} else {
cell = sortValues ? orderBy(cell, 'prefLabel') : cell;
}
const listItems = cell.map((item, i) =>
<li key={i}>
{makeLink &&
......@@ -222,6 +226,7 @@ const ResultTableCell = props => {
ResultTableCell.propTypes = {
classes: PropTypes.object.isRequired,
columnId: PropTypes.string.isRequired,
data: PropTypes.oneOfType([PropTypes.object, PropTypes.array, PropTypes.string]).isRequired,
valueType: PropTypes.string.isRequired,
makeLink: PropTypes.bool.isRequired,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment