Merge pull request #205 from jorilallo/signed-in-state

Variety Bag of Fixes
This commit is contained in:
Tom Moor
2017-09-04 11:52:31 -07:00
committed by GitHub
12 changed files with 154 additions and 165 deletions

View File

@@ -12,7 +12,7 @@ const Container = styled.div`
`; `;
const Content = styled.div` const Content = styled.div`
max-width: 740px; max-width: 50em;
margin: 0 auto; margin: 0 auto;
`; `;

View File

@@ -22,6 +22,7 @@ const DropdownMenuItem = ({ onClick, children }: MenuItemProps) => {
type DropdownMenuProps = { type DropdownMenuProps = {
label: React.Element<any>, label: React.Element<any>,
children?: React.Element<any>, children?: React.Element<any>,
style?: Object,
}; };
@observer class DropdownMenu extends React.Component { @observer class DropdownMenu extends React.Component {
@@ -42,7 +43,7 @@ type DropdownMenuProps = {
</Label> </Label>
{this.menuOpen && {this.menuOpen &&
<Menu> <Menu style={this.props.style}>
{this.props.children} {this.props.children}
</Menu>} </Menu>}
</MenuContainer> </MenuContainer>
@@ -65,9 +66,7 @@ const Label = styled(Flex).attrs({
})` })`
cursor: pointer; cursor: pointer;
z-index: 1000; z-index: 1000;
min-height: 43px; min-height: 43px;
margin: 0 5px;
`; `;
const MenuContainer = styled.div` const MenuContainer = styled.div`

View File

@@ -1,9 +1,9 @@
.editor { .editor {
font-weight: 400; font-weight: 400;
font-size: 1em; font-size: 1em;
line-height: 1.5em; line-height: 1.7em;
width: 100%; width: 100%;
color: #1b2631; color: #1b2830;
h1, h1,
h2, h2,

View File

@@ -10,11 +10,11 @@ import keydown from 'react-keydown';
import Flex from 'components/Flex'; import Flex from 'components/Flex';
import { color, layout } from 'styles/constants'; import { color, layout } from 'styles/constants';
import { documentEditUrl, homeUrl, searchUrl } from 'utils/routeHelpers'; import { documentEditUrl, homeUrl, searchUrl } from 'utils/routeHelpers';
import { DropdownMenu, DropdownMenuItem } from 'components/DropdownMenu'; import { DropdownMenu, DropdownMenuItem } from 'components/DropdownMenu';
import Avatar from 'components/Avatar';
import { LoadingIndicatorBar } from 'components/LoadingIndicator'; import { LoadingIndicatorBar } from 'components/LoadingIndicator';
import Scrollable from 'components/Scrollable'; import Scrollable from 'components/Scrollable';
import Avatar from 'components/Avatar';
import Modal from 'components/Modal'; import Modal from 'components/Modal';
import AddIcon from 'components/Icon/AddIcon'; import AddIcon from 'components/Icon/AddIcon';
import MoreIcon from 'components/Icon/MoreIcon'; import MoreIcon from 'components/Icon/MoreIcon';
@@ -26,8 +26,8 @@ import Settings from 'scenes/Settings';
import SidebarCollection from './components/SidebarCollection'; import SidebarCollection from './components/SidebarCollection';
import SidebarCollectionList from './components/SidebarCollectionList'; import SidebarCollectionList from './components/SidebarCollectionList';
import SidebarLink from './components/SidebarLink'; import SidebarLink from './components/SidebarLink';
import HeaderBlock from './components/HeaderBlock';
import UserStore from 'stores/UserStore';
import AuthStore from 'stores/AuthStore'; import AuthStore from 'stores/AuthStore';
import UiStore from 'stores/UiStore'; import UiStore from 'stores/UiStore';
import CollectionsStore from 'stores/CollectionsStore'; import CollectionsStore from 'stores/CollectionsStore';
@@ -40,7 +40,6 @@ type Props = {
children?: ?React.Element<any>, children?: ?React.Element<any>,
actions?: ?React.Element<any>, actions?: ?React.Element<any>,
title?: ?React.Element<any>, title?: ?React.Element<any>,
user: UserStore,
auth: AuthStore, auth: AuthStore,
ui: UiStore, ui: UiStore,
search: ?boolean, search: ?boolean,
@@ -108,7 +107,8 @@ type Props = {
}; };
render() { render() {
const { user, auth, documents, collections, history, ui } = this.props; const { auth, documents, collections, history, ui } = this.props;
const { user, team } = auth;
return ( return (
<Container column auto> <Container column auto>
@@ -129,12 +129,16 @@ type Props = {
<Flex auto> <Flex auto>
{auth.authenticated && {auth.authenticated &&
user && user &&
team &&
<Sidebar column editMode={ui.editMode}> <Sidebar column editMode={ui.editMode}>
<Header justify="space-between"> <DropdownMenu
<Flex align="center"> style={{ marginRight: 10, marginTop: -10 }}
<LogoLink to="/">Atlas</LogoLink> label={
</Flex> <HeaderBlock user={user} team={team}>
<DropdownMenu label={<Avatar src={user.user.avatarUrl} />}> <Avatar src={user.avatarUrl} />
</HeaderBlock>
}
>
<DropdownMenuItem onClick={this.handleOpenSettings}> <DropdownMenuItem onClick={this.handleOpenSettings}>
Settings Settings
</DropdownMenuItem> </DropdownMenuItem>
@@ -148,15 +152,12 @@ type Props = {
Logout Logout
</DropdownMenuItem> </DropdownMenuItem>
</DropdownMenu> </DropdownMenu>
</Header>
<Flex column> <Flex column>
<Scrollable> <Scrollable>
<LinkSection>
<SidebarLink to="/search">Search</SidebarLink>
</LinkSection>
<LinkSection> <LinkSection>
<SidebarLink to="/dashboard">Home</SidebarLink> <SidebarLink to="/dashboard">Home</SidebarLink>
<SidebarLink to="/search">Search</SidebarLink>
<SidebarLink to="/starred">Starred</SidebarLink> <SidebarLink to="/starred">Starred</SidebarLink>
</LinkSection> </LinkSection>
<LinkSection> <LinkSection>
@@ -228,7 +229,7 @@ type Props = {
const CollectionAction = styled.a` const CollectionAction = styled.a`
position: absolute; position: absolute;
top: 8px; top: -2px;
right: ${layout.hpadding}; right: ${layout.hpadding};
svg { svg {
@@ -250,46 +251,28 @@ const Container = styled(Flex)`
height: 100%; height: 100%;
`; `;
const LogoLink = styled(Link)` const Content = styled(Flex)`
margin-top: 15px; margin-left: ${props => (props.editMode ? 0 : layout.sidebarWidth)};
font-family: 'Atlas Grotesk'; transition: margin-left 200ms ease-in-out;
font-weight: bold;
color: ${color.text};
text-decoration: none;
font-size: 16px;
`; `;
const MenuLink = styled(Link)` const MenuLink = styled(Link)`
color: ${color.text}; color: ${color.text};
`; `;
const Content = styled(Flex)` const Sidebar = styled(Flex)`
overflow: scroll; position: fixed;
position: absolute;
top: 0; top: 0;
bottom: 0; bottom: 0;
right: 0; left: ${props => (props.editMode ? `-${layout.sidebarWidth}` : 0)};
left: ${props => (props.editMode ? 0 : layout.sidebarWidth)};
transition: left 200ms ease-in-out;
`;
const Sidebar = styled(Flex)`
width: ${layout.sidebarWidth}; width: ${layout.sidebarWidth};
margin-left: ${props => (props.editMode ? `-${layout.sidebarWidth}` : 0)}; background: ${color.smoke};
background: rgba(250, 251, 252, 0.71); transition: left 200ms ease-in-out;
border-right: 1px solid #eceff3;
transition: margin-left 200ms ease-in-out;
`;
const Header = styled(Flex)`
flex-shrink: 0;
padding: ${layout.padding};
padding-bottom: 10px;
`; `;
const LinkSection = styled(Flex)` const LinkSection = styled(Flex)`
flex-direction: column; flex-direction: column;
padding: 10px 0; margin: 24px 0;
position: relative; position: relative;
`; `;

View File

@@ -0,0 +1,61 @@
// @flow
import React from 'react';
import styled from 'styled-components';
import { color, layout } from 'styles/constants';
import type { User, Team } from 'types';
import Flex from 'components/Flex';
type Props = {
user: User,
team: Team,
children?: React$Element<any>,
};
function HeaderBlock({ user, team, children }: Props) {
return (
<Header justify="space-between" align="center">
<Flex align="center" column>
<TeamName>{team.name}</TeamName>
<UserName>{user.name}</UserName>
</Flex>
{children}
</Header>
);
}
const UserName = styled.div`
font-size: 13px;
`;
const TeamName = styled.div`
font-family: 'Atlas Grotesk';
font-weight: bold;
color: ${color.text};
text-decoration: none;
font-size: 16px;
`;
const Header = styled(Flex)`
flex-shrink: 0;
padding: ${layout.padding};
position: relative;
cursor: pointer;
width: 100%;
&:active,
&:hover {
background: rgba(0,0,0,.05);
}
&::after {
content: "";
left: ${layout.hpadding};
right: ${layout.hpadding};
background: rgba(0,0,0,.075);
height: 1px;
position: absolute;
bottom: 0;
}
`;
export default HeaderBlock;

View File

@@ -17,6 +17,7 @@ const StyledNavLink = styled(NavLink)`
display: block; display: block;
padding: 5px ${layout.hpadding}; padding: 5px ${layout.hpadding};
color: ${color.slateDark}; color: ${color.slateDark};
font-size: 15px;
&:hover { &:hover {
color: ${darken(0.1, color.slateDark)}; color: ${darken(0.1, color.slateDark)};

View File

@@ -51,23 +51,22 @@ type AuthProps = {
}; };
const Auth = ({ children }: AuthProps) => { const Auth = ({ children }: AuthProps) => {
if (stores.auth.authenticated && stores.auth.team) { if (stores.auth.authenticated && stores.auth.team && stores.auth.user) {
// Only initialize stores once. Kept in global scope // Only initialize stores once. Kept in global scope
// because otherwise they will get overriden on route // because otherwise they will get overriden on route
// change // change
if (!authenticatedStores) { if (!authenticatedStores) {
// Stores for authenticated user // Stores for authenticated user
const user = stores.auth.getUserStore(); const { user, team } = stores.auth;
const cache = new CacheStore(user.user.id); const cache = new CacheStore(user.id);
authenticatedStores = { authenticatedStores = {
user,
documents: new DocumentsStore({ documents: new DocumentsStore({
ui: stores.ui, ui: stores.ui,
cache, cache,
}), }),
collections: new CollectionsStore({ collections: new CollectionsStore({
ui: stores.ui, ui: stores.ui,
teamId: user.team.id, teamId: team.id,
cache, cache,
}), }),
}; };

View File

@@ -2,7 +2,6 @@
import { observable, action, computed, autorunAsync } from 'mobx'; import { observable, action, computed, autorunAsync } from 'mobx';
import invariant from 'invariant'; import invariant from 'invariant';
import { client } from 'utils/ApiClient'; import { client } from 'utils/ApiClient';
import UserStore from 'stores/UserStore';
import type { User, Team } from 'types'; import type { User, Team } from 'types';
const AUTH_STORE = 'AUTH_STORE'; const AUTH_STORE = 'AUTH_STORE';
@@ -72,17 +71,6 @@ class AuthStore {
}; };
}; };
getUserStore(): UserStore {
invariant(
this.user && this.team,
'Tried to create a user store without data'
);
return new UserStore({
user: this.user,
team: this.team,
});
}
constructor() { constructor() {
// Rehydrate // Rehydrate
const data = JSON.parse(localStorage.getItem(AUTH_STORE) || '{}'); const data = JSON.parse(localStorage.getItem(AUTH_STORE) || '{}');

View File

@@ -1,32 +0,0 @@
// @flow
import { observable, computed } from 'mobx';
import type { User, Team } from 'types';
type Options = {
user: User,
team: Team,
};
class UserStore {
@observable user: User;
@observable team: Team;
@observable isLoading: boolean = false;
/* Computed */
@computed get asJson(): string {
return JSON.stringify({
user: this.user,
team: this.team,
});
}
constructor(options: Options) {
// Rehydrate
this.user = options.user;
this.team = options.team;
}
}
export default UserStore;

View File

@@ -21,17 +21,12 @@ html, body, .viewport {
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 15px; font-size: 16px;
line-height: 1.5; line-height: 1.5;
margin: 0; margin: 0;
color: #617180; color: #617180;
background-color: #fff; background-color: #fff;
display: flex; display: flex;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;

View File

@@ -1,11 +1,9 @@
// @flow // @flow
import Router from 'koa-router'; import Router from 'koa-router';
import apiError, { httpErrors } from '../errors'; import apiError from '../errors';
import fetch from 'isomorphic-fetch';
import querystring from 'querystring';
import { presentUser, presentTeam } from '../presenters'; import { presentUser, presentTeam } from '../presenters';
import { User, Team } from '../models'; import { User, Team } from '../models';
import * as Slack from '../slack';
const router = new Router(); const router = new Router();
@@ -88,24 +86,7 @@ router.post('auth.slack', async ctx => {
const { code } = ctx.body; const { code } = ctx.body;
ctx.assertPresent(code, 'code is required'); ctx.assertPresent(code, 'code is required');
const body = { const data = await Slack.oauthAccess(code);
client_id: process.env.SLACK_KEY,
client_secret: process.env.SLACK_SECRET,
redirect_uri: `${process.env.URL || ''}/auth/slack`,
code,
};
let data;
try {
const response = await fetch(
`https://slack.com/api/oauth.access?${querystring.stringify(body)}`
);
data = await response.json();
} catch (e) {
throw httpErrors.BadRequest();
}
if (!data.ok) throw httpErrors.BadRequest(data.error);
// Temp to block // Temp to block
const allowedSlackDomains = (process.env.ALLOWED_SLACK_DOMAINS || '') const allowedSlackDomains = (process.env.ALLOWED_SLACK_DOMAINS || '')
@@ -118,22 +99,20 @@ router.post('auth.slack', async ctx => {
); );
} }
// User
let user = await User.findOne({ where: { slackId: data.user.id } }); let user = await User.findOne({ where: { slackId: data.user.id } });
// Team
let team = await Team.findOne({ where: { slackId: data.team.id } }); let team = await Team.findOne({ where: { slackId: data.team.id } });
const teamExisted = !!team; const teamExisted = !!team;
if (!team) {
if (team) {
team.name = data.team.name;
team.slackData = data.team;
await team.save();
} else {
team = await Team.create({ team = await Team.create({
name: data.team.name, name: data.team.name,
slackId: data.team.id, slackId: data.team.id,
slackData: data.team, slackData: data.team,
}); });
} else {
team.name = data.team.name;
team.slackData = data.team;
team = await team.save();
} }
if (user) { if (user) {
@@ -143,7 +122,6 @@ router.post('auth.slack', async ctx => {
} else { } else {
user = await User.create({ user = await User.create({
slackId: data.user.id, slackId: data.user.id,
username: data.user.name,
name: data.user.name, name: data.user.name,
email: data.user.email, email: data.user.email,
teamId: team.id, teamId: team.id,
@@ -169,24 +147,7 @@ router.post('auth.slackCommands', async ctx => {
const { code } = ctx.body; const { code } = ctx.body;
ctx.assertPresent(code, 'code is required'); ctx.assertPresent(code, 'code is required');
const body = { await Slack.oauthAccess(code, `${process.env.URL || ''}/auth/slack/commands`);
client_id: process.env.SLACK_KEY,
client_secret: process.env.SLACK_SECRET,
redirect_uri: `${process.env.URL || ''}/auth/slack/commands`,
code,
};
let data;
try {
const response = await fetch(
`https://slack.com/api/oauth.access?${querystring.stringify(body)}`
);
data = await response.json();
} catch (e) {
throw httpErrors.BadRequest();
}
if (!data.ok) throw httpErrors.BadRequest(data.error);
}); });
export default router; export default router;

34
server/slack.js Normal file
View File

@@ -0,0 +1,34 @@
// @flow
import fetch from 'isomorphic-fetch';
import querystring from 'querystring';
import { httpErrors } from './errors';
const SLACK_API_URL = 'https://slack.com/api';
export async function request(endpoint: string, body: Object) {
let data;
try {
const response = await fetch(
`${SLACK_API_URL}/${endpoint}?${querystring.stringify(body)}`
);
data = await response.json();
} catch (e) {
throw httpErrors.BadRequest();
}
console.log('DATA', data);
if (!data.ok) throw httpErrors.BadRequest(data.error);
return data;
}
export async function oauthAccess(
code: string,
redirect_uri: string = `${process.env.URL || ''}/auth/slack`
) {
return request('oauth.access', {
client_id: process.env.SLACK_KEY,
client_secret: process.env.SLACK_SECRET,
redirect_uri: `${process.env.URL || ''}/auth/slack`,
code,
});
}