Add update Safe name component
This commit is contained in:
parent
27585917aa
commit
fae75d7599
|
@ -90,7 +90,7 @@ class Layout extends React.Component<Props, State> {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const {
|
const {
|
||||||
safe, provider, network, classes, granted, tokens, activeTokens, createTransaction,
|
safe, provider, network, classes, granted, tokens, activeTokens, createTransaction, updateSafeName,
|
||||||
} = this.props
|
} = this.props
|
||||||
const { tabIndex } = this.state
|
const { tabIndex } = this.state
|
||||||
|
|
||||||
|
@ -148,6 +148,7 @@ class Layout extends React.Component<Props, State> {
|
||||||
safeAddress={address}
|
safeAddress={address}
|
||||||
safeName={name}
|
safeName={name}
|
||||||
etherScanLink={etherScanLink}
|
etherScanLink={etherScanLink}
|
||||||
|
updateSafeName={updateSafeName}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
|
|
|
@ -1,10 +1,17 @@
|
||||||
// @flow
|
// @flow
|
||||||
import * as React from 'react'
|
import React, { useState } from 'react'
|
||||||
import { withStyles } from '@material-ui/core/styles'
|
import { withStyles } from '@material-ui/core/styles'
|
||||||
import Block from '~/components/layout/Block'
|
import Block from '~/components/layout/Block'
|
||||||
import Col from '~/components/layout/Col'
|
import Col from '~/components/layout/Col'
|
||||||
|
import Field from '~/components/forms/Field'
|
||||||
|
import {
|
||||||
|
composeValidators, required, minMaxLength,
|
||||||
|
} from '~/components/forms/validator'
|
||||||
|
import TextField from '~/components/forms/TextField'
|
||||||
|
import GnoForm from '~/components/forms/GnoForm'
|
||||||
import Row from '~/components/layout/Row'
|
import Row from '~/components/layout/Row'
|
||||||
import Paragraph from '~/components/layout/Paragraph'
|
import Paragraph from '~/components/layout/Paragraph'
|
||||||
|
import Hairline from '~/components/layout/Hairline'
|
||||||
import Button from '~/components/layout/Button'
|
import Button from '~/components/layout/Button'
|
||||||
import { sm, boldFont } from '~/theme/variables'
|
import { sm, boldFont } from '~/theme/variables'
|
||||||
import { styles } from './style'
|
import { styles } from './style'
|
||||||
|
@ -21,19 +28,45 @@ const saveButtonStyle = {
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
classes: Object,
|
classes: Object,
|
||||||
|
safeAddress: string,
|
||||||
|
safeName: string,
|
||||||
|
updateSafe: Funtion
|
||||||
}
|
}
|
||||||
|
|
||||||
class UpdateSafeName extends React.Component<Props, State> {
|
const UpdateSafeName = (props: Props) => {
|
||||||
render() {
|
const {
|
||||||
const { classes } = this.props
|
classes,
|
||||||
|
safeAddress,
|
||||||
|
safeName,
|
||||||
|
updateSafeName,
|
||||||
|
} = props
|
||||||
|
|
||||||
|
const handleSubmit = (values) => {
|
||||||
|
updateSafeName(safeAddress, values.safeName)
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<Block margin="lg">
|
<GnoForm onSubmit={handleSubmit}>
|
||||||
<Paragraph size="lg" color="primary" noMargin>
|
{() => (
|
||||||
Details
|
<React.Fragment>
|
||||||
|
<Block className={classes.formContainer}>
|
||||||
|
<Paragraph noMargin className={classes.title} size="lg">
|
||||||
|
Modify Safe name
|
||||||
</Paragraph>
|
</Paragraph>
|
||||||
|
<Block className={classes.root}>
|
||||||
|
<Field
|
||||||
|
name="safeName"
|
||||||
|
component={TextField}
|
||||||
|
type="text"
|
||||||
|
validate={composeValidators(required, minMaxLength(1, 50))}
|
||||||
|
placeholder="Safe name*"
|
||||||
|
text="Safe name*"
|
||||||
|
defaultValue={safeName}
|
||||||
|
/>
|
||||||
</Block>
|
</Block>
|
||||||
|
</Block>
|
||||||
|
<Hairline />
|
||||||
<Row style={controlsStyle} align="end" grow>
|
<Row style={controlsStyle} align="end" grow>
|
||||||
<Col end="xs">
|
<Col end="xs">
|
||||||
<Button
|
<Button
|
||||||
|
@ -42,15 +75,16 @@ class UpdateSafeName extends React.Component<Props, State> {
|
||||||
size="small"
|
size="small"
|
||||||
variant="contained"
|
variant="contained"
|
||||||
color="primary"
|
color="primary"
|
||||||
onClick={() => {}}
|
|
||||||
>
|
>
|
||||||
SAVE
|
SAVE
|
||||||
</Button>
|
</Button>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
|
)}
|
||||||
|
</GnoForm>
|
||||||
|
</React.Fragment>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
export default withStyles(styles)(UpdateSafeName)
|
export default withStyles(styles)(UpdateSafeName)
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// @flow
|
// @flow
|
||||||
import * as React from 'react'
|
import * as React from 'react'
|
||||||
|
import { connect } from 'react-redux'
|
||||||
import { withStyles } from '@material-ui/core/styles'
|
import { withStyles } from '@material-ui/core/styles'
|
||||||
import Block from '~/components/layout/Block'
|
import Block from '~/components/layout/Block'
|
||||||
import Col from '~/components/layout/Col'
|
import Col from '~/components/layout/Col'
|
||||||
|
@ -7,13 +8,15 @@ import Row from '~/components/layout/Row'
|
||||||
import RemoveSafeModal from './RemoveSafeModal'
|
import RemoveSafeModal from './RemoveSafeModal'
|
||||||
import Paragraph from '~/components/layout/Paragraph'
|
import Paragraph from '~/components/layout/Paragraph'
|
||||||
import Hairline from '~/components/layout/Hairline'
|
import Hairline from '~/components/layout/Hairline'
|
||||||
|
import UpdateSafeName from './UpdateSafeName'
|
||||||
|
import actions, { type Actions } from './actions'
|
||||||
import { styles } from './style'
|
import { styles } from './style'
|
||||||
|
|
||||||
type State = {
|
type State = {
|
||||||
showRemoveSafe: boolean,
|
showRemoveSafe: boolean,
|
||||||
}
|
}
|
||||||
|
|
||||||
type Props = {
|
type Props = Actions & {
|
||||||
classes: Object,
|
classes: Object,
|
||||||
granted: boolean,
|
granted: boolean,
|
||||||
etherScanLink: string,
|
etherScanLink: string,
|
||||||
|
@ -49,6 +52,7 @@ class Settings extends React.Component<Props, State> {
|
||||||
etherScanLink,
|
etherScanLink,
|
||||||
safeAddress,
|
safeAddress,
|
||||||
safeName,
|
safeName,
|
||||||
|
updateSafeName,
|
||||||
} = this.props
|
} = this.props
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -98,7 +102,11 @@ class Settings extends React.Component<Props, State> {
|
||||||
<Col xs={9} layout="column">
|
<Col xs={9} layout="column">
|
||||||
<Block className={classes.container}>
|
<Block className={classes.container}>
|
||||||
{menuOptionIndex === 1 && (
|
{menuOptionIndex === 1 && (
|
||||||
<p>To be done</p>
|
<UpdateSafeName
|
||||||
|
safeAddress={safeAddress}
|
||||||
|
safeName={safeName}
|
||||||
|
updateSafeName={updateSafeName}
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
{granted && menuOptionIndex === 2 && (
|
{granted && menuOptionIndex === 2 && (
|
||||||
<p>To be done</p>
|
<p>To be done</p>
|
||||||
|
@ -117,4 +125,9 @@ class Settings extends React.Component<Props, State> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default withStyles(styles)(Settings)
|
const settingsComponent = withStyles(styles)(Settings)
|
||||||
|
|
||||||
|
export default connect(
|
||||||
|
undefined,
|
||||||
|
actions,
|
||||||
|
)(settingsComponent)
|
||||||
|
|
Loading…
Reference in New Issue