Merge pull request #845 from vincentbavitz/clearnet
Disappearing messages in Channel Settings panel & SessionDropdownpull/842/head
commit
4fb178c092
@ -1,81 +1,95 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import classNames from 'classnames';
|
|
||||||
|
|
||||||
import { SessionIconType } from './icon/';
|
import { SessionIcon, SessionIconSize, SessionIconType } from './icon/';
|
||||||
import {
|
import {
|
||||||
SessionDropdownItem,
|
SessionDropdownItem,
|
||||||
SessionDropDownItemType,
|
SessionDropDownItemType,
|
||||||
} from './SessionDropdownItem';
|
} from './SessionDropdownItem';
|
||||||
|
|
||||||
// THIS IS A FUTURE-PROOFING ELEMENT TO REPLACE ELECTRON CONTEXTMENUS IN PRELOAD.JS
|
// THIS IS DROPDOWN ACCORDIAN STYLE OPTIONS SELECTOR ELEMENT, NOT A CONTEXTMENU
|
||||||
|
|
||||||
interface State {
|
interface State {
|
||||||
x: number;
|
expanded: boolean;
|
||||||
y: number;
|
|
||||||
isVisible: boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
id?: string;
|
label: string;
|
||||||
onClick?: any;
|
onClick?: any;
|
||||||
relativeTo: string | Array<number>;
|
expanded?: boolean;
|
||||||
items: Array<{
|
options: Array<{
|
||||||
content: string;
|
content: string;
|
||||||
id?: string;
|
id?: string;
|
||||||
icon?: SessionIconType | null;
|
icon?: SessionIconType | null;
|
||||||
type?: SessionDropDownItemType;
|
type?: SessionDropDownItemType;
|
||||||
active?: boolean;
|
active?: boolean;
|
||||||
onClick?: any;
|
onClick?: any;
|
||||||
display?: boolean;
|
|
||||||
}>;
|
}>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class SessionDropdown extends React.Component<Props, State> {
|
export class SessionDropdown extends React.Component<Props, State> {
|
||||||
|
public static defaultProps = {
|
||||||
|
expanded: false,
|
||||||
|
};
|
||||||
|
|
||||||
constructor(props: any) {
|
constructor(props: any) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
x: 0,
|
expanded: !!this.props.expanded,
|
||||||
y: 0,
|
|
||||||
isVisible: false,
|
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
|
||||||
public show() {
|
|
||||||
this.setState({
|
|
||||||
isVisible: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public hide() {
|
this.toggleDropdown = this.toggleDropdown.bind(this);
|
||||||
this.setState({
|
|
||||||
isVisible: false,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public render() {
|
public render() {
|
||||||
const { items } = this.props;
|
const { label, options } = this.props;
|
||||||
const { isVisible } = this.state;
|
const { expanded } = this.state;
|
||||||
|
const chevronOrientation = expanded ? 180 : 0;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classNames('session-dropdown')}>
|
<div className="session-dropdown">
|
||||||
<ul>
|
<div
|
||||||
{isVisible
|
className="session-dropdown__label"
|
||||||
? items.map((item: any) => {
|
onClick={this.toggleDropdown}
|
||||||
return item.display ? (
|
role="button"
|
||||||
<SessionDropdownItem
|
>
|
||||||
id={item.id}
|
{label}
|
||||||
content={item.content}
|
<SessionIcon
|
||||||
icon={item.icon}
|
iconType={SessionIconType.Chevron}
|
||||||
type={item.type}
|
iconSize={SessionIconSize.Small}
|
||||||
active={item.active}
|
iconRotation={chevronOrientation}
|
||||||
onClick={item.onClick}
|
/>
|
||||||
/>
|
</div>
|
||||||
) : null;
|
|
||||||
})
|
{expanded && (
|
||||||
: null}
|
<div className="session-dropdown__list-container">
|
||||||
</ul>
|
{options.map((item: any) => {
|
||||||
|
return (
|
||||||
|
<SessionDropdownItem
|
||||||
|
key={item.content}
|
||||||
|
content={item.content}
|
||||||
|
icon={item.icon}
|
||||||
|
type={item.type}
|
||||||
|
active={item.active}
|
||||||
|
onClick={() => {
|
||||||
|
this.handleItemClick(item.onClick);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public toggleDropdown() {
|
||||||
|
this.setState({
|
||||||
|
expanded: !this.state.expanded,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public handleItemClick(itemOnClickFn: any) {
|
||||||
|
this.setState({ expanded: false }, itemOnClickFn());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue