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
149 lines
4.3 KiB
React
149 lines
4.3 KiB
React
// Package imports.
|
|
import PropTypes from "prop-types";
|
|
import { PureComponent } from "react";
|
|
|
|
import { defineMessages, injectIntl } from "react-intl";
|
|
|
|
import ImmutablePropTypes from "react-immutable-proptypes";
|
|
|
|
|
|
// Mastodon imports.
|
|
import { Icon } from "flavours/glitch/components/icon";
|
|
import { languages } from "flavours/glitch/initial_state";
|
|
|
|
import { IconButton } from "./icon_button";
|
|
import VisibilityIcon from "./status_visibility_icon";
|
|
|
|
// Messages for use with internationalization stuff.
|
|
const messages = defineMessages({
|
|
collapse: { id: "status.collapse", defaultMessage: "Collapse" },
|
|
uncollapse: { id: "status.uncollapse", defaultMessage: "Uncollapse" },
|
|
inReplyTo: { id: "status.in_reply_to", defaultMessage: "This toot is a reply" },
|
|
previewCard: { id: "status.has_preview_card", defaultMessage: "Features an attached preview card" },
|
|
pictures: { id: "status.has_pictures", defaultMessage: "Features attached pictures" },
|
|
poll: { id: "status.is_poll", defaultMessage: "This toot is a poll" },
|
|
video: { id: "status.has_video", defaultMessage: "Features attached videos" },
|
|
audio: { id: "status.has_audio", defaultMessage: "Features attached audio files" },
|
|
localOnly: { id: "status.local_only", defaultMessage: "Only visible from your instance" },
|
|
});
|
|
|
|
const LanguageIcon = ({ language }) => {
|
|
if (!languages) {
|
|
return null;
|
|
}
|
|
|
|
const lang = languages.find((lang) => lang[0] === language);
|
|
if (!lang) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<span className='text-icon' title={`${lang[2]} (${lang[1]})`} aria-hidden='true'>
|
|
{lang[0].toUpperCase()}
|
|
</span>
|
|
);
|
|
};
|
|
|
|
LanguageIcon.propTypes = {
|
|
language: PropTypes.string.isRequired,
|
|
};
|
|
|
|
class StatusIcons extends PureComponent {
|
|
|
|
static propTypes = {
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
mediaIcons: PropTypes.arrayOf(PropTypes.string),
|
|
collapsible: PropTypes.bool,
|
|
collapsed: PropTypes.bool,
|
|
setCollapsed: PropTypes.func.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
settings: ImmutablePropTypes.map.isRequired,
|
|
};
|
|
|
|
// Handles clicks on collapsed button
|
|
handleCollapsedClick = (e) => {
|
|
const { collapsed, setCollapsed } = this.props;
|
|
if (e.button === 0) {
|
|
setCollapsed(!collapsed);
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
|
|
mediaIconTitleText (mediaIcon) {
|
|
const { intl } = this.props;
|
|
|
|
const message = {
|
|
"link": messages.previewCard,
|
|
"picture-o": messages.pictures,
|
|
"tasks": messages.poll,
|
|
"video-camera": messages.video,
|
|
"music": messages.audio,
|
|
}[mediaIcon];
|
|
|
|
return message && intl.formatMessage(message);
|
|
}
|
|
|
|
renderIcon (mediaIcon) {
|
|
return (
|
|
<Icon
|
|
className='status__media-icon'
|
|
key={`media-icon--${mediaIcon}`}
|
|
id={mediaIcon}
|
|
aria-hidden='true'
|
|
title={this.mediaIconTitleText(mediaIcon)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
// Rendering.
|
|
render () {
|
|
const {
|
|
status,
|
|
mediaIcons,
|
|
collapsible,
|
|
collapsed,
|
|
settings,
|
|
intl,
|
|
} = this.props;
|
|
|
|
return (
|
|
<div className='status__info__icons'>
|
|
{settings.get("language") && status.get("language") && <LanguageIcon language={status.get("language")} />}
|
|
{settings.get("reply") && status.get("in_reply_to_id", null) !== null ? (
|
|
<Icon
|
|
className='status__reply-icon'
|
|
id='arrow-bend-double-up-left'
|
|
aria-hidden='true'
|
|
title={intl.formatMessage(messages.inReplyTo)}
|
|
/>
|
|
) : null}
|
|
{settings.get("local_only") && status.get("local_only") &&
|
|
<Icon
|
|
id='house-line'
|
|
aria-hidden='true'
|
|
title={intl.formatMessage(messages.localOnly)}
|
|
/>}
|
|
{settings.get("media") && !!mediaIcons && mediaIcons.map(icon => this.renderIcon(icon))}
|
|
{settings.get("visibility") && <VisibilityIcon visibility={status.get("visibility")} />}
|
|
{collapsible && (
|
|
<IconButton
|
|
className='status__collapse-button'
|
|
animate
|
|
active={collapsed}
|
|
title={
|
|
collapsed ?
|
|
intl.formatMessage(messages.uncollapse) :
|
|
intl.formatMessage(messages.collapse)
|
|
}
|
|
icon='caret-circle-double-up'
|
|
onClick={this.handleCollapsedClick}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default injectIntl(StatusIcons);
|