2019-12-13 12:56:29 +05:30
|
|
|
import React, { useContext } from 'react';
|
2019-12-07 16:58:52 +05:30
|
|
|
import { FormattedMessage as Message, MessageDescriptor } from 'react-intl';
|
2019-12-13 12:56:29 +05:30
|
|
|
|
|
|
|
import Context, { AuthContext } from './Context';
|
2016-05-14 18:08:00 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
interface Props {
|
2019-12-13 12:56:29 +05:30
|
|
|
isAvailable?: (context: AuthContext) => boolean;
|
2019-12-07 16:58:52 +05:30
|
|
|
payload?: { [key: string]: any };
|
|
|
|
label: MessageDescriptor;
|
|
|
|
}
|
2016-05-14 18:08:00 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
export type RejectionLinkProps = Props;
|
2017-03-03 11:18:25 +05:30
|
|
|
|
2019-12-13 12:56:29 +05:30
|
|
|
function RejectionLink(props: Props) {
|
|
|
|
const context = useContext(Context);
|
2019-12-07 16:58:52 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
if (props.isAvailable && !props.isAvailable(context)) {
|
|
|
|
// TODO: if want to properly support multiple links, we should control
|
|
|
|
// the dividers ' | ' rendered from factory too
|
|
|
|
return null;
|
|
|
|
}
|
2017-03-03 11:18:25 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
return (
|
|
|
|
<a
|
|
|
|
href="#"
|
|
|
|
onClick={event => {
|
|
|
|
event.preventDefault();
|
2016-05-14 18:08:00 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
context.reject(props.payload);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Message {...props.label} />
|
|
|
|
</a>
|
|
|
|
);
|
2016-05-14 18:08:00 +05:30
|
|
|
}
|
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
export default RejectionLink;
|