caee9535f1
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
55 lines
1.3 KiB
Text
55 lines
1.3 KiB
Text
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
|
|
|
|
|
|
<%
|
|
user_id = 1
|
|
user_hash = OpenSSL::HMAC.hexdigest(
|
|
'sha256',
|
|
@web_widget.hmac_token,
|
|
user_id.to_s
|
|
)
|
|
|
|
%>
|
|
<script>
|
|
|
|
window.chatwootSettings = {
|
|
hideMessageBubble: false,
|
|
position: '<%= @widget_position %>',
|
|
locale: 'en',
|
|
type: '<%= @widget_type %>',
|
|
showPopoutButton: true,
|
|
widgetStyle: '<%= @widget_style %>',
|
|
darkMode: '<%= @dark_mode %>',
|
|
};
|
|
|
|
(function(d,t) {
|
|
var BASE_URL = '';
|
|
var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
|
g.src= BASE_URL + "/packs/js/sdk.js";
|
|
g.defer = true;
|
|
g.async = true;
|
|
s.parentNode.insertBefore(g,s);
|
|
g.onload=function(){
|
|
window.chatwootSDK.run({
|
|
websiteToken: '<%= @web_widget.website_token %>',
|
|
baseUrl: BASE_URL
|
|
})
|
|
}
|
|
})(document,"script");
|
|
|
|
window.addEventListener('chatwoot:ready', function() {
|
|
console.log('chatwoot:ready', window.$chatwoot);
|
|
if (window.location.search.includes('setUser')) {
|
|
window.$chatwoot.setUser('<%= user_id %>', {
|
|
identifier_hash: '<%= user_hash %>',
|
|
email: 'jane@example.com',
|
|
name: 'Jane Doe',
|
|
phone_number: ''
|
|
});
|
|
}
|
|
})
|
|
|
|
window.addEventListener('chatwoot:error', function(e) {
|
|
console.log('chatwoot:error', e.detail)
|
|
})
|
|
</script>
|