-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e90fb0
commit 7615ffe
Showing
18 changed files
with
759 additions
and
171 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
.msgs-start-panel { | ||
.button { | ||
display: block; | ||
} | ||
} |
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,56 @@ | ||
import React from 'react' | ||
import tt from 'counterpart' | ||
import {connect} from 'react-redux' | ||
|
||
import user from 'app/redux/UserReducer' | ||
import './StartPanel.scss' | ||
|
||
class StartPanel extends React.Component { | ||
constructor(props) { | ||
super(props) | ||
this.state = { | ||
} | ||
} | ||
|
||
startChat = (e) => { | ||
e.preventDefault() | ||
const inp = document.getElementsByClassName('conversation-search-input') | ||
if (!inp.length) { | ||
console.error('startChat - no conversation-search-input') | ||
return | ||
} | ||
if (inp.length > 1) { | ||
console.error('startChat - multiple conversation-search-input:', inp) | ||
return | ||
} | ||
inp[0].focus() | ||
} | ||
|
||
goCreateGroup = (e) => { | ||
e.preventDefault() | ||
this.props.showCreateGroup() | ||
} | ||
|
||
render() { | ||
return ( | ||
<div> | ||
<img className='msgs-empty-chat' src='/msg_empty.png' /> | ||
<div className='msgs-start-panel'> | ||
<button className='button' onClick={this.startChat}>{tt('msgs_start_panel.start_chat')}</button> | ||
<button className='button hollow' onClick={this.goCreateGroup}>{tt('msgs_start_panel.create_group')}</button> | ||
</div> | ||
</div> | ||
) | ||
} | ||
} | ||
|
||
export default connect( | ||
(state, ownProps) => { | ||
return { ...ownProps } | ||
}, | ||
dispatch => ({ | ||
showCreateGroup() { | ||
dispatch(user.actions.showCreateGroup()) | ||
}, | ||
}) | ||
)(StartPanel) |
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,28 @@ | ||
.Stepper { | ||
width: 100%; | ||
|
||
.step { | ||
display: inline-block; | ||
text-align: center; | ||
color: gray; | ||
font-size: 90%; | ||
.bar { | ||
background-color: gray; | ||
height: 8px; | ||
margin-top: 0.25rem; | ||
margin-bottom: 0.25rem; | ||
} | ||
|
||
&.left { | ||
.bar { | ||
background-color: #0078C4; | ||
} | ||
} | ||
&.current { | ||
color: #0078C4; | ||
.bar { | ||
background-color: #0078C4; | ||
} | ||
} | ||
} | ||
} |
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,57 @@ | ||
import React from 'react' | ||
|
||
import './Stepper.scss' | ||
|
||
class Stepper extends React.Component { | ||
constructor(props) { | ||
super(props) | ||
const { steps, startStep } = this.props | ||
const entr = Object.entries(steps) | ||
this.state = { | ||
currentStep: startStep || entr[0][0] | ||
} | ||
} | ||
|
||
nextStep = () => { | ||
const { steps } = this.props | ||
const entr = Object.entries(steps) | ||
const { currentStep } = this.state | ||
let found | ||
for (const [key, content] of entr) { | ||
if (found) { | ||
this.setState({ | ||
currentStep: key | ||
}) | ||
return key | ||
} | ||
found = key === currentStep | ||
} | ||
return currentStep | ||
} | ||
|
||
render() { | ||
const { steps } = this.props | ||
let { currentStep } = this.state | ||
|
||
const entr = Object.entries(steps) | ||
currentStep = currentStep || entr[0][0] | ||
const width = (100 / entr.length).toFixed(1) | ||
const stepObjs = [] | ||
let foundCurrent | ||
for (const [key, content] of entr) { | ||
const isCurrent = key === currentStep | ||
foundCurrent = foundCurrent || isCurrent | ||
const cn = foundCurrent ? (isCurrent ? 'current' : '') : 'left' | ||
stepObjs.push(<div className={'step ' + cn} style={{ minWidth: width + '%' }}> | ||
<div className={'bar'}></div> | ||
{content} | ||
</div>) | ||
} | ||
|
||
return <div className='Stepper'> | ||
{stepObjs} | ||
</div> | ||
} | ||
} | ||
|
||
export default Stepper |
Oops, something went wrong.