d03bfe2ab8
commit242cfc4b06Author: Zoë Bijl <code@moiety.me> Date: Tue Oct 21 00:22:46 2025 +0200 [bugfix] tweak display name alignment commit23e5d9840fAuthor: Zoë Bijl <code@moiety.me> Date: Tue Oct 21 00:00:59 2025 +0200 [bugfix] improve display name alignment commit1664835c94Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 17:03:52 2025 +0200 [feature] add text-decoration to usernames and hashtags commitd4fdb18549Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 16:38:08 2025 +0200 [bugfix] correct spacing in status__content__spoiler commitc19307a115Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 16:28:30 2025 +0200 [feature] remove giant logo in multi-column view commit51e2c6e1c3Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 16:24:52 2025 +0200 [feature] add gts logo in the multi-column menu commitedc83b0f54Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 16:23:26 2025 +0200 [bugfix] fix width of fullwidth media gallery commit9923c1b6daAuthor: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 15:17:25 2025 +0200 [chore] remove `fixedWith` from icons commit935d6b73efAuthor: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 15:09:43 2025 +0200 [chore] lint commit776f02bd5fAuthor: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 15:07:52 2025 +0200 [bugfix] correctly align multiline column-header button commitd988d35671Author: Zoë Bijl <code@moiety.me> Date: Mon Oct 20 15:04:35 2025 +0200 [feat] add new size variables commit34bcbb669dAuthor: Zoë Bijl <code@moiety.me> Date: Sun Oct 19 23:47:20 2025 +0200 [bugfix] re-enable hicolor privacy icons commit97f2cb8f69Author: Zoë Bijl <code@moiety.me> Date: Sun Oct 19 23:26:16 2025 +0200 [bugfix] correctly align “toot” buttons commit52bcd4b6d0Author: Zoë Bijl <code@moiety.me> Date: Thu Oct 16 16:22:44 2025 +0200 [bugfix] replace `--size` with global `--size-icon` BREAKING CHANGE: any user styles that overwrote `--size` in a `,gts-icon` class will need to be updated. commit9812a2611fAuthor: Zoë Bijl <code@moiety.me> Date: Thu Oct 16 15:53:37 2025 +0200 [bugfix] further tweaks to `.poll__footer` alignment commit798d6fbf79Author: Zoë Bijl <code@moiety.me> Date: Thu Oct 16 15:38:45 2025 +0200 [bugfix] correctly align .poll__footer
264 lines
7.8 KiB
React
264 lines
7.8 KiB
React
import PropTypes from "prop-types";
|
|
|
|
import { defineMessages, injectIntl } from "react-intl";
|
|
|
|
import classNames from "classnames";
|
|
|
|
import ImmutablePropTypes from "react-immutable-proptypes";
|
|
import ImmutablePureComponent from "react-immutable-pure-component";
|
|
|
|
import ReactSwipeableViews from "react-swipeable-views";
|
|
|
|
import { getAverageFromBlurhash } from "flavours/glitch/blurhash";
|
|
import { GIFV } from "flavours/glitch/components/gifv";
|
|
import { Icon } from "flavours/glitch/components/icon";
|
|
import { IconButton } from "flavours/glitch/components/icon_button";
|
|
import Footer from "flavours/glitch/features/picture_in_picture/components/footer";
|
|
import Video from "flavours/glitch/features/video";
|
|
import { disableSwiping } from "flavours/glitch/initial_state";
|
|
|
|
import ImageLoader from "./image_loader";
|
|
|
|
const messages = defineMessages({
|
|
close: { id: "lightbox.close", defaultMessage: "Close" },
|
|
previous: { id: "lightbox.previous", defaultMessage: "Previous" },
|
|
next: { id: "lightbox.next", defaultMessage: "Next" },
|
|
});
|
|
|
|
class MediaModal extends ImmutablePureComponent {
|
|
|
|
static contextTypes = {
|
|
router: PropTypes.object,
|
|
};
|
|
|
|
static propTypes = {
|
|
media: ImmutablePropTypes.list.isRequired,
|
|
statusId: PropTypes.string,
|
|
lang: PropTypes.string,
|
|
index: PropTypes.number.isRequired,
|
|
onClose: PropTypes.func.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
onChangeBackgroundColor: PropTypes.func.isRequired,
|
|
currentTime: PropTypes.number,
|
|
autoPlay: PropTypes.bool,
|
|
volume: PropTypes.number,
|
|
};
|
|
|
|
state = {
|
|
index: null,
|
|
navigationHidden: false,
|
|
zoomButtonHidden: false,
|
|
};
|
|
|
|
handleSwipe = (index) => {
|
|
this.setState({ index: index % this.props.media.size });
|
|
};
|
|
|
|
handleTransitionEnd = () => {
|
|
this.setState({
|
|
zoomButtonHidden: false,
|
|
});
|
|
};
|
|
|
|
handleNextClick = () => {
|
|
this.setState({
|
|
index: (this.getIndex() + 1) % this.props.media.size,
|
|
zoomButtonHidden: true,
|
|
});
|
|
};
|
|
|
|
handlePrevClick = () => {
|
|
this.setState({
|
|
index: (this.props.media.size + this.getIndex() - 1) % this.props.media.size,
|
|
zoomButtonHidden: true,
|
|
});
|
|
};
|
|
|
|
handleChangeIndex = (e) => {
|
|
const index = Number(e.currentTarget.getAttribute("data-index"));
|
|
|
|
this.setState({
|
|
index: index % this.props.media.size,
|
|
zoomButtonHidden: true,
|
|
});
|
|
};
|
|
|
|
handleKeyDown = (e) => {
|
|
switch(e.key) {
|
|
case "ArrowLeft":
|
|
this.handlePrevClick();
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
break;
|
|
case "ArrowRight":
|
|
this.handleNextClick();
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
break;
|
|
}
|
|
};
|
|
|
|
componentDidMount () {
|
|
window.addEventListener("keydown", this.handleKeyDown, false);
|
|
this._sendBackgroundColor();
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
window.removeEventListener("keydown", this.handleKeyDown);
|
|
this.props.onChangeBackgroundColor(null);
|
|
}
|
|
|
|
getIndex () {
|
|
return this.state.index !== null ? this.state.index : this.props.index;
|
|
}
|
|
|
|
toggleNavigation = () => {
|
|
this.setState(prevState => ({
|
|
navigationHidden: !prevState.navigationHidden,
|
|
}));
|
|
};
|
|
|
|
componentDidUpdate (prevProps, prevState) {
|
|
if (prevState.index !== this.state.index) {
|
|
this._sendBackgroundColor();
|
|
}
|
|
}
|
|
|
|
_sendBackgroundColor () {
|
|
const { media, onChangeBackgroundColor } = this.props;
|
|
const index = this.getIndex();
|
|
const blurhash = media.getIn([index, "blurhash"]);
|
|
|
|
if (blurhash) {
|
|
const backgroundColor = getAverageFromBlurhash(blurhash);
|
|
onChangeBackgroundColor(backgroundColor);
|
|
}
|
|
}
|
|
|
|
render () {
|
|
const { media, statusId, lang, intl, onClose } = this.props;
|
|
const { navigationHidden } = this.state;
|
|
|
|
const index = this.getIndex();
|
|
|
|
const leftNav = media.size > 1 && <button tabIndex={0} className='media-modal__nav media-modal__nav--left' onClick={this.handlePrevClick} aria-label={intl.formatMessage(messages.previous)}><Icon id='caret-left' /></button>;
|
|
const rightNav = media.size > 1 && <button tabIndex={0} className='media-modal__nav media-modal__nav--right' onClick={this.handleNextClick} aria-label={intl.formatMessage(messages.next)}><Icon id='caret-right' /></button>;
|
|
|
|
const content = media.map((image) => {
|
|
const width = image.getIn(["meta", "original", "width"]) || null;
|
|
const height = image.getIn(["meta", "original", "height"]) || null;
|
|
const description = image.getIn(["translation", "description"]) || image.get("description");
|
|
|
|
if (image.get("type") === "image") {
|
|
return (
|
|
<ImageLoader
|
|
previewSrc={image.get("preview_url")}
|
|
src={image.get("url")}
|
|
width={width}
|
|
height={height}
|
|
alt={description}
|
|
lang={lang}
|
|
key={image.get("url")}
|
|
onClick={this.toggleNavigation}
|
|
zoomButtonHidden={this.state.zoomButtonHidden}
|
|
/>
|
|
);
|
|
} else if (image.get("type") === "video") {
|
|
const { currentTime, autoPlay, volume } = this.props;
|
|
|
|
return (
|
|
<Video
|
|
preview={image.get("preview_url")}
|
|
blurhash={image.get("blurhash")}
|
|
src={image.get("url")}
|
|
width={image.get("width")}
|
|
height={image.get("height")}
|
|
frameRate={image.getIn(["meta", "original", "frame_rate"])}
|
|
currentTime={currentTime || 0}
|
|
autoPlay={autoPlay || false}
|
|
volume={volume || 1}
|
|
onCloseVideo={onClose}
|
|
detailed
|
|
alt={description}
|
|
lang={lang}
|
|
key={image.get("url")}
|
|
/>
|
|
);
|
|
} else if (image.get("type") === "gifv") {
|
|
return (
|
|
<GIFV
|
|
src={image.get("url")}
|
|
width={width}
|
|
height={height}
|
|
key={image.get("url")}
|
|
alt={description}
|
|
lang={lang}
|
|
onClick={this.toggleNavigation}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}).toArray();
|
|
|
|
// you can't use 100vh, because the viewport height is taller
|
|
// than the visible part of the document in some mobile
|
|
// browsers when it's address bar is visible.
|
|
// https://developers.google.com/web/updates/2016/12/url-bar-resizing
|
|
const swipeableViewsStyle = {
|
|
width: "100%",
|
|
height: "100%",
|
|
};
|
|
|
|
const containerStyle = {
|
|
alignItems: "center", // center vertically
|
|
};
|
|
|
|
const navigationClassName = classNames("media-modal__navigation", {
|
|
"media-modal__navigation--hidden": navigationHidden,
|
|
});
|
|
|
|
let pagination;
|
|
|
|
if (media.size > 1) {
|
|
pagination = media.map((item, i) => (
|
|
<button key={i} className={classNames("media-modal__page-dot", { active: i === index })} data-index={i} onClick={this.handleChangeIndex}>
|
|
{i + 1}
|
|
</button>
|
|
));
|
|
}
|
|
|
|
return (
|
|
<div className='modal-root__modal media-modal'>
|
|
<div className='media-modal__closer' role='presentation' onClick={onClose} >
|
|
<ReactSwipeableViews
|
|
style={swipeableViewsStyle}
|
|
containerStyle={containerStyle}
|
|
onChangeIndex={this.handleSwipe}
|
|
onTransitionEnd={this.handleTransitionEnd}
|
|
index={index}
|
|
disabled={disableSwiping}
|
|
>
|
|
{content}
|
|
</ReactSwipeableViews>
|
|
</div>
|
|
|
|
<div className={navigationClassName}>
|
|
<IconButton className='media-modal__close' title={intl.formatMessage(messages.close)} icon='x' onClick={onClose} size={40} />
|
|
|
|
{leftNav}
|
|
{rightNav}
|
|
|
|
<div className='media-modal__overlay'>
|
|
{pagination && <ul className='media-modal__pagination'>{pagination}</ul>}
|
|
{statusId && <Footer statusId={statusId} withOpenButton onClose={onClose} />}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default injectIntl(MediaModal);
|