lbry-desktop/ui/component/publishPending/view.jsx

38 lines
992 B
React
Raw Normal View History

2020-05-07 14:22:55 +02:00
// @flow
import React from 'react';
import Lbry from 'lbry-redux';
import Button from 'component/button';
import Spinner from 'component/spinner';
2020-05-07 14:22:55 +02:00
type Props = {
reflectingInfo?: ReflectingUpdate,
checkReflecting: () => void,
};
const PublishPending = (props: Props) => {
const { reflectingInfo = {}, checkReflecting } = props;
const { fileListItem, progress, stalled } = reflectingInfo;
const sdHash = fileListItem && fileListItem.sd_hash;
const reflecting = Object.keys(reflectingInfo).length;
if (stalled) {
return (
<Button
button="link"
label={__('Upload stalled. Retry?')}
onClick={() => Lbry.file_reflect({ sd_hash: sdHash }).then(() => checkReflecting())}
/>
);
} else if (reflecting) {
return <span>{__('Uploading (%progress%%) ', { progress: progress })}</span>;
} else {
return (
<span>
{__('Confirming...')} <Spinner type="small" />
</span>
);
2020-05-07 14:22:55 +02:00
}
};
export default PublishPending;