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
107 lines
3.3 KiB
React
107 lines
3.3 KiB
React
import PropTypes from "prop-types";
|
|
|
|
import { defineMessages, injectIntl } from "react-intl";
|
|
|
|
import classNames from "classnames";
|
|
|
|
import ImmutablePureComponent from "react-immutable-pure-component";
|
|
|
|
import { length } from "stringz";
|
|
|
|
import Button from "flavours/glitch/components/button";
|
|
import { Icon } from "flavours/glitch/components/icon";
|
|
import { maxChars } from "flavours/glitch/initial_state";
|
|
|
|
const messages = defineMessages({
|
|
publish: {
|
|
defaultMessage: "Promulgate",
|
|
id: "compose_form.publish",
|
|
},
|
|
publishLoud: {
|
|
defaultMessage: "{publish}!",
|
|
id: "compose_form.publish_loud",
|
|
},
|
|
saveChanges: { id: "compose_form.save_changes", defaultMessage: "Save changes" },
|
|
public: { id: "privacy.public.short", defaultMessage: "Public" },
|
|
unlisted: { id: "privacy.unlisted.short", defaultMessage: "Unlisted" },
|
|
private: { id: "privacy.private.short", defaultMessage: "Followers only" },
|
|
direct: { id: "privacy.direct.short", defaultMessage: "Mentioned people only" },
|
|
});
|
|
|
|
class Publisher extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
countText: PropTypes.string,
|
|
disabled: PropTypes.bool,
|
|
intl: PropTypes.object.isRequired,
|
|
onSecondarySubmit: PropTypes.func,
|
|
onSubmit: PropTypes.func,
|
|
privacy: PropTypes.oneOf(["direct", "private", "unlisted", "public"]),
|
|
sideArm: PropTypes.oneOf(["none", "direct", "private", "unlisted", "public"]),
|
|
isEditing: PropTypes.bool,
|
|
};
|
|
|
|
handleSubmit = () => {
|
|
this.props.onSubmit();
|
|
};
|
|
|
|
render () {
|
|
const { countText, disabled, intl, onSecondarySubmit, privacy, sideArm, isEditing } = this.props;
|
|
|
|
const diff = maxChars - length(countText || "");
|
|
const computedClass = classNames("compose-form__publish", {
|
|
disabled: disabled,
|
|
over: diff < 0,
|
|
});
|
|
|
|
const privacyIcons = { direct: "at", private: "lock-simple", public: "planet", unlisted: "lock-open-simple" };
|
|
|
|
let publishText;
|
|
if (isEditing) {
|
|
publishText = intl.formatMessage(messages.saveChanges);
|
|
} else if (privacy === "private" || privacy === "direct") {
|
|
const iconId = privacyIcons[privacy];
|
|
publishText = (
|
|
<>
|
|
<Icon id={iconId} />
|
|
<span>{intl.formatMessage(messages.publish)}</span>
|
|
</>
|
|
);
|
|
} else {
|
|
publishText = privacy !== "unlisted" ? intl.formatMessage(messages.publishLoud, { publish: intl.formatMessage(messages.publish) }) : intl.formatMessage(messages.publish);
|
|
}
|
|
|
|
const privacyNames = {
|
|
public: messages.public,
|
|
unlisted: messages.unlisted,
|
|
private: messages.private,
|
|
direct: messages.direct,
|
|
};
|
|
|
|
return (
|
|
<div className={computedClass}>
|
|
{sideArm && !isEditing && sideArm !== "none" ? (
|
|
<Button
|
|
className='side_arm'
|
|
disabled={disabled}
|
|
onClick={onSecondarySubmit}
|
|
style={{ padding: null }}
|
|
text={<Icon id={privacyIcons[sideArm]} />}
|
|
title={`${intl.formatMessage(messages.publish)}: ${intl.formatMessage(privacyNames[sideArm])}`}
|
|
/>
|
|
) : null}
|
|
<Button
|
|
className='primary'
|
|
text={publishText}
|
|
title={`${intl.formatMessage(messages.publish)}: ${intl.formatMessage(privacyNames[privacy])}`}
|
|
onClick={this.handleSubmit}
|
|
disabled={disabled}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default injectIntl(Publisher);
|