This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
[MM-26465] Background and general layout for cloud onboarding #5823
Merged
devinbinnie
merged 16 commits into
mattermost:feature/cloud-onboarding
from
devinbinnie:MM-26465
Jul 13, 2020
Merged
Changes from 10 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6308348
WIP
devinbinnie a2450a8
WIP
devinbinnie d2bdbac
Merge remote-tracking branch 'upstream/master' into MM-26465
devinbinnie 6f376e3
[MM-26465] Background and general layout for cloud onboarding
devinbinnie 776823e
Mobile view, lint and type fixes, added a test file for later use
devinbinnie 630cc19
More test fixes
devinbinnie afa668e
UX feedback
devinbinnie 7f57467
Replaced dumb comment with useful one
devinbinnie 05521d8
Turn off graphic at 1020px
devinbinnie f3e5cd7
Lint fix
devinbinnie 268b8e8
Merge remote-tracking branch 'upstream/feature/cloud-onboarding' into…
devinbinnie 0af6f15
Merge branch 'feature/cloud-onboarding' into MM-26465
mattermod 60bbc22
Update copy
devinbinnie b270981
Merge branch 'feature/cloud-onboarding' into MM-26465
devinbinnie b36d2af
Merge branch 'feature/cloud-onboarding' into MM-26465
devinbinnie af19b4e
PR feedback
devinbinnie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
52 changes: 52 additions & 0 deletions
52
components/next_steps_view/__snapshots__/next_steps_view.test.tsx.snap
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,52 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`components/next_steps_view should match snapshot 1`] = ` | ||
<div | ||
className="app__content NextStepsView" | ||
id="app-content" | ||
> | ||
<div | ||
className="NextStepsView__header" | ||
> | ||
<div | ||
className="NextStepsView__header-headerText" | ||
> | ||
<div | ||
className="NextStepsView__header-headerTopText" | ||
> | ||
<FormattedMessage | ||
defaultMessage="Welcome to Mattermost" | ||
id="next_steps_view.welcomeToMattermost" | ||
values={Object {}} | ||
/> | ||
</div> | ||
<div | ||
className="NextStepsView__header-headerBottomText" | ||
> | ||
<FormattedMessage | ||
defaultMessage="Here are some recommended next steps to help you collaborate" | ||
id="next_steps_view.hereAreSomeNextSteps" | ||
values={Object {}} | ||
/> | ||
</div> | ||
</div> | ||
<div | ||
className="NextStepsView__header-logo" | ||
> | ||
<img | ||
src={null} | ||
/> | ||
</div> | ||
</div> | ||
<div | ||
className="NextStepsView__body" | ||
> | ||
<div | ||
className="NextStepsView__body-main" | ||
/> | ||
<div | ||
className="NextStepsView__body-graphic" | ||
/> | ||
</div> | ||
</div> | ||
`; |
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,31 @@ | ||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. | ||
// See LICENSE.txt for license information. | ||
|
||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. | ||
// See LICENSE.txt for license information. | ||
|
||
import {connect} from 'react-redux'; | ||
import {bindActionCreators, Dispatch} from 'redux'; | ||
|
||
import {getLicense} from 'mattermost-redux/selectors/entities/general'; | ||
|
||
import {GlobalState} from 'types/store'; | ||
|
||
import NextStepsView from './next_steps_view'; | ||
|
||
function mapStateToProps(state: GlobalState) { | ||
const license = getLicense(state); | ||
|
||
return { | ||
skuName: license.SkuShortName, | ||
}; | ||
} | ||
|
||
function mapDispatchToProps(dispatch: Dispatch) { | ||
return { | ||
actions: bindActionCreators({ | ||
}, dispatch), | ||
}; | ||
} | ||
jwilander marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
export default connect(mapStateToProps, mapDispatchToProps)(NextStepsView); |
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,88 @@ | ||
#app-content.NextStepsView { | ||
background-image: url(../../images/onboarding-bg.svg); | ||
background-repeat: no-repeat; | ||
background-position-y: bottom; | ||
background-position-x: -305px; | ||
background-size: calc(100% + 305px); | ||
} | ||
|
||
.NextStepsView__header { | ||
padding: 32px 40px; | ||
display: flex; | ||
} | ||
|
||
.NextStepsView__header-headerText { | ||
|
||
} | ||
deanwhillier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
.NextStepsView__header-headerTopText { | ||
font-weight: 600; | ||
font-size: 32px; | ||
line-height: 40px; | ||
letter-spacing: -0.02em; | ||
} | ||
|
||
.NextStepsView__header-headerBottomText { | ||
font-size: 16px; | ||
line-height: 24px; | ||
margin-top: 8px; | ||
} | ||
|
||
.NextStepsView__header-logo { | ||
margin-left: auto; | ||
deanwhillier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
align-self: center; | ||
} | ||
|
||
.NextStepsView__body { | ||
display: flex; | ||
height: 100%; | ||
} | ||
deanwhillier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
.NextStepsView__body-main { | ||
flex: 3 0 75%; | ||
} | ||
|
||
.NextStepsView__body-graphic { | ||
background-image: url(../../images/getting-started.svg); | ||
background-repeat: no-repeat; | ||
background-size: 120%; | ||
background-position-y: 33%; | ||
flex: 1 0 25%; | ||
z-index: 2; | ||
min-width: 192px; | ||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
#app-content.NextStepsView { | ||
background-size: auto; | ||
background-position-y: top; | ||
deanwhillier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
.NextStepsView__header { | ||
padding: 24px 28px; | ||
} | ||
|
||
.NextStepsView__header-headerTopText { | ||
font-size: 24px; | ||
line-height: 32px; | ||
} | ||
|
||
.NextStepsView__body-main { | ||
flex: 1 1 100%; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 1020px) { | ||
.NextStepsView__header-logo { | ||
display: none; | ||
} | ||
|
||
.NextStepsView__body-graphic { | ||
flex: 0 0 0%; | ||
min-width: 0; | ||
} | ||
|
||
.NextStepsView__body-main { | ||
min-width: 536px; | ||
} | ||
} |
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,21 @@ | ||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. | ||
// See LICENSE.txt for license information. | ||
|
||
import React from 'react'; | ||
import {shallow} from 'enzyme'; | ||
|
||
import NextStepsView from 'components/next_steps_view/next_steps_view'; | ||
|
||
describe('components/next_steps_view', () => { | ||
const baseProps = { | ||
skuName: '', | ||
}; | ||
|
||
test('should match snapshot', () => { | ||
const wrapper = shallow( | ||
<NextStepsView {...baseProps}/>, | ||
); | ||
|
||
expect(wrapper).toMatchSnapshot(); | ||
}); | ||
}); |
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,75 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// See LICENSE.txt for license information. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import React from 'react'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import {FormattedMessage} from 'react-intl'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import professionalLogo from 'images/cloud-logos/professional.svg'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import './next_steps_view.scss'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type Props = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
skuName: string; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export default class NextStepsView extends React.PureComponent<Props> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
getBottomText = () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// TODO: will be stored in user prefs at a later date | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const {isFinished} = {isFinished: false}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (isFinished) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
jwilander marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<FormattedMessage | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
id='next_steps_view.allSetToGo' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultMessage={'You\'re all set to go!'} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<FormattedMessage | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
id='next_steps_view.hereAreSomeNextSteps' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultMessage='Here are some recommended next steps to help you collaborate' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
getLogo = () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// TODO: Switch logos based on edition once we have the other logos | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
switch (this.props.skuName) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return professionalLogo; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
render() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
id='app-content' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
className='app__content NextStepsView' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div className='NextStepsView__header'> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div className='NextStepsView__header-headerText'> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div className='NextStepsView__header-headerTopText'> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<FormattedMessage | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
id='next_steps_view.welcomeToMattermost' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultMessage='Welcome to Mattermost' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div className='NextStepsView__header-headerBottomText'> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{this.getBottomText()} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div className='NextStepsView__header-logo'> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<img src={this.getLogo()}/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div className='NextStepsView__body'> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div className='NextStepsView__body-main'/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div className='NextStepsView__body-graphic'/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From my comment above:
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This copy changed to "Here are some recommended next steps to help you get started"