Remove menu hover styles on mobile Fixed duplicate hover+active behavior on editor menus Fixed editor menus visibly scroll to the top when reopened Fixed some minor editor spacing issues Renamed shred routeHelpers -> urlHelpers
34 lines
735 B
TypeScript
34 lines
735 B
TypeScript
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { slackAuth } from "@shared/utils/urlHelpers";
|
|
import Button from "~/components/Button";
|
|
import env from "~/env";
|
|
|
|
type Props = {
|
|
scopes?: string[];
|
|
redirectUri: string;
|
|
icon?: React.ReactNode;
|
|
state?: string;
|
|
label?: string;
|
|
};
|
|
|
|
function SlackButton({ state = "", scopes, redirectUri, label, icon }: Props) {
|
|
const { t } = useTranslation();
|
|
|
|
const handleClick = () =>
|
|
(window.location.href = slackAuth(
|
|
state,
|
|
scopes,
|
|
env.SLACK_KEY,
|
|
redirectUri
|
|
));
|
|
|
|
return (
|
|
<Button onClick={handleClick} icon={icon} neutral>
|
|
{label || t("Add to Slack")}
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
export default SlackButton;
|