Microphone

pull/1102/head
Vincent 5 years ago
parent 3055e2345c
commit ab414ca10e

@ -60,7 +60,7 @@ const {
} = require('../../ts/components/DevicePairingDialog');
const {
SessionConversation,
} = require('../../ts/components/session/SessionConversation');
} = require('../../ts/components/session/conversation/SessionConversation');
const {
SettingsView,
} = require('../../ts/components/session/settings/SessionSettings');

@ -78,6 +78,7 @@ $session-color-white: #fff;
$session-color-dark-grey: #353535;
$session-color-black: #000;
$session-color-danger: #ff453a;
$session-color-danger-alt: #FF4538;
$session-color-primary: $session-shade-13;
$session-color-secondary: $session-shade-6;
$session-background-overlay: #212121;
@ -268,6 +269,7 @@ $session_message-container-border-radius: 5px;
width: auto;
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
user-select: none;
white-space: nowrap;
@ -319,6 +321,9 @@ $session_message-container-border-radius: 5px;
&.danger {
background-color: $session-color-danger;
}
&.danger-alt {
background-color: $session-color-danger-alt;
}
&.warning {
background-color: $session-color-warning;
}
@ -611,6 +616,7 @@ label {
}
.hidden {
display: none;
visibility: hidden;
}

@ -1,5 +1,16 @@
$composition-container-height: 60px;
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.conversation-item {
display: flex;
flex-grow: 1;
@ -19,6 +30,15 @@ $composition-container-height: 60px;
flex-grow: 1;
flex-direction: column;
position: relative;
&--blocking-overlay{
background-color: rgba(0,0,0,0.80);
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
}
.messages-container {
display: flex;
@ -56,6 +76,9 @@ $composition-container-height: 60px;
margin-right: $session-margin-sm;
}
.session-icon-button {
display: flex;
justify-content: center;
align-items: center;
opacity: 0.8;
.send {
@ -119,3 +142,55 @@ $composition-container-height: 60px;
background-color: $session-color-green;
}
}
.session-recording {
height: $composition-container-height;
display: flex;
justify-content: space-between;
align-items: center;
flex-grow: 1;
$actions-element-size: 45px;
&--actions {
display: flex;
align-items: center;
justify-content: center;
background-color: $session-shade-5;
width: $actions-element-size;
height: $actions-element-size;
border-radius: 50%;
.session-icon-button {
animation: fadein $session-transition-duration;
opacity: 1;
border-radius: 50%;
width: $actions-element-size;
height: $actions-element-size;
.play {
margin-left: 4px;
}
}
}
&--delete {
display: flex;
justify-content: center;
position: absolute;
left: 0;
right: 0;
bottom: $composition-container-height + $session-margin-md;
.session-button.danger-alt{
display: flex;
justify-content: center;
align-items: center;
width: 173px;
font-weight: 300;
font-family: "SF Pro Text";
}
}
}

@ -18,6 +18,7 @@ export enum SessionButtonColor {
Secondary = 'secondary',
Success = 'success',
Danger = 'danger',
DangerAlt = 'danger-alt',
Warning = 'warning',
None = '',
}

@ -1,132 +0,0 @@
import React from 'react';
import TextareaAutosize from 'react-autosize-textarea';
import { SessionIconButton, SessionIconSize, SessionIconType } from './icon';
import { SessionEmojiPanel } from './SessionEmojiPanel';
interface Props {
placeholder?: string;
sendMessage: any;
}
interface State {
message: string;
showEmojiPanel: boolean;
}
export class SessionCompositionBox extends React.Component<Props, State> {
private textarea: React.RefObject<HTMLTextAreaElement>;
private fileInput: React.RefObject<HTMLInputElement>;
constructor(props: any) {
super(props);
this.state = {
message: '',
showEmojiPanel: false,
};
this.textarea = React.createRef();
this.fileInput = React.createRef();
this.onKeyUp = this.onKeyUp.bind(this);
this.onChooseAttachment = this.onChooseAttachment.bind(this);
this.toggleEmojiPanel = this.toggleEmojiPanel.bind(this);
}
render() {
const { placeholder } = this.props;
const { showEmojiPanel } = this.state;
return (
<div className="composition-container">
<SessionIconButton
iconType={SessionIconType.CirclePlus}
iconSize={SessionIconSize.Large}
onClick={this.onChooseAttachment}
/>
<input
ref={this.fileInput}
type='file'
/>
<SessionIconButton
iconType={SessionIconType.Microphone}
iconSize={SessionIconSize.Large}
/>
<div className="send-message-input">
<TextareaAutosize
rows={1}
maxRows={3}
ref={this.textarea}
placeholder={placeholder}
maxLength={window.CONSTANTS.MAX_MESSAGE_BODY_LENGTH}
onKeyUp={this.onKeyUp}
/>
</div>
<SessionIconButton
iconType={SessionIconType.Emoji}
iconSize={SessionIconSize.Large}
onClick={this.toggleEmojiPanel}
/>
<div className="send-message-button">
<SessionIconButton
iconType={SessionIconType.Send}
iconSize={SessionIconSize.Large}
iconColor={'#FFFFFF'}
iconRotation={90}
/>
</div>
{showEmojiPanel && <SessionEmojiPanel />}
</div>
);
}
public toggleEmojiPanel() {
this.setState({
showEmojiPanel: !this.state.showEmojiPanel,
});
}
private onChooseAttachment() {
this.fileInput.current?.click();
}
private onChoseAttachment() {
}
private onKeyUp(event: any) {
console.log(`[vince][msg] Event: `, event);
console.log(`[vince][msg] Key `, event.key);
console.log(`[vince][msg] KeyCode `, event.keyCode);
console.log(`[vince][msg] AltKey `, event.altKey);
console.log(`[vince][msg] Ctrl: `, event.ctrlKey);
console.log(`[vince][msg] Shift: `, event.shiftKey);
if (event.key === 'Enter' && !event.shiftKey) {
// If shift, newline. Else send message.
event.preventDefault();
// FIXME VINCE: Get emoiji, attachments, etc
const messageBody = this.textarea.current?.value;
const attachments = this.fileInput.current?.value;
// this.props.sendMessage(
// );
}
}
}

@ -0,0 +1,164 @@
import React from 'react';
import TextareaAutosize from 'react-autosize-textarea';
import { SessionIconButton, SessionIconSize, SessionIconType } from '../icon';
import { SessionEmojiPanel } from './SessionEmojiPanel';
import { SessionRecording } from './SessionRecording';
interface Props {
placeholder?: string;
sendMessage: any;
onStartedRecording: any;
onStoppedRecording: any;
}
interface State {
message: string;
isRecording: boolean;
showEmojiPanel: boolean;
}
export class SessionCompositionBox extends React.Component<Props, State> {
private textarea: React.RefObject<HTMLTextAreaElement>;
private fileInput: React.RefObject<HTMLInputElement>;
constructor(props: any) {
super(props);
this.state = {
message: '',
isRecording: true,
showEmojiPanel: false,
};
this.textarea = React.createRef();
this.fileInput = React.createRef();
this.onKeyDown = this.onKeyDown.bind(this);
this.onChooseAttachment = this.onChooseAttachment.bind(this);
this.toggleEmojiPanel = this.toggleEmojiPanel.bind(this);
this.onSendMessage = this.onSendMessage.bind(this);
}
public componentWillReceiveProps(){
console.log(`[vince][info] Here are my composition props: `, this.props);
}
render() {
const { placeholder } = this.props;
const { showEmojiPanel } = this.state;
return (
<div className="composition-container">
{ this.state.isRecording ? (
<SessionRecording
onStoppedRecording={this.props.onStoppedRecording}
/>
) : (
<>
<SessionIconButton
iconType={SessionIconType.CirclePlus}
iconSize={SessionIconSize.Large}
onClick={this.onChooseAttachment}
/>
<input
className="hidden"
multiple={true}
ref={this.fileInput}
type='file'
/>
<SessionIconButton
iconType={SessionIconType.Microphone}
iconSize={SessionIconSize.Huge}
onClick={this.onStartRecording}
/>
<div className="send-message-input">
<TextareaAutosize
rows={1}
maxRows={3}
ref={this.textarea}
placeholder={placeholder}
maxLength={window.CONSTANTS.MAX_MESSAGE_BODY_LENGTH}
onKeyDown={this.onKeyDown}
/>
</div>
<SessionIconButton
iconType={SessionIconType.Emoji}
iconSize={SessionIconSize.Large}
onClick={this.toggleEmojiPanel}
/>
<div className="send-message-button">
<SessionIconButton
iconType={SessionIconType.Send}
iconSize={SessionIconSize.Large}
iconColor={'#FFFFFF'}
iconRotation={90}
onClick={this.onSendMessage}
/>
</div>
{showEmojiPanel && <SessionEmojiPanel />}
</>
)}
</div>
);
}
public toggleEmojiPanel() {
this.setState({
showEmojiPanel: !this.state.showEmojiPanel,
});
}
private onChooseAttachment() {
this.fileInput.current?.click();
}
private onChoseAttachment() {
}
private onKeyDown(event: any) {
if (event.key === 'Enter' && !event.shiftKey) {
// If shift, newline. Else send message.
event.preventDefault();
this.onSendMessage();
}
}
private onSendMessage(){
// FIXME VINCE: Get emoiji, attachments, etc
const messagePlaintext = this.textarea.current?.value;
const attachments = this.fileInput.current?.files;
console.log(`[vince][msg] Message:`, messagePlaintext);
console.log(`[vince][msg] Attachments:`, attachments);
if (false){
this.props.sendMessage();
}
}
private onStartRecording(){
// Do stuff for component, then run callback to SessionConversation
this.props.onStartedRecording();
}
private onStopRecording() {
// Do stuff for component, then run callback to SessionConversation
this.props.onStoppedRecording();
}
}

@ -1,16 +1,15 @@
import React, { useEffect, useRef } from 'react';
import React from 'react';
import { ConversationHeader } from '../conversation/ConversationHeader';
import { ConversationHeader } from '../../conversation/ConversationHeader';
import { SessionCompositionBox } from './SessionCompositionBox';
import { SessionProgress } from './SessionProgress'
import { SessionProgress } from '../SessionProgress'
import { Message } from '../conversation/Message';
import { FriendRequest } from '../conversation/FriendRequest';
import { TimerNotification } from '../conversation/TimerNotification';
import { Message } from '../../conversation/Message';
import { FriendRequest } from '../../conversation/FriendRequest';
import { TimerNotification } from '../../conversation/TimerNotification';
import { SessionSpinner } from './SessionSpinner';
import { SessionScrollButton } from './SessionScrollButton';
import { SessionScrollButton } from '../SessionScrollButton';
// interface Props {
// getHeaderProps: any;
@ -27,6 +26,7 @@ interface State {
isScrolledToBottom: boolean;
doneInitialScroll: boolean;
messageFetchTimestamp: number;
isRecording: boolean;
}
export class SessionConversation extends React.Component<any, State> {
@ -48,6 +48,7 @@ export class SessionConversation extends React.Component<any, State> {
isScrolledToBottom: !unreadCount,
doneInitialScroll: false,
messageFetchTimestamp: 0,
isRecording: false,
};
this.handleScroll = this.handleScroll.bind(this);
@ -58,6 +59,9 @@ export class SessionConversation extends React.Component<any, State> {
this.renderTimerNotification = this.renderTimerNotification.bind(this);
this.renderFriendRequest = this.renderFriendRequest.bind(this);
this.onStartedRecording = this.onStartedRecording.bind(this);
this.onStoppedRecording = this.onStoppedRecording.bind(this);
this.messagesEndRef = React.createRef();
}
@ -116,9 +120,7 @@ export class SessionConversation extends React.Component<any, State> {
<div className="messages-wrapper">
{ loading && (
<div className="messages-container__loading">
{/* <SessionSpinner/> */}
</div>
<div className="messages-container__loading"></div>
)}
<div className="messages-container" onScroll={this.handleScroll}>
@ -127,12 +129,14 @@ export class SessionConversation extends React.Component<any, State> {
</div>
<SessionScrollButton display={true} onClick={this.scrollToBottom}/>
<div className="messages-wrapper--blocking-overlay"></div>
</div>
{ !isRss && (
<SessionCompositionBox
sendMessage={conversationModel.sendMessage}
onStartedRecording={this.onStartedRecording}
onStoppedRecording={this.onStoppedRecording}
/>
)}
@ -582,5 +586,17 @@ export class SessionConversation extends React.Component<any, State> {
},
};
};
private onStartedRecording() {
this.setState({
isRecording: true,
})
}
private onStoppedRecording() {
this.setState({
isRecording: false,
})
}
}

@ -0,0 +1,147 @@
import React from 'react';
import { SessionIconButton, SessionIconSize, SessionIconType } from '../icon';
import { SessionButton, SessionButtonType, SessionButtonColor } from '../SessionButton';
interface Props {
onStoppedRecording: any;
}
interface State {
recordDuration: number;
isRecording: boolean;
isPaused: boolean;
actionHover: boolean;
}
export class SessionRecording extends React.Component<Props, State> {
constructor(props: any) {
super(props);
this.state = {
recordDuration: 0,
isRecording: true,
isPaused: false,
actionHover: false,
};
this.handleHoverActions = this.handleHoverActions.bind(this);
this.handleUnhoverActions = this.handleUnhoverActions.bind(this);
this.onPlayRecording = this.onPlayRecording.bind(this);
this.onStopRecording = this.onStopRecording.bind(this);
this.onSendVoiceMessage = this.onSendVoiceMessage.bind(this);
this.onDeleteVoiceMessage = this.onDeleteVoiceMessage.bind(this);
}
public componentWillReceiveProps(){
console.log(`[vince][mic] Here are my composition props: `, this.props);
}
render() {
const actionPause = (this.state.actionHover && this.state.isRecording);
const actionPlay = (!this.state.isRecording || this.state.isPaused);
const actionDefault = !actionPause && !actionPlay;
return (
<div className="session-recording">
<div
className="session-recording--actions"
onMouseEnter={this.handleHoverActions}
onMouseLeave={this.handleUnhoverActions}
>
{actionPause && (
<SessionIconButton
iconType={SessionIconType.Pause}
iconSize={SessionIconSize.Medium}
// FIXME VINCE: Globalise constants for JS Session Colors
iconColor={'#FF4538'}
onClick={this.onStopRecording}
/>
)}
{actionPlay && (
<SessionIconButton
iconType={SessionIconType.Play}
iconSize={SessionIconSize.Medium}
onClick={this.onPlayRecording}
/>
)}
{actionDefault && (
<SessionIconButton
iconType={SessionIconType.Microphone}
iconSize={SessionIconSize.Huge}
/>
)}
</div>
<div className="send-message-button">
<SessionIconButton
iconType={SessionIconType.Send}
iconSize={SessionIconSize.Large}
iconColor={'#FFFFFF'}
iconRotation={90}
onClick={this.onSendVoiceMessage}
/>
</div>
<div className="session-recording--delete">
<SessionButton
text={window.i18n('delete')}
buttonType={SessionButtonType.Brand}
buttonColor={SessionButtonColor.DangerAlt}
onClick={this.onDeleteVoiceMessage}
/>
</div>
</div>
);
}
private handleHoverActions() {
if ((this.state.isRecording) && !this.state.actionHover) {
this.setState({
actionHover: true,
});
}
navigator.getUserMedia();
}
private handleUnhoverActions() {
if (this.state.isRecording && this.state.actionHover) {
this.setState({
actionHover: false,
});
}
}
private onStopRecording() {
console.log(`[vince][mic] Stopped recording`);
this.setState({
isRecording: false,
isPaused: true,
});
}
private onPlayRecording() {
console.log(`[vince][mic] Playing recording`);
this.setState({
isRecording: false,
isPaused: false,
});
}
private onDeleteVoiceMessage() {
console.log(`[vince][mic] Deleting voice message`)
}
private onSendVoiceMessage() {
console.log(`[vince][mic] Sending voice message`);
}
}

@ -23,6 +23,8 @@ export enum SessionIconType {
Microphone = 'microphone',
Moon = 'moon',
Pencil = 'pencil',
Play = 'play',
Pause = 'pause',
Reply = 'reply',
Search = 'search',
Send = 'send',
@ -161,6 +163,16 @@ export const icons = {
'M4,16.4142136 L4,20 L7.58578644,20 L19.5857864,8 L16,4.41421356 L4,16.4142136 Z M16.7071068,2.29289322 L21.7071068,7.29289322 C22.0976311,7.68341751 22.0976311,8.31658249 21.7071068,8.70710678 L8.70710678,21.7071068 C8.5195704,21.8946432 8.26521649,22 8,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,16 C2,15.7347835 2.10535684,15.4804296 2.29289322,15.2928932 L15.2928932,2.29289322 C15.6834175,1.90236893 16.3165825,1.90236893 16.7071068,2.29289322 Z',
viewBox: '1 1 21 21',
},
[SessionIconType.Play]: {
path:
'M29.462,15.707c0,1.061-0.562,2.043-1.474,2.583L6.479,30.999c-0.47,0.275-0.998,0.417-1.526,0.417 c-0.513,0-1.026-0.131-1.487-0.396c-0.936-0.534-1.513-1.527-1.513-2.604V2.998c0-1.077,0.578-2.07,1.513-2.605 C4.402-0.139,5.553-0.13,6.479,0.415l21.509,12.709C28.903,13.664,29.462,14.646,29.462,15.707z',
viewBox: '1 1 31.417 31.417',
},
[SessionIconType.Pause]: {
path:
'M33,4.5v24c0,2.484-2.016,4.5-4.5,4.5h-24C2.016,33,0,30.984,0,28.5v-24C0,2.016,2.016,0,4.5,0h24 C30.984,0,33,2.016,33,4.5z',
viewBox: '-1 -1 35 35',
},
[SessionIconType.Reply]: {
path:
'M4,3 C4.55228475,3 5,3.44771525 5,4 L5,4 L5,11 C5,12.6568542 6.34314575,14 8,14 L8,14 L17.585,14 L14.2928932,10.7071068 C13.9324093,10.3466228 13.9046797,9.77939176 14.2097046,9.38710056 L14.2928932,9.29289322 C14.6834175,8.90236893 15.3165825,8.90236893 15.7071068,9.29289322 L15.7071068,9.29289322 L20.7071068,14.2928932 C20.7355731,14.3213595 20.7623312,14.3515341 20.787214,14.3832499 C20.788658,14.3849951 20.7902348,14.3870172 20.7918027,14.389044 C20.8140715,14.4179625 20.8348358,14.4480862 20.8539326,14.4793398 C20.8613931,14.4913869 20.8685012,14.5036056 20.8753288,14.5159379 C20.8862061,14.5357061 20.8966234,14.5561086 20.9063462,14.5769009 C20.914321,14.5939015 20.9218036,14.6112044 20.9287745,14.628664 C20.9366843,14.6484208 20.9438775,14.6682023 20.9504533,14.6882636 C20.9552713,14.7031487 20.9599023,14.7185367 20.9641549,14.734007 C20.9701664,14.7555635 20.9753602,14.7772539 20.9798348,14.7992059 C20.9832978,14.8166247 20.9863719,14.834051 20.9889822,14.8515331 C20.9962388,14.8996379 21,14.9493797 21,15 L20.9962979,14.9137692 C20.9978436,14.9317345 20.9989053,14.9497336 20.9994829,14.9677454 L21,15 C21,15.0112225 20.9998151,15.0224019 20.9994483,15.0335352 C20.9988772,15.050591 20.997855,15.0679231 20.996384,15.0852242 C20.994564,15.1070574 20.9920941,15.1281144 20.9889807,15.1489612 C20.9863719,15.165949 20.9832978,15.1833753 20.9797599,15.2007258 C20.9753602,15.2227461 20.9701664,15.2444365 20.964279,15.2658396 C20.9599023,15.2814633 20.9552713,15.2968513 20.9502619,15.3121425 C20.9438775,15.3317977 20.9366843,15.3515792 20.928896,15.3710585 C20.9218036,15.3887956 20.914321,15.4060985 20.9063266,15.4232215 C20.8974314,15.4421635 20.8879327,15.4609002 20.8778732,15.4792864 C20.8703855,15.4931447 20.862375,15.5070057 20.8540045,15.5207088 C20.8382813,15.546275 20.8215099,15.5711307 20.8036865,15.5951593 C20.774687,15.6343256 20.7425008,15.6717127 20.7071068,15.7071068 L20.787214,15.6167501 C20.7849289,15.6196628 20.7826279,15.6225624 20.7803112,15.625449 L20.7071068,15.7071068 L15.7071068,20.7071068 C15.3165825,21.0976311 14.6834175,21.0976311 14.2928932,20.7071068 C13.9023689,20.3165825 13.9023689,19.6834175 14.2928932,19.2928932 L14.2928932,19.2928932 L17.585,16 L8,16 C5.3112453,16 3.11818189,13.8776933 3.00461951,11.2168896 L3,11 L3,4 C3,3.44771525 3.44771525,3 4,3',

@ -1,6 +1,6 @@
import { connect } from 'react-redux';
import { mapDispatchToProps } from '../actions';
import { SessionConversation } from '../../components/session/SessionConversation';
import { SessionConversation } from '../../components/session/conversation/SessionConversation';
import { StateType } from '../reducer';
import { getQuery, getSearchResults, isSearching } from '../selectors/search';

Loading…
Cancel
Save