Quote posts: Shift+Click for normal repost

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
merge-requests/1005/head
marcin mikołajczak 2022-01-25 22:59:26 +01:00
rodzic d36f0f7aae
commit 8277d78f4c
3 zmienionych plików z 12 dodań i 4 usunięć

Wyświetl plik

@ -220,6 +220,7 @@ export default class Dropdown extends React.PureComponent {
openDropdownId: PropTypes.number,
openedViaKeyboard: PropTypes.bool,
text: PropTypes.string,
onShiftClick: PropTypes.func,
};
static defaultProps = {
@ -230,14 +231,19 @@ export default class Dropdown extends React.PureComponent {
id: id++,
};
handleClick = ({ target, type }) => {
if (this.state.id === this.props.openDropdownId) {
handleClick = e => {
const { onOpen, onShiftClick, openDropdownId } = this.props;
if (onShiftClick && e.shiftKey) {
e.preventDefault();
onShiftClick(e);
} else if (this.state.id === openDropdownId) {
this.handleClose();
} else {
const { top } = target.getBoundingClientRect();
const { top } = e.target.getBoundingClientRect();
const placement = top * 2 < innerHeight ? 'bottom' : 'top';
this.props.onOpen(this.state.id, this.handleItemClick, placement, type !== 'click');
onOpen(this.state.id, this.handleItemClick, placement, e.type !== 'click');
}
}

Wyświetl plik

@ -566,6 +566,7 @@ class StatusActionBar extends ImmutablePureComponent {
title={!publicStatus ? intl.formatMessage(messages.cannot_reblog) : intl.formatMessage(messages.reblog)}
src={reblogIcon}
direction='right'
onShiftClick={this.handleReblogClick}
/>
);
} else {

Wyświetl plik

@ -523,6 +523,7 @@ class ActionBar extends React.PureComponent {
src={reblogIcon}
direction='right'
text={intl.formatMessage(messages.reblog)}
onShiftClick={this.handleReblogClick}
/>
);
} else {