-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fixed #1545 Various fixes to look and feel * adjusted some tranlations and placeholders * Changed the default placeholder
- Loading branch information
Showing
20 changed files
with
194 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright 2017, GeoSolutions Sas. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
const React = require('react'); | ||
const {Grid, Row, Col} = require('react-bootstrap'); | ||
const ToolsContainer = require('./containers/ToolsContainer'); | ||
|
||
/** | ||
* GridContainerPlugin. This is a plugin that works as container | ||
* of other plugins displaying them in a grid | ||
*/ | ||
const GridContainer = React.createClass({ | ||
propTypes: { | ||
className: React.PropTypes.string, | ||
style: React.PropTypes.object, | ||
items: React.PropTypes.array, | ||
id: React.PropTypes.string, | ||
mapType: React.PropTypes.string | ||
}, | ||
getDefaultProps() { | ||
return { | ||
items: [], | ||
className: "grid-home-container", | ||
style: {}, | ||
id: "mapstore-grid-home", | ||
mapType: "leaflet" | ||
}; | ||
}, | ||
getPanels() { | ||
return this.props.items.filter((item) => item.tools).reduce((previous, current) => { | ||
return previous.concat( | ||
current.tools.map((tool, index) => ({ | ||
name: current.name + index, | ||
panel: tool, | ||
cfg: current.cfg.toolsCfg ? current.cfg.toolsCfg[index] : {} | ||
})) | ||
); | ||
}, []); | ||
}, | ||
getTools() { | ||
return this.props.items.sort((a, b) => a.position - b.position); | ||
}, | ||
render() { | ||
return (<ToolsContainer | ||
id={this.props.id} | ||
style={this.props.style} | ||
className={this.props.className} | ||
mapType={this.props.mapType} | ||
container={(props) => (<Grid fluid><Row> | ||
{props.children.map( item => <Col xs={12} xsOffset={0} sm={6} smOffset={3} smOffset={0}>{item}</Col>)} | ||
</Row></Grid>)} | ||
toolStyle="primary" | ||
activeStyle="default" | ||
stateSelector="omnibar" | ||
tool={(props) => <div>{props.children}</div>} | ||
tools={this.getTools()} | ||
panels={this.getPanels()} | ||
/>); | ||
} | ||
}); | ||
|
||
module.exports = { | ||
GridContainerPlugin: GridContainer, | ||
reducers: {} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.