mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-25 11:43:42 +00:00
113 lines
4.4 KiB
JavaScript
113 lines
4.4 KiB
JavaScript
// Copyright (C) 2017-2020 Smart code 203358507
|
|
|
|
const React = require('react');
|
|
const PropTypes = require('prop-types');
|
|
const classnames = require('classnames');
|
|
const Icon = require('stremio-icons/dom');
|
|
const { Button, Image } = require('stremio/common');
|
|
const styles = require('./styles');
|
|
|
|
const Addon = ({ className, id, name, version, logo, description, types, installed, onToggle, onShare, dataset }) => {
|
|
const toggleButtonOnClick = React.useCallback((event) => {
|
|
if (typeof onToggle === 'function') {
|
|
onToggle({
|
|
type: 'toggle',
|
|
nativeEvent: event.nativeEvent,
|
|
reactEvent: event,
|
|
dataset: dataset
|
|
});
|
|
}
|
|
}, [onToggle, dataset]);
|
|
const shareButtonOnClick = React.useCallback((event) => {
|
|
if (typeof onShare === 'function') {
|
|
onShare({
|
|
type: 'share',
|
|
nativeEvent: event.nativeEvent,
|
|
reactEvent: event,
|
|
dataset: dataset
|
|
});
|
|
}
|
|
}, [onShare, dataset]);
|
|
const onKeyDown = React.useCallback((event) => {
|
|
if (event.key === 'Enter' && typeof onToggle === 'function') {
|
|
onToggle({
|
|
type: 'toggle',
|
|
nativeEvent: event.nativeEvent,
|
|
reactEvent: event,
|
|
dataset: dataset
|
|
});
|
|
}
|
|
}, [onToggle, dataset]);
|
|
const renderLogoFallback = React.useMemo(() => () => {
|
|
return (
|
|
<Icon className={styles['icon']} icon={'ic_addons'} />
|
|
);
|
|
}, []);
|
|
return (
|
|
<Button className={classnames(className, styles['addon-container'])} onKeyDown={onKeyDown}>
|
|
<div className={styles['logo-container']}>
|
|
<Image
|
|
className={styles['logo']}
|
|
src={logo}
|
|
alt={' '}
|
|
renderFallback={renderLogoFallback}
|
|
/>
|
|
</div>
|
|
<div className={styles['info-container']}>
|
|
<div className={styles['name-container']} title={typeof name === 'string' && name.length > 0 ? name : id}>
|
|
{typeof name === 'string' && name.length > 0 ? name : id}
|
|
</div>
|
|
{
|
|
typeof version === 'string' && version.length > 0 ?
|
|
<div className={styles['version-container']} title={`v.${version}`}>v.{version}</div>
|
|
:
|
|
null
|
|
}
|
|
{
|
|
Array.isArray(types) && types.length > 0 ?
|
|
<div className={styles['types-container']}>
|
|
{
|
|
types.length === 1 ?
|
|
types.join('')
|
|
:
|
|
types.slice(0, -1).join(', ') + ' & ' + types[types.length - 1]
|
|
}
|
|
</div>
|
|
:
|
|
null
|
|
}
|
|
{
|
|
typeof description === 'string' && description.length > 0 ?
|
|
<div className={styles['description-container']} title={description}>{description}</div>
|
|
:
|
|
null
|
|
}
|
|
</div>
|
|
<div className={styles['buttons-container']}>
|
|
<Button className={installed ? styles['uninstall-button-container'] : styles['install-button-container']} title={installed ? 'Uninstall' : 'Install'} tabIndex={-1} onClick={toggleButtonOnClick}>
|
|
<div className={styles['label']}>{installed ? 'Uninstall' : 'Install'}</div>
|
|
</Button>
|
|
<Button className={styles['share-button-container']} title={'SHARE ADDON'} tabIndex={-1} onClick={shareButtonOnClick}>
|
|
<Icon className={styles['icon']} icon={'ic_share'} />
|
|
<div className={styles['label']}>SHARE ADDON</div>
|
|
</Button>
|
|
</div>
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
Addon.propTypes = {
|
|
className: PropTypes.string,
|
|
id: PropTypes.string,
|
|
name: PropTypes.string,
|
|
version: PropTypes.string,
|
|
logo: PropTypes.string,
|
|
description: PropTypes.string,
|
|
types: PropTypes.arrayOf(PropTypes.string),
|
|
installed: PropTypes.bool,
|
|
onToggle: PropTypes.func,
|
|
onShare: PropTypes.func,
|
|
dataset: PropTypes.object
|
|
};
|
|
|
|
module.exports = Addon;
|