59f4dd7ebe
* Introduce setLocale in SDK Co-authored-by: Sojan <sojan@pepalo.com>
62 lines
1.4 KiB
JavaScript
Executable file
62 lines
1.4 KiB
JavaScript
Executable file
import Vue from 'vue';
|
|
|
|
const sendMessage = content => {
|
|
const locale = Vue.config.lang;
|
|
const refererURL = window.refererURL || '';
|
|
let search = window.location.search;
|
|
if (search) {
|
|
search = `${search}&locale=${locale}`;
|
|
} else {
|
|
search = `?locale=${locale}`;
|
|
}
|
|
|
|
return {
|
|
url: `/api/v1/widget/messages${search}`,
|
|
params: {
|
|
message: {
|
|
content,
|
|
timestamp: new Date().toString(),
|
|
referer_url: refererURL,
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
const sendAttachment = ({ attachment }) => {
|
|
const { refererURL = '' } = window;
|
|
const timestamp = new Date().toString();
|
|
const { file } = attachment;
|
|
|
|
const formData = new FormData();
|
|
formData.append('message[attachments][]', file, file.name);
|
|
formData.append('message[referer_url]', refererURL);
|
|
formData.append('message[timestamp]', timestamp);
|
|
return {
|
|
url: `/api/v1/widget/messages${window.location.search}`,
|
|
params: formData,
|
|
};
|
|
};
|
|
|
|
const getConversation = ({ before }) => ({
|
|
url: `/api/v1/widget/messages${window.location.search}`,
|
|
params: { before },
|
|
});
|
|
|
|
const updateMessage = id => ({
|
|
url: `/api/v1/widget/messages/${id}${window.location.search}`,
|
|
});
|
|
|
|
const getAvailableAgents = token => ({
|
|
url: '/api/v1/widget/inbox_members',
|
|
params: {
|
|
website_token: token,
|
|
},
|
|
});
|
|
|
|
export default {
|
|
sendMessage,
|
|
sendAttachment,
|
|
getConversation,
|
|
updateMessage,
|
|
getAvailableAgents,
|
|
};
|