2019-10-03 11:34:58 +10:00
|
|
|
import React from 'react';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Audio from 'mastodon/features/audio';
|
2020-07-11 06:09:28 +10:00
|
|
|
import { connect } from 'react-redux';
|
2019-10-03 11:34:58 +10:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2020-12-07 14:29:37 +11:00
|
|
|
import Footer from 'mastodon/features/picture_in_picture/components/footer';
|
2019-10-03 11:34:58 +10:00
|
|
|
|
2020-12-07 14:29:37 +11:00
|
|
|
const mapStateToProps = (state, { statusId }) => ({
|
|
|
|
accountStaticAvatar: state.getIn(['accounts', state.getIn(['statuses', statusId, 'account']), 'avatar_static']),
|
2020-07-11 06:09:28 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
export default @connect(mapStateToProps)
|
|
|
|
class AudioModal extends ImmutablePureComponent {
|
2019-10-03 11:34:58 +10:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
media: ImmutablePropTypes.map.isRequired,
|
2020-12-07 14:29:37 +11:00
|
|
|
statusId: PropTypes.string.isRequired,
|
|
|
|
accountStaticAvatar: PropTypes.string.isRequired,
|
2020-07-11 06:09:28 +10:00
|
|
|
options: PropTypes.shape({
|
|
|
|
autoPlay: PropTypes.bool,
|
|
|
|
}),
|
2019-10-03 11:34:58 +10:00
|
|
|
onClose: PropTypes.func.isRequired,
|
2020-12-07 14:29:37 +11:00
|
|
|
onChangeBackgroundColor: PropTypes.func.isRequired,
|
2019-10-03 11:34:58 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
2020-12-07 14:29:37 +11:00
|
|
|
const { media, accountStaticAvatar, statusId, onClose } = this.props;
|
2020-07-11 06:09:28 +10:00
|
|
|
const options = this.props.options || {};
|
2019-10-03 11:34:58 +10:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal audio-modal'>
|
|
|
|
<div className='audio-modal__container'>
|
|
|
|
<Audio
|
|
|
|
src={media.get('url')}
|
|
|
|
alt={media.get('description')}
|
|
|
|
duration={media.getIn(['meta', 'original', 'duration'], 0)}
|
2020-07-03 00:27:35 +10:00
|
|
|
height={150}
|
2020-12-07 14:29:37 +11:00
|
|
|
poster={media.get('preview_url') || accountStaticAvatar}
|
2020-07-06 02:28:25 +10:00
|
|
|
backgroundColor={media.getIn(['meta', 'colors', 'background'])}
|
|
|
|
foregroundColor={media.getIn(['meta', 'colors', 'foreground'])}
|
|
|
|
accentColor={media.getIn(['meta', 'colors', 'accent'])}
|
2020-07-11 06:09:28 +10:00
|
|
|
autoPlay={options.autoPlay}
|
2019-10-03 11:34:58 +10:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
2020-12-07 14:29:37 +11:00
|
|
|
<div className='media-modal__overlay'>
|
|
|
|
{statusId && <Footer statusId={statusId} withOpenButton onClose={onClose} />}
|
|
|
|
</div>
|
2019-10-03 11:34:58 +10:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|