lbry-desktop/src/ui/component/subscribeButton/view.jsx

84 lines
2.2 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import * as MODALS from 'constants/modal_types';
import * as ICONS from 'constants/icons';
2019-06-28 09:33:07 +02:00
import React, { useState, useRef, useEffect } from 'react';
2018-11-21 22:20:55 +01:00
import { parseURI } from 'lbry-redux';
2018-03-26 23:32:43 +02:00
import Button from 'component/button';
type SubscribtionArgs = {
channelName: string,
uri: string,
};
type Props = {
2018-11-21 22:20:55 +01:00
uri: string,
2018-10-19 22:38:07 +02:00
isSubscribed: boolean,
subscriptions: Array<string>,
2018-03-26 23:32:43 +02:00
doChannelSubscribe: ({ channelName: string, uri: string }) => void,
doChannelUnsubscribe: SubscribtionArgs => void,
doOpenModal: (id: string) => void,
2018-11-21 22:20:55 +01:00
showSnackBarOnSubscribe: boolean,
doToast: ({ message: string }) => void,
2018-03-26 23:32:43 +02:00
};
2019-06-11 20:10:58 +02:00
export default function SubscribeButton(props: Props) {
2018-03-26 23:32:43 +02:00
const {
uri,
doChannelSubscribe,
doChannelUnsubscribe,
doOpenModal,
2018-10-19 22:38:07 +02:00
subscriptions,
isSubscribed,
2018-11-21 22:20:55 +01:00
showSnackBarOnSubscribe,
doToast,
2018-03-26 23:32:43 +02:00
} = props;
2019-06-28 09:33:07 +02:00
const buttonRef = useRef();
const [isHovering, setIsHovering] = useState(false);
const { claimName } = parseURI(uri);
const subscriptionHandler = isSubscribed ? doChannelUnsubscribe : doChannelSubscribe;
const subscriptionLabel = isSubscribed ? __('Following') : __('Follow');
2019-06-28 09:33:07 +02:00
const unfollowOverride = isSubscribed && isHovering && __('Unfollow');
2017-12-08 21:38:20 +01:00
2019-06-28 09:33:07 +02:00
useEffect(() => {
function handleHover() {
setIsHovering(!isHovering);
}
const button = buttonRef.current;
if (button) {
button.addEventListener('mouseover', handleHover);
button.addEventListener('mouseleave', handleHover);
return () => {
button.removeEventListener('mouseover', handleHover);
button.removeEventListener('mouseleave', handleHover);
};
}
}, [buttonRef, isHovering]);
2018-11-21 22:20:55 +01:00
return (
2018-03-26 23:32:43 +02:00
<Button
2019-06-28 09:33:07 +02:00
ref={buttonRef}
iconColor="red"
2019-06-28 09:33:07 +02:00
icon={unfollowOverride ? ICONS.UNSUBSCRIBE : ICONS.SUBSCRIBE}
2019-06-17 22:32:38 +02:00
button={'alt'}
2019-06-28 09:33:07 +02:00
label={unfollowOverride || subscriptionLabel}
onClick={e => {
e.stopPropagation();
if (!subscriptions.length) {
doOpenModal(MODALS.FIRST_SUBSCRIPTION);
2018-03-26 23:32:43 +02:00
}
2018-11-21 22:20:55 +01:00
2018-03-26 23:32:43 +02:00
subscriptionHandler({
2018-11-21 22:20:55 +01:00
channelName: claimName,
2018-03-26 23:32:43 +02:00
uri,
});
2018-11-21 22:20:55 +01:00
if (showSnackBarOnSubscribe) {
doToast({ message: `${__('Now following ')} ${claimName}!` });
2018-11-21 22:20:55 +01:00
}
2018-03-26 23:32:43 +02:00
}}
/>
2018-11-21 22:20:55 +01:00
);
2019-06-11 20:10:58 +02:00
}