-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220 from iceljc/features/refine-chat-window
add logout event
- Loading branch information
Showing
10 changed files
with
149 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,86 @@ | ||
<script> | ||
import { fade } from 'svelte/transition'; | ||
import { onMount } from 'svelte'; | ||
import { PUBLIC_LIVECHAT_HOST, PUBLIC_LIVECHAT_ENTRY_ICON } from '$env/static/public'; | ||
import { getSettingDetail } from '$lib/services/setting-service'; | ||
import { fade } from 'svelte/transition'; | ||
import { onMount } from 'svelte'; | ||
import { PUBLIC_LIVECHAT_HOST, PUBLIC_LIVECHAT_ENTRY_ICON } from '$env/static/public'; | ||
import { getSettingDetail } from '$lib/services/setting-service'; | ||
let showChatIcon = false; | ||
let showChatBox = false; | ||
let chatUrl = PUBLIC_LIVECHAT_HOST; | ||
let showChatIcon = false; | ||
let showChatBox = false; | ||
let chatUrl = PUBLIC_LIVECHAT_HOST; | ||
onMount(async () => { | ||
const agentSettings = await getSettingDetail("Agent"); | ||
chatUrl = `${PUBLIC_LIVECHAT_HOST}chat/${agentSettings.hostAgentId}?isFrame=true`; | ||
showChatIcon = true; | ||
}); | ||
onMount(async () => { | ||
const agentSettings = await getSettingDetail("Agent"); | ||
chatUrl = `${PUBLIC_LIVECHAT_HOST}chat/${agentSettings.hostAgentId}?isFrame=true`; | ||
showChatIcon = true; | ||
}); | ||
// Handle event from iframe | ||
window.onmessage = async function(e) { | ||
if (e.data.action == 'close') { | ||
showChatIcon = true; | ||
showChatBox = false; | ||
} | ||
}; | ||
// Handle event from iframe | ||
window.onmessage = async function(e) { | ||
if (e.data.action == 'close') { | ||
showChatIcon = true; | ||
showChatBox = false; | ||
} | ||
}; | ||
function handleChatBox() { | ||
showChatIcon = false; | ||
showChatBox = true; | ||
} | ||
function handleChatBox() { | ||
showChatIcon = false; | ||
showChatBox = true; | ||
} | ||
</script> | ||
|
||
<div class="fixed-bottom float-bottom-right"> | ||
{#if showChatBox} | ||
<div transition:fade={{ delay: 250, duration: 300 }}> | ||
<iframe | ||
src={chatUrl} | ||
width="380px" | ||
height="650px" | ||
class="border border-2 rounded-3 m-3 float-end chat-iframe" | ||
title="live chat" | ||
> | ||
</iframe> | ||
</div> | ||
{/if} | ||
{#if showChatBox} | ||
<div transition:fade={{ delay: 250, duration: 300 }}> | ||
<iframe | ||
src={chatUrl} | ||
width="380px" | ||
height="650px" | ||
class="border border-2 rounded-3 m-3 float-end chat-iframe" | ||
title="live chat" | ||
id="chat-frame" | ||
> | ||
</iframe> | ||
</div> | ||
{/if} | ||
|
||
{#if showChatIcon} | ||
<div class="mb-3 float-end wave-effect" transition:fade={{ delay: 100, duration: 500 }}> | ||
<button class="btn btn-transparent" on:click={handleChatBox}> | ||
<img alt="live chat" class="avatar-md rounded-circle" src={PUBLIC_LIVECHAT_ENTRY_ICON} /> | ||
</button> | ||
</div> | ||
{/if} | ||
{#if showChatIcon} | ||
<div class="mb-3 float-end wave-effect" transition:fade={{ delay: 100, duration: 500 }}> | ||
<button class="btn btn-transparent" on:click={() => handleChatBox()}> | ||
<img alt="live chat" class="avatar-md rounded-circle" src={PUBLIC_LIVECHAT_ENTRY_ICON} /> | ||
</button> | ||
</div> | ||
{/if} | ||
</div> | ||
|
||
<style> | ||
.wave-effect:hover { | ||
animation: wave 0.82s cubic-bezier(.36,.07,.19,.97) both; | ||
transform: translate3d(0, 0, 0); | ||
backface-visibility: hidden; | ||
perspective: 1000px; | ||
} | ||
@keyframes wave { | ||
10%, 90% { | ||
transform: translate3d(-1px, 0, 0); | ||
} | ||
20%, 80% { | ||
transform: translate3d(2px, 0, 0); | ||
.wave-effect:hover { | ||
animation: wave 0.82s cubic-bezier(.36,.07,.19,.97) both; | ||
transform: translate3d(0, 0, 0); | ||
backface-visibility: hidden; | ||
perspective: 1000px; | ||
} | ||
30%, 50%, 70% { | ||
transform: translate3d(-4px, 0, 0); | ||
} | ||
@keyframes wave { | ||
10%, 90% { | ||
transform: translate3d(-1px, 0, 0); | ||
} | ||
20%, 80% { | ||
transform: translate3d(2px, 0, 0); | ||
} | ||
40%, 60% { | ||
transform: translate3d(4px, 0, 0); | ||
30%, 50%, 70% { | ||
transform: translate3d(-4px, 0, 0); | ||
} | ||
40%, 60% { | ||
transform: translate3d(4px, 0, 0); | ||
} | ||
} | ||
} | ||
.float-bottom-right { | ||
width: fit-content; | ||
margin-right: 0px; | ||
margin-left: auto; | ||
} | ||
.float-bottom-right { | ||
width: fit-content; | ||
margin-right: 0px; | ||
margin-left: auto; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.