Skip to content
Snippets Groups Projects
Commit 5414bb5b authored by esikkala's avatar esikkala
Browse files

Hide production place facet, adjust result table layout

parent bbab4767
No related branches found
No related tags found
No related merge requests found
...@@ -87,7 +87,7 @@ class FacetBar extends React.Component { ...@@ -87,7 +87,7 @@ class FacetBar extends React.Component {
<Paper className={classes.headingContainer}> <Paper className={classes.headingContainer}>
<Typography variant="h6">Production place</Typography> <Typography variant="h6">Production place</Typography>
</Paper> </Paper>
<div className={classes.facetValuesContainerTen}> { /* <div className={classes.facetValuesContainerTen}>
<Tree <Tree
property='productionPlace' property='productionPlace'
lastUpdatedFacet={facet.lastUpdatedFacet} lastUpdatedFacet={facet.lastUpdatedFacet}
...@@ -95,6 +95,7 @@ class FacetBar extends React.Component { ...@@ -95,6 +95,7 @@ class FacetBar extends React.Component {
updateFilter={this.props.updateFilter} updateFilter={this.props.updateFilter}
/> />
</div> </div>
*/ }
</Paper> </Paper>
<Paper className={classes.facetContainerLast}> <Paper className={classes.facetContainerLast}>
<Paper className={classes.headingContainer}> <Paper className={classes.headingContainer}>
......
...@@ -36,6 +36,9 @@ const styles = () => ({ ...@@ -36,6 +36,9 @@ const styles = () => ({
paddingLeft: 0 paddingLeft: 0
}, },
withFilter: { withFilter: {
//minWidth: 170
},
wideColumn: {
minWidth: 170 minWidth: 170
}, },
infoIcon: { infoIcon: {
...@@ -260,6 +263,9 @@ class ResultTable extends React.Component { ...@@ -260,6 +263,9 @@ class ResultTable extends React.Component {
{rows.map(row => { {rows.map(row => {
return ( return (
<TableRow key={row.id}> <TableRow key={row.id}>
<TableCell className={classes.withFilter}>
{this.objectListRenderer(row.source, true)}
</TableCell>
<TableCell className={classes.withFilter} > <TableCell className={classes.withFilter} >
{this.stringListRenderer(row.prefLabel)} {this.stringListRenderer(row.prefLabel)}
</TableCell> </TableCell>
...@@ -269,7 +275,7 @@ class ResultTable extends React.Component { ...@@ -269,7 +275,7 @@ class ResultTable extends React.Component {
<TableCell className={classes.withFilter}> <TableCell className={classes.withFilter}>
{this.objectListRenderer(row.productionPlace, true)} {this.objectListRenderer(row.productionPlace, true)}
</TableCell> </TableCell>
<TableCell className={classes.withFilter}> <TableCell className={classes.wideColumn}>
{this.objectListRenderer(row.timespan)} {this.objectListRenderer(row.timespan)}
</TableCell> </TableCell>
<TableCell className={classes.withFilter}> <TableCell className={classes.withFilter}>
...@@ -278,15 +284,13 @@ class ResultTable extends React.Component { ...@@ -278,15 +284,13 @@ class ResultTable extends React.Component {
{/*<TableCell className={classes.withFilter}> {/*<TableCell className={classes.withFilter}>
{this.stringListRenderer(row.material)} {this.stringListRenderer(row.material)}
</TableCell>*/} </TableCell>*/}
<TableCell className={classes.withFilter}> <TableCell className={classes.wideColumn}>
{this.eventRenderer(row.event)} {this.eventRenderer(row.event)}
</TableCell> </TableCell>
<TableCell className={classes.withFilter}> <TableCell className={classes.wideColumn}>
{this.ownerRenderer(row.owner)} {this.ownerRenderer(row.owner)}
</TableCell> </TableCell>
<TableCell className={classes.withFilter}>
{this.objectListRenderer(row.source, true)}
</TableCell>
</TableRow> </TableRow>
); );
})} })}
......
...@@ -20,6 +20,12 @@ const styles = () => ({ ...@@ -20,6 +20,12 @@ const styles = () => ({
}); });
const columns = [ const columns = [
{
label: 'Source',
property: 'source',
desc: 'Source description',
//filter: true
},
{ {
label: 'Title', label: 'Title',
property: 'prefLabel', property: 'prefLabel',
...@@ -62,12 +68,6 @@ const columns = [ ...@@ -62,12 +68,6 @@ const columns = [
property: 'owner', property: 'owner',
desc: 'Material description' desc: 'Material description'
}, },
{
label: 'Source',
property: 'source',
desc: 'Source description',
//filter: true
},
]; ];
......
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