* wip * feat: first draft of auth.config * chore: auth methodS * chore: styling * styling, styling, styling * feat: Auth notices * chore: Remove server-rendered pages, move shared/components -> components * lint * cleanup * cleanup * fix: Remove unused component * fix: Ensure env variables in prod too * style tweaks * fix: Entering SSO email into login form fails fix: Tweak language around guest signin
41 lines
855 B
JavaScript
41 lines
855 B
JavaScript
// @flow
|
|
import * as React from "react";
|
|
import styled from "styled-components";
|
|
import { slackAuth } from "shared/utils/routeHelpers";
|
|
import SlackLogo from "components/SlackLogo";
|
|
import Button from "components/Button";
|
|
|
|
type Props = {
|
|
scopes?: string[],
|
|
redirectUri: string,
|
|
state: string,
|
|
label?: string,
|
|
};
|
|
|
|
function SlackButton({ state, scopes, redirectUri, label }: Props) {
|
|
const handleClick = () =>
|
|
(window.location.href = slackAuth(state, scopes, redirectUri));
|
|
|
|
return (
|
|
<Button
|
|
onClick={handleClick}
|
|
icon={<SpacedSlackLogo size={24} fill="#000" />}
|
|
neutral
|
|
>
|
|
{label ? (
|
|
label
|
|
) : (
|
|
<span>
|
|
Add to <strong>Slack</strong>
|
|
</span>
|
|
)}
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
const SpacedSlackLogo = styled(SlackLogo)`
|
|
padding-right: 4px;
|
|
`;
|
|
|
|
export default SlackButton;
|