Skip to content

Commit

Permalink
feat: refactor send image
Browse files Browse the repository at this point in the history
  • Loading branch information
aldinokemal committed Mar 13, 2024
1 parent 6282a83 commit 8fabade
Show file tree
Hide file tree
Showing 5 changed files with 159 additions and 157 deletions.
11 changes: 5 additions & 6 deletions src/views/components/SendAudio.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default {
try {
let payload = new FormData();
payload.append("phone", this.phone_id)
payload.append("audio", $("#file")[0].files[0])
payload.append("audio", $("#file_audio")[0].files[0])
const response = await window.http.post(`/send/audio`, payload)
this.handleReset();
return response.data.message;
Expand All @@ -51,7 +51,7 @@ export default {
handleReset() {
this.phone = '';
this.type = 'user';
$("#file").val('');
$("#file_audio").val('');
},
},
template:`
Expand Down Expand Up @@ -87,10 +87,9 @@ export default {
<input :value="phone_id" disabled aria-label="whatsapp_id">
</div>
<div class="field" style="padding-bottom: 30px">
<label></label>
<input type="file" class="inputfile" id="file" style="display: none"
accept="audio/*"/>
<label for="file" class="ui positive medium green left floated button" style="color: white">
<label>Audio</label>
<input type="file" style="display: none" accept="audio/*" id="file_audio"/>
<label for="file_audio" class="ui positive medium green left floated button" style="color: white">
<i class="ui upload icon"></i>
Upload
</label>
Expand Down
10 changes: 5 additions & 5 deletions src/views/components/SendFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
let payload = new FormData();
payload.append("caption", this.caption)
payload.append("phone", this.phone_id)
payload.append("file", $("#file")[0].files[0])
payload.append("file", $("#file_file")[0].files[0])
let response = await http.post(`/send/file`, payload)
this.handleReset();
return response.data.message;
Expand All @@ -60,7 +60,7 @@ export default {
this.caption = '';
this.phone = '';
this.type = 'user';
$("#file").val('');
$("#file_file").val('');
},
},
template: `
Expand Down Expand Up @@ -98,13 +98,13 @@ export default {
</div>
<div class="field">
<label>Caption</label>
<textarea v-model="caption" type="text" placeholder="Type some caption (optional)..."
<textarea v-model="caption" placeholder="Type some caption (optional)..."
aria-label="caption"></textarea>
</div>
<div class="field" style="padding-bottom: 30px">
<label>File</label>
<input type="file" class="inputfile" id="file" style="display: none"/>
<label for="file" class="ui positive medium green left floated button" style="color: white">
<input type="file" style="display: none" @change="handleFileSelected" id="file_file">
<label for="file_file" class="ui positive medium green left floated button" style="color: white">
<i class="ui upload icon"></i>
Upload file
</label>
Expand Down
141 changes: 141 additions & 0 deletions src/views/components/SendImage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
export default {
name: 'SendImage',
data() {
return {
phone: '',
view_once: false,
compress: false,
caption: '',
type: 'user',
loading: false,
selected_file: null
}
},
computed: {
phone_id() {
return this.type === 'user' ? `${this.phone}@${window.TYPEUSER}` : `${this.phone}@${window.TYPEGROUP}`
}
},
methods: {
openModal() {
$('#modalSendImage').modal({
onApprove: function () {
return false;
}
}).modal('show');
},
async handleSubmit() {
try {
let response = await this.sendApi()
showSuccessInfo(response)
$('#modalSendImage').modal('hide');
} catch (err) {
showErrorInfo(err)
}
},
async sendApi() {
this.loading = true;
try {
let payload = new FormData();
payload.append("phone", this.phone_id)
payload.append("view_once", this.view_once)
payload.append("compress", this.compress)
payload.append("caption", this.caption)
payload.append('image', $("#file_image")[0].files[0])

let response = await window.http.post(`/send/image`, payload)
this.handleReset();
return response.data.message;
} catch (error) {
if (error.response) {
throw new Error(error.response.data.message);
} else {
throw new Error(error.message);
}
} finally {
this.loading = false;
}
},
handleReset() {
this.view_once = false;
this.compress = false;
this.phone = '';
this.caption = '';
this.type = 'user';
$("#file_image").val('');
},
},
template: `
<div class="blue card" @click="openModal()" style="cursor:pointer;">
<div class="content">
<a class="ui blue right ribbon label">Send</a>
<div class="header">Send Image</div>
<div class="description">
Send image with
<div class="ui blue horizontal label">jpg/jpeg/png</div>
type
</div>
</div>
</div>
<!-- Modal SendImage -->
<div class="ui small modal" id="modalSendImage">
<i class="close icon"></i>
<div class="header">
Send Image
</div>
<div class="content">
<form class="ui form">
<div class="field">
<label>Type</label>
<select name="type" v-model="type" aria-label="type">
<option value="group">Group Message</option>
<option value="user">Private Message</option>
</select>
</div>
<div class="field">
<label>Phone / Group ID</label>
<input v-model="phone" type="text" placeholder="6289..."
aria-label="phone">
<input :value="phone_id" disabled aria-label="whatsapp_id">
</div>
<div class="field">
<label>Caption</label>
<textarea v-model="caption" type="text" placeholder="Hello this is image caption"
aria-label="caption"></textarea>
</div>
<div class="field">
<label>View Once</label>
<div class="ui toggle checkbox">
<input type="checkbox" aria-label="view once" v-model="view_once">
<label>Check for enable one time view</label>
</div>
</div>
<div class="field">
<label>Compress</label>
<div class="ui toggle checkbox">
<input type="checkbox" aria-label="compress" v-model="compress">
<label>Check for compressing image to smaller size</label>
</div>
</div>
<div class="field" style="padding-bottom: 30px">
<label>Image</label>
<input type="file" style="display: none" id="file_image"
accept="image/png,image/jpg,image/jpeg"/>
<label for="file_image" class="ui positive medium green left floated button" style="color: white">
<i class="ui upload icon"></i>
Upload image
</label>
</div>
</form>
</div>
<div class="actions">
<div class="ui approve positive right labeled icon button" :class="{'loading': this.loading}"
@click="handleSubmit">
Send
<i class="send icon"></i>
</div>
</div>
</div>
`
}
8 changes: 4 additions & 4 deletions src/views/components/SendVideo.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default {
payload.append("caption", this.caption)
payload.append("view_once", this.view_once)
payload.append("compress", this.compress)
payload.append("video", $("#file")[0].files[0])
payload.append('video', $("#file_video")[0].files[0])
let response = await window.http.post(`/send/video`, payload)
this.handleReset();
return response.data.message;
Expand All @@ -67,7 +67,7 @@ export default {
this.compress = false;
this.phone = '';
this.type = 'user';
$("#file").val('');
$("#file_video").val('');
},
},
template: `
Expand Down Expand Up @@ -126,8 +126,8 @@ export default {
</div>
<div class="field" style="padding-bottom: 30px">
<label>Video</label>
<input type="file" id="file" style="display: none" accept="video/*"/>
<label for="file" class="ui positive medium green left floated button" style="color: white">
<input type="file" style="display: none" accept="video/*" id="file_video">
<label for="file_video" class="ui positive medium green left floated button" style="color: white">
<i class="ui upload icon"></i>
Upload video
</label>
Expand Down
Loading

0 comments on commit 8fabade

Please sign in to comment.