Merge pull request #6025 from BobakOftadeh/chat-width-increased-window

Extended the Width of the Chat Area
This commit is contained in:
Anton Georgiev 2018-09-19 13:05:06 -04:00 committed by GitHub
commit fd02b04a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -227,12 +227,9 @@ class App extends Component {
const { chat } = this.props;
// Variables for resizing chat.
const CHAT_MIN_WIDTH_PX = 180;
const CHAT_MAX_WIDTH_PX = 310;
const CHAT_DEFAULT_WIDTH_RELATIVE = 25;
// decide whether using pixel or percentage unit as a default width for chat
const CHAT_DEFAULT_WIDTH = (window.innerWidth * (CHAT_DEFAULT_WIDTH_RELATIVE / 100.0)) < CHAT_MAX_WIDTH_PX ? `${CHAT_DEFAULT_WIDTH_RELATIVE}%` : CHAT_MAX_WIDTH_PX;
const CHAT_MIN_WIDTH = '10%';
const CHAT_MAX_WIDTH = '25%';
const CHAT_DEFAULT_WIDTH = '15%';
if (!chat) return null;
@ -250,8 +247,8 @@ class App extends Component {
return (
<Resizable
defaultSize={{ width: CHAT_DEFAULT_WIDTH }}
minWidth={CHAT_MIN_WIDTH_PX}
maxWidth={CHAT_MAX_WIDTH_PX}
minWidth={CHAT_MIN_WIDTH}
maxWidth={CHAT_MAX_WIDTH}
ref={(node) => { this.resizableChat = node; }}
className={styles.resizableChat}
enable={resizableEnableOptions}