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
201 lines
4.9 KiB
React
201 lines
4.9 KiB
React
// Package imports.
|
|
import PropTypes from "prop-types";
|
|
import { PureComponent } from "react";
|
|
|
|
import classNames from "classnames";
|
|
|
|
import { supportsPassiveEvents } from "detect-passive-events";
|
|
|
|
// Components.
|
|
import { Icon } from "flavours/glitch/components/icon";
|
|
|
|
const listenerOptions = supportsPassiveEvents ? { passive: true, capture: true } : true;
|
|
|
|
// The component.
|
|
export default class ComposerOptionsDropdownContent extends PureComponent {
|
|
|
|
static propTypes = {
|
|
items: PropTypes.arrayOf(PropTypes.shape({
|
|
icon: PropTypes.string,
|
|
meta: PropTypes.node,
|
|
name: PropTypes.string.isRequired,
|
|
text: PropTypes.node,
|
|
})),
|
|
onChange: PropTypes.func.isRequired,
|
|
onClose: PropTypes.func.isRequired,
|
|
style: PropTypes.object,
|
|
value: PropTypes.string,
|
|
renderItemContents: PropTypes.func,
|
|
openedViaKeyboard: PropTypes.bool,
|
|
closeOnChange: PropTypes.bool,
|
|
};
|
|
|
|
static defaultProps = {
|
|
style: {},
|
|
closeOnChange: true,
|
|
};
|
|
|
|
state = {
|
|
value: this.props.openedViaKeyboard ? this.props.items[0].name : undefined,
|
|
};
|
|
|
|
// When the document is clicked elsewhere, we close the dropdown.
|
|
handleDocumentClick = (e) => {
|
|
if (this.node && !this.node.contains(e.target)) {
|
|
this.props.onClose();
|
|
e.stopPropagation();
|
|
}
|
|
};
|
|
|
|
// Stores our node in `this.node`.
|
|
setRef = (node) => {
|
|
this.node = node;
|
|
};
|
|
|
|
// On mounting, we add our listeners.
|
|
componentDidMount () {
|
|
document.addEventListener("click", this.handleDocumentClick, { capture: true });
|
|
document.addEventListener("touchend", this.handleDocumentClick, listenerOptions);
|
|
if (this.focusedItem) {
|
|
this.focusedItem.focus({ preventScroll: true });
|
|
} else {
|
|
this.node.firstChild.focus({ preventScroll: true });
|
|
}
|
|
}
|
|
|
|
// On unmounting, we remove our listeners.
|
|
componentWillUnmount () {
|
|
document.removeEventListener("click", this.handleDocumentClick, { capture: true });
|
|
document.removeEventListener("touchend", this.handleDocumentClick, listenerOptions);
|
|
}
|
|
|
|
handleClick = (e) => {
|
|
const i = Number(e.currentTarget.getAttribute("data-index"));
|
|
|
|
const {
|
|
onChange,
|
|
onClose,
|
|
closeOnChange,
|
|
items,
|
|
} = this.props;
|
|
|
|
const { name } = items[i];
|
|
|
|
e.preventDefault(); // Prevents change in focus on click
|
|
if (closeOnChange) {
|
|
onClose();
|
|
}
|
|
onChange(name);
|
|
};
|
|
|
|
// Handle changes differently whether the dropdown is a list of options or actions
|
|
handleChange = (name) => {
|
|
if (this.props.value) {
|
|
this.props.onChange(name);
|
|
} else {
|
|
this.setState({ value: name });
|
|
}
|
|
};
|
|
|
|
handleKeyDown = (e) => {
|
|
const index = Number(e.currentTarget.getAttribute("data-index"));
|
|
const { items } = this.props;
|
|
let element = null;
|
|
|
|
switch(e.key) {
|
|
case "Escape":
|
|
this.props.onClose();
|
|
break;
|
|
case "Enter":
|
|
case " ":
|
|
this.handleClick(e);
|
|
break;
|
|
case "ArrowDown":
|
|
element = this.node.childNodes[index + 1] || this.node.firstChild;
|
|
break;
|
|
case "ArrowUp":
|
|
element = this.node.childNodes[index - 1] || this.node.lastChild;
|
|
break;
|
|
case "Tab":
|
|
if (e.shiftKey) {
|
|
element = this.node.childNodes[index - 1] || this.node.lastChild;
|
|
} else {
|
|
element = this.node.childNodes[index + 1] || this.node.firstChild;
|
|
}
|
|
break;
|
|
case "Home":
|
|
element = this.node.firstChild;
|
|
break;
|
|
case "End":
|
|
element = this.node.lastChild;
|
|
break;
|
|
}
|
|
|
|
if (element) {
|
|
element.focus();
|
|
this.handleChange(items[Number(element.getAttribute("data-index"))].name);
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
}
|
|
};
|
|
|
|
setFocusRef = c => {
|
|
this.focusedItem = c;
|
|
};
|
|
|
|
renderItem = (item, i) => {
|
|
const { name, icon, meta, text } = item;
|
|
|
|
const active = (name === (this.props.value || this.state.value));
|
|
|
|
const computedClass = classNames("privacy-dropdown__option", { active });
|
|
|
|
let contents = this.props.renderItemContents && this.props.renderItemContents(item, i);
|
|
|
|
if (!contents) {
|
|
contents = (
|
|
<>
|
|
{icon && <Icon className='icon' id={icon} />}
|
|
|
|
<div className='privacy-dropdown__option__content'>
|
|
<strong>{text}</strong>
|
|
{meta}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={computedClass}
|
|
onClick={this.handleClick}
|
|
onKeyDown={this.handleKeyDown}
|
|
role='option'
|
|
aria-selected={active}
|
|
tabIndex={0}
|
|
key={name}
|
|
data-index={i}
|
|
ref={active ? this.setFocusRef : null}
|
|
>
|
|
{contents}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
// Rendering.
|
|
render () {
|
|
const {
|
|
items,
|
|
style,
|
|
} = this.props;
|
|
|
|
// The result.
|
|
return (
|
|
<div style={{ ...style }} role='listbox' ref={this.setRef}>
|
|
{!!items && items.map((item, i) => this.renderItem(item, i))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|