|
|
@ -382,7 +382,6 @@ class SessionRecordingInner extends React.Component<Props, State> {
|
|
|
|
this.pauseAudio();
|
|
|
|
this.pauseAudio();
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
requestAnimationFrame(drawSweepingTimeline);
|
|
|
|
requestAnimationFrame(drawSweepingTimeline);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
@ -497,7 +496,7 @@ class SessionRecordingInner extends React.Component<Props, State> {
|
|
|
|
processor.onaudioprocess = () => {
|
|
|
|
processor.onaudioprocess = () => {
|
|
|
|
const streamParams = { stream, media, input, processor };
|
|
|
|
const streamParams = { stream, media, input, processor };
|
|
|
|
this.setState({ streamParams });
|
|
|
|
this.setState({ streamParams });
|
|
|
|
const { textColorSubtle } = this.props.theme.colors;
|
|
|
|
const { textColorSubtleNoOpacity } = this.props.theme.colors;
|
|
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
const {
|
|
|
|
width,
|
|
|
|
width,
|
|
|
@ -554,7 +553,7 @@ class SessionRecordingInner extends React.Component<Props, State> {
|
|
|
|
const offsetY = Math.ceil(height / 2 - barHeight / 2);
|
|
|
|
const offsetY = Math.ceil(height / 2 - barHeight / 2);
|
|
|
|
|
|
|
|
|
|
|
|
if (canvasContext) {
|
|
|
|
if (canvasContext) {
|
|
|
|
canvasContext.fillStyle = textColorSubtle;
|
|
|
|
canvasContext.fillStyle = textColorSubtleNoOpacity;
|
|
|
|
this.drawRoundedRect(canvasContext, offsetX, offsetY, barHeight);
|
|
|
|
this.drawRoundedRect(canvasContext, offsetX, offsetY, barHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -612,7 +611,7 @@ class SessionRecordingInner extends React.Component<Props, State> {
|
|
|
|
minBarHeight,
|
|
|
|
minBarHeight,
|
|
|
|
} = this.state.canvasParams;
|
|
|
|
} = this.state.canvasParams;
|
|
|
|
|
|
|
|
|
|
|
|
const { textColorSubtle } = this.props.theme.colors;
|
|
|
|
const { textColorSubtleNoOpacity } = this.props.theme.colors;
|
|
|
|
|
|
|
|
|
|
|
|
const numBars = width / (barPadding + barWidth);
|
|
|
|
const numBars = width / (barPadding + barWidth);
|
|
|
|
|
|
|
|
|
|
|
@ -668,7 +667,7 @@ class SessionRecordingInner extends React.Component<Props, State> {
|
|
|
|
const offsetX = Math.ceil(i * (barWidth + barPadding));
|
|
|
|
const offsetX = Math.ceil(i * (barWidth + barPadding));
|
|
|
|
const offsetY = Math.ceil(height / 2 - barHeight / 2);
|
|
|
|
const offsetY = Math.ceil(height / 2 - barHeight / 2);
|
|
|
|
|
|
|
|
|
|
|
|
canvasContext.fillStyle = textColorSubtle;
|
|
|
|
canvasContext.fillStyle = textColorSubtleNoOpacity;
|
|
|
|
|
|
|
|
|
|
|
|
this.drawRoundedRect(canvasContext, offsetX, offsetY, barHeight);
|
|
|
|
this.drawRoundedRect(canvasContext, offsetX, offsetY, barHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|