refactor newMessage, add fileUpload and soundRecorder
parent
c35b5ba446
commit
c57c1d348f
@ -0,0 +1,62 @@
|
|||||||
|
<template>
|
||||||
|
<div class="fileUpload">
|
||||||
|
<icon
|
||||||
|
title="upload media"
|
||||||
|
class="leftBtn attachFile"
|
||||||
|
ic="./sym/ic_attach_file_white.svg"
|
||||||
|
@click.native="$refs.fileInput.click()"
|
||||||
|
/>
|
||||||
|
<input
|
||||||
|
type="file" id="fileInput" ref="fileInput"
|
||||||
|
@change="setFile({file: $refs.fileInput.files[0]})"
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import icon from '@/components/icon';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'soundRecorder',
|
||||||
|
components: {
|
||||||
|
icon
|
||||||
|
},
|
||||||
|
props:{
|
||||||
|
onChange: Function
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
setFile({file}){
|
||||||
|
this.readFile(file).then(blob => {
|
||||||
|
blob.name = file.name;
|
||||||
|
this.onChange({blob})
|
||||||
|
});
|
||||||
|
},
|
||||||
|
readFile(file){
|
||||||
|
return new Promise(resolve => {
|
||||||
|
let reader = new FileReader();
|
||||||
|
reader.onerror = console.error;
|
||||||
|
reader.onload = async event => {
|
||||||
|
resolve(await (await fetch(event.target.result)).blob());
|
||||||
|
}
|
||||||
|
reader.readAsDataURL(file);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.fileUpload{
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.leftBtn{
|
||||||
|
background-color: unset;
|
||||||
|
height: 2.5rem;
|
||||||
|
width: 2.5rem;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
#fileInput{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,114 @@
|
|||||||
|
<template>
|
||||||
|
<div class="recorder">
|
||||||
|
<icon
|
||||||
|
v-if="!isRecording"
|
||||||
|
title="record voice"
|
||||||
|
class="recordBtn start"
|
||||||
|
ic="./sym/ic_mic_white.svg"
|
||||||
|
@click.native="startRecording()"
|
||||||
|
ref="startRecord"
|
||||||
|
/>
|
||||||
|
<div v-else class="voiceMeterContainer">
|
||||||
|
<div class="voiceMeter" ref="voiceMeter"></div>
|
||||||
|
<icon
|
||||||
|
title="record voice"
|
||||||
|
class="recordBtn stop"
|
||||||
|
ic="./sym/ic_mic_white.svg"
|
||||||
|
@click.native="stopRecording()"
|
||||||
|
ref="stopRecord"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import icon from '@/components/icon';
|
||||||
|
import Recorder from 'recorder-js';
|
||||||
|
const audioContext = new (window.AudioContext || window.webkitAudioContext)();
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'soundRecorder',
|
||||||
|
components: {
|
||||||
|
icon
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
onStart: {
|
||||||
|
type: Function,
|
||||||
|
default: ()=>{}
|
||||||
|
},
|
||||||
|
onStop: {
|
||||||
|
type: Function,
|
||||||
|
default: ()=>{}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
startRecording(){
|
||||||
|
this.onStart();
|
||||||
|
navigator.mediaDevices.getUserMedia({audio: true})
|
||||||
|
.then(stream => {
|
||||||
|
this.recorder.init(stream);
|
||||||
|
this.recorder.start().then(()=>this.isRecording=true);
|
||||||
|
})
|
||||||
|
.catch(err => console.log('unable to get stream', err));
|
||||||
|
},
|
||||||
|
stopRecording(){
|
||||||
|
this.recorder.stop()
|
||||||
|
.then(({blob}) => {
|
||||||
|
blob.name = `Recording-${new Date().toISOString()}.${blob.type.split('/')[1]}`;
|
||||||
|
this.onStop({blob});
|
||||||
|
this.isRecording=false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
setVoiceMeter(value){
|
||||||
|
if (!this.$refs.stopRecord) return;
|
||||||
|
this.$refs.voiceMeter.style.height = `calc(3rem + ${value/4}px`;
|
||||||
|
this.$refs.voiceMeter.style.width = `calc(3rem + ${value/4}px`;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data(){
|
||||||
|
return{
|
||||||
|
recorder: new Recorder(audioContext, {
|
||||||
|
onAnalysed: data => this.setVoiceMeter(data.lineTo)
|
||||||
|
}),
|
||||||
|
isRecording: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.recordBtn{
|
||||||
|
position: absolute;
|
||||||
|
right: 1rem;
|
||||||
|
bottom: 0.25rem;
|
||||||
|
background-color: #1d1d1d;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
.recordBtn.stop{
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background-color: #c63e3e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.voiceMeter{
|
||||||
|
position: absolute;
|
||||||
|
background-color: #fff;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%,-50%);
|
||||||
|
border-radius: 50%;
|
||||||
|
box-shadow: 3px 3px 10px #111;
|
||||||
|
}
|
||||||
|
.voiceMeterContainer{
|
||||||
|
position: absolute;
|
||||||
|
height: 3rem;
|
||||||
|
width: 3rem;
|
||||||
|
bottom: 0.25rem;
|
||||||
|
right: 1rem;
|
||||||
|
}
|
||||||
|
.recorder{
|
||||||
|
height: 100%;
|
||||||
|
width: 8rem;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue