kettle-ui
v3.10.0
Published
material-ui based widgets
Downloads
44
Readme
kettle-ui
material-ui widgets for applications - combined with react-grid-system for a no CSS material toolkit:
Widgets:
- Form - display form fields using biro
- AppWrapper - an AppBar and an offset full width/height ContentPane
- NavWrapper - scrollable sidebar and an offset full width/height ContentPane
- ToolbarWrapper - display an auto-scrollable content-panel below a fixed position toolbar
- AppNavWrapper - A combo of the app and nav wrapper so you pass the appbar and navbar both as properties
- ButtonDropDown - A button with a popover.
- IconDropdown - A drop down menu with an icon to trigger it.
- Page - a wrapper with padding
install
Install the module to your project:
$ npm install kettle-ui --save
Form
A wrapper for a biro form:
- title
- data - the form data
- meta - the form meta
- error - an overall error message (e.g. network failed message)
- loading - is the form currently submitting or otherwise busy
- schema - the fields
- validate - overall validator
- disableButton - if the button should be disabled
- library - extra library fields merged into biro-material-ui
- update - the function to update the (data,meta)
- submit - when the submit button is cancelled
- children - any children passed to the form will be rendered under the button and error
import React, { Component, PropTypes } from 'react'
import { connect } from 'react-redux'
import { formupdate, formsubmit } from '../actions'
import KettleForm from 'kettle-ui/lib/Form'
// the biro schema
const SCHEMA = ['username','password']
export class LoginForm extends Component {
render() {
// the extra props we pass onto of data,meta,update,submit
const formProps = {
title:'Login',
schema:SCHEMA,
...this.props
}
return (
<KettleForm {...this.props} />
)
}
}
function mapStateToProps(state, ownProps) {
return {
data:state.loginform.data,
meta:state.loginform.meta
}
}
function mapDispatchToProps(dispatch, ownProps) {
return {
update:function(data, meta){
dispatch(formupdate(data, meta))
},
submit:function(data, meta){
dispatch(formsubmit(data, meta))
}
}
}
export default connect(
mapStateToProps,
mapDispatchToProps
)(LoginForm)
AppWrapper
Use this to display an AppBar together with an offset content pane below.
All properties passed to the AppWrapper are passed onto the AppBar Component.
The child elements are used as the content.
- appbar - the React element to use as the topbar
- height - the height of the topbar (default=64px)
import React, {Component, PropTypes} from 'react'
import AppBar from 'material-ui/AppBar'
import AppWrapper from 'kettle-ui/lib/AppWrapper'
class App extends Component {
render() {
return (
<AppWrapper
appbar={
<AppBar title="MyApp" />
}>
This is the body content
</AppWrapper>
);
}
}
NOTE - to use this you need CSS like the following:
body, html {
height: 100%;
border: 0;
margin: 0;
padding: 0;
}
NavWrapper
Use this to display an auto-scrollable side-panel for navigation (for example a menu or list).
It will display child elements in the content pane on the right hand side.
- navbar - the React element to use as the navbar
- width - the width of the navbar (default=200px)
- height - the height of the topbar (default=64px)
- paperprops - use material-ui paper for the left nav
- zDepth
- rounded
- styles - override properties of the div styles
- wrapper - the container div
- tree - the div containing the left nav
- content - the div containing the right content
- inner - the content div inside both tree and content
import React, {Component, PropTypes} from 'react'
import {List, ListItem} from 'material-ui/List'
import NavWrapper from 'kettle-ui/lib/NavWrapper'
class MainContent extends Component {
render() {
var overrideStyles = {
tree:{
borderRight:'1px solid #999'
}
}
return (
<NavWrapper
styles={overrideStyles}
navbar={
<List>
<Subheader>Navigation</Subheader>
<ListItem primaryText="Sent mail" />
<ListItem primaryText="Drafts" />
<ListItem
primaryText="Inbox"
nestedItems={[
<ListItem
key={1}
primaryText="Starred" />}
/>,
<ListItem
key={2}
primaryText="Sent Mail"
/>
]}
/>
</List>
}>
This is the body content
</NavWrapper>
);
}
}
ToolbarWrapper
Use this to display an auto-scrollable content-panel below a fixed position toolbar.
- toolbar - the React element to use as the toolbar
- height - the height of the topbar (default=56px)
- offsetWidth - the width offset because of a NavWrapper (default=0px)
- styles - override properties of the div styles
- container - the container div
- toolbar - the div containing the top toolbar
- content - the div containing the bottom content
- inner - the content div inside both tree and content
import React, {Component, PropTypes} from 'react'
import {Toolbar, ToolbarGroup, ToolbarSeparator, ToolbarTitle} from 'material-ui/Toolbar'
import ToolbarWrapper from 'kettle-ui/lib/ToolbarWrapper'
class MainContent extends Component {
render() {
return (
<ToolbarWrapper
toolbar={
<Toolbar>
<ToolbarGroup firstChild={true}>
<ToolbarTitle text="Options" />
</ToolbarGroup>
</Toolbar>
}>
This is the body content
</ToolbarWrapper>
);
}
}
AppNavWrapper
A combo of the app and nav wrapper so you pass the appbar and navbar both as properties
- appbar - the React element to use as the topbar
- navbar - the React element to use as the navbar
- width - the width of the navbar (default=200px)
- height - the height of the topbar (default=64px)
- styles - override styles of the navbar
- paperprops - the paper props for the navbar
import React, {Component, PropTypes} from 'react'
import AppBar from 'material-ui/AppBar'
import {List, ListItem} from 'material-ui/List'
import AppNavWrapper from 'kettle-ui/lib/AppNavWrapper'
class MainContent extends Component {
render() {
return (
<AppNavWrapper
appbar={
<AppBar title="MyApp" />
}
navbar={
<List>
<Subheader>Navigation</Subheader>
<ListItem primaryText="Sent mail" />
<ListItem primaryText="Drafts" />
<ListItem
primaryText="Inbox"
nestedItems={[
<ListItem
key={1}
primaryText="Starred" />}
/>,
<ListItem
key={2}
primaryText="Sent Mail"
/>
]}
/>
</List>
}>
This is the body content
</AppNavWrapper>
);
}
}
Toolbar
A base toolbar class that can display buttons and drop-down buttons.
Properties:
title
- the toolbar title- {
leftButtons
,rightButtons
} - an array of dropdown or button descriptions for the {left,right} menu buttons children
- React element to include after the left hand buttonsrightChildren
- React element to include after the right hand buttons
ButtonRow
A collection of buttons driven by a schema.
- {
buttons
} - an array of dropdown or button descriptions for the menu buttonstype
- {button,dropdown,icon}icon
- React Element - used for the icon buttontitle
- the button titlehandler
- function that handles the button clickextraProps
- extra props passed to the buttonitems
- an array of objects describing what options are in the menutitle
- text to displayhandler
- function that handles the button clickdivider
- a boolean that turns this item into a menu divider
The ButtonRow also has some helper methods:
getMenuItems(items, handler)
generate a list of MenuItem
components from source data
the handler is the function to run when an item is selected and it is passed the selected item
getDropDownButton(label, items, extraProps)
generate a ButtonDropdown with the given items - items and handler are passed to getMenuItems
extraProps are passed to the underlying button.
getIconDropdown(icon, items, extraProps)
generate a ButtonDropdown with the given items - items and handler are passed to getMenuItems
extraProps are passed to the underlying button.
getButton(items, handler, extraProps)
generate a normal button - handler is run when the button is clicked
You can pass a schema to the toolbar and it will render the correct components.
extraProps are passed to the underlying button.
getButtonFromSchema(schema, i)
return a button based on a schema object:
render() {
return (
<div>
{buttonDescriptions.map(getButtonFromSchema)}
</div>
)
}
ButtonDropDown
A button with a popover.
- buttonclass - the React class to use as the button
- buttonprops - the props to pass to the button (onTouchTap will be added)
- timestamp - used to close the dropdown in cases where it remains open
- children - what to render in the popover
import React, {Component, PropTypes} from 'react'
import RaisedButton from 'material-ui/RaisedButton'
import Menu from 'material-ui/Menu'
import MenuItem from 'material-ui/MenuItem'
import ButtonDropDown from 'kettle-ui/lib/ButtonDropDown'
class MyPopover extends Component {
render() {
return (
<ButtonDropDown
buttonclass={RaisedButton}
buttonprops={{
label="Click me"
}}>
<Menu>
<MenuItem primaryText="Refresh" />
<MenuItem primaryText="Help & feedback" />
<MenuItem primaryText="Settings" />
<MenuItem primaryText="Sign out" />
</Menu>
</ButtonDropDown>
);
}
}
IconDropdown
A drop down menu with an icon to trigger it.
icon
- the React Element to use as the icon (default=material-ui/svg-icons/navigation/expand-more
)items
- an array of objects describing what appears in the drop downhandler
- function that handles the button clicktitle
- text to display
import React, {Component, PropTypes} from 'react'
import ArrowIcon from 'material-ui/svg-icons/navigation/arrow-downward'
import IconDropdown from 'kettle-ui/lib/IconDropdown'
class MyIconDropdown extends Component {
render() {
return (
<IconDropdown
icon={<ArrowIcon />}
items={[{
title:'Apples',
id:10,
handler:() => {
}
},{
title:'Oranges',
id:11,
handler:() => {
}
}]}
onselect={item => {
console.dir(item)
}} />
)
}
}
ConfirmDialog
A dialog window with a confirm and cancel button
confirmTitle
- default toConfirm
cancelTitle
- default toCancel
children
- the contents of the dialogisOpen
- whether the dialog is openisModal
- is the dialog in modal modeonClose()
- run when the dialog is closedonConfirm()
- run when the dialog is confirmed
Page
A wrapper with some padding
styles
- styles to apply to the wrapper
tools
mergeStyles(basestyles = {}, overrides = {})
Use this function to merge two sets of styles - useful for applying overrides to default style groups:
import { mergeStyles } from 'kettle-ui/lib/tools'
const basestyles = {
container:{
width:'10px'
},
footer:{
width:'12px'
}
}
const overrides = {
container:{
height:'20px'
},
footer:{
width:'50px'
}
}
console.log(mergeStyles(basestyles, overrides))
/*
{
container:{
width:'10px',
height:'20px'
},
footer:{
width:'50px'
}
}{text}
*/
license
MIT