41 lines
862 B
JavaScript
41 lines
862 B
JavaScript
// @flow
|
|
import * as React from "react";
|
|
import styled from "styled-components";
|
|
import { slackAuth } from "shared/utils/routeHelpers";
|
|
import SlackLogo from "shared/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;
|