Skip to content
Snippets Groups Projects
Commit 1d8cc704 authored by vkovtun's avatar vkovtun
Browse files

SSDM-13579: Added changing logic for GridView and ListView buttons on the toolbar.

parent 988722b2
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
import React from 'react' import React from 'react'
import { withStyles } from '@material-ui/core/styles' import { withStyles } from '@material-ui/core/styles'
import autoBind from 'auto-bind'
import Toolbar from '@src/js/components/database/data-browser/Toolbar.jsx' import Toolbar from '@src/js/components/database/data-browser/Toolbar.jsx'
import ListView from '@src/js/components/database/data-browser/ListView.jsx' import ListView from '@src/js/components/database/data-browser/ListView.jsx'
import GridView from '@src/js/components/database/data-browser/GridView.jsx' import GridView from '@src/js/components/database/data-browser/GridView.jsx'
...@@ -22,23 +23,27 @@ const styles = theme => ({ ...@@ -22,23 +23,27 @@ const styles = theme => ({
class DataBrowser extends React.Component { class DataBrowser extends React.Component {
constructor(props, context) { constructor(props, context) {
super(props, context) super(props, context)
autoBind(this)
this.state = { this.state = {
viewType: props.viewType viewType: props.viewType
} }
} }
handleViewTypeChange(viewType) {
this.setState({ viewType })
}
render() { render() {
const { viewType } = this.state const { viewType } = this.state
const { classes } = this.props const { classes } = this.props
return ( return (
<div className={ classes.boundary }> <div className={classes.boundary}>
<Toolbar viewType={viewType} /> <Toolbar viewType={viewType} onViewTypeChange={this.handleViewTypeChange} />
{viewType === 'list' ? <ListView /> : null} {viewType === 'list' && <ListView />}
{viewType === 'grid' ? <GridView /> : null} {viewType === 'grid' && <GridView />}
</div> </div>
) )
} }
......
...@@ -13,7 +13,7 @@ const styles = theme => ({ ...@@ -13,7 +13,7 @@ const styles = theme => ({
class GridView extends React.Component { class GridView extends React.Component {
render() { render() {
return ( return (
<div>GalleryBrowser</div> <div>GridView</div>
) )
} }
} }
......
import React from "react"; import React from 'react'
import { withStyles } from "@material-ui/core/styles"; import { withStyles } from '@material-ui/core/styles'
const styles = theme => ({ const styles = theme => ({
containerDefault: { containerDefault: {
...@@ -13,7 +13,7 @@ const styles = theme => ({ ...@@ -13,7 +13,7 @@ const styles = theme => ({
class ListView extends React.Component { class ListView extends React.Component {
render() { render() {
return ( return (
<div>ListBrowser</div> <div>ListView</div>
) )
} }
} }
......
...@@ -16,11 +16,11 @@ const styles = theme => ({ ...@@ -16,11 +16,11 @@ const styles = theme => ({
class Toolbar extends React.Component { class Toolbar extends React.Component {
render() { render() {
const { viewType } = this.props const { viewType, onViewTypeChange } = this.props
return ( return (
<Container> <Container>
{viewType === 'list' && <Button label={<ViewComfyIcon/>}/>} {viewType === 'list' && <Button label={<ViewComfyIcon/>} onClick={() => onViewTypeChange('grid')} />}
{viewType === 'grid' && <Button label={<ViewListIcon/>}/>} {viewType === 'grid' && <Button label={<ViewListIcon/>} onClick={() => onViewTypeChange('list')} />}
</Container> </Container>
) )
} }
......
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