2022-05-04 17:09:48 +01:00
|
|
|
/*
|
2024-08-28 08:44:39 -04:00
|
|
|
Copyright 2024 New Vector Ltd
|
2022-05-04 17:09:48 +01:00
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
import { ComponentPropsWithoutRef, forwardRef } from "react";
|
|
|
|
|
import { Button } from "@vector-im/compound-web";
|
|
|
|
|
import { LocationDescriptor } from "history";
|
2022-06-11 23:21:20 +02:00
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
import { useLink } from "./Link";
|
2022-08-02 00:46:16 +02:00
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
type Props = Omit<
|
|
|
|
|
ComponentPropsWithoutRef<typeof Button<"a">>,
|
|
|
|
|
"as" | "href"
|
|
|
|
|
> & { to: LocationDescriptor };
|
2021-12-13 16:16:25 -08:00
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
/**
|
|
|
|
|
* A version of Compound's button component that acts as a link and integrates
|
|
|
|
|
* with our router setup.
|
|
|
|
|
*/
|
|
|
|
|
export const LinkButton = forwardRef<HTMLAnchorElement, Props>(
|
|
|
|
|
function LinkButton({ to, ...props }, ref) {
|
|
|
|
|
const [path, onClick] = useLink(to);
|
|
|
|
|
return <Button as="a" ref={ref} {...props} href={path} onClick={onClick} />;
|
|
|
|
|
},
|
|
|
|
|
);
|