Commit cd0d75df authored by luowei's avatar luowei

Chrome ChatBot plug-in

parent 289c93d0
var storage = chrome.storage.sync;
chrome.storage.sync.get(['baseUrl', 'token'], function(result) {
window.difyChatbotConfig = {
baseUrl: result.baseUrl,
token: result.token
};
});
document.body.onload = embedChatbot;
async function embedChatbot() {
const difyChatbotConfig = window.difyChatbotConfig;
if (!difyChatbotConfig || !difyChatbotConfig.token) {
console.error('difyChatbotConfig is empty or token is not provided');
return;
}
const baseUrl = difyChatbotConfig.baseUrl
const openIcon = `<svg
id="openIcon"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M7.7586 2L16.2412 2C17.0462 1.99999 17.7105 1.99998 18.2517 2.04419C18.8138 2.09012 19.3305 2.18868 19.8159 2.43598C20.5685 2.81947 21.1804 3.43139 21.5639 4.18404C21.8112 4.66937 21.9098 5.18608 21.9557 5.74818C21.9999 6.28937 21.9999 6.95373 21.9999 7.7587L22 14.1376C22.0004 14.933 22.0007 15.5236 21.8636 16.0353C21.4937 17.4156 20.4155 18.4938 19.0352 18.8637C18.7277 18.9461 18.3917 18.9789 17.9999 18.9918L17.9999 20.371C18 20.6062 18 20.846 17.9822 21.0425C17.9651 21.2305 17.9199 21.5852 17.6722 21.8955C17.3872 22.2525 16.9551 22.4602 16.4983 22.4597C16.1013 22.4593 15.7961 22.273 15.6386 22.1689C15.474 22.06 15.2868 21.9102 15.1031 21.7632L12.69 19.8327C12.1714 19.4178 12.0174 19.3007 11.8575 19.219C11.697 19.137 11.5262 19.0771 11.3496 19.0408C11.1737 19.0047 10.9803 19 10.3162 19H7.75858C6.95362 19 6.28927 19 5.74808 18.9558C5.18598 18.9099 4.66928 18.8113 4.18394 18.564C3.43129 18.1805 2.81937 17.5686 2.43588 16.816C2.18859 16.3306 2.09002 15.8139 2.0441 15.2518C1.99988 14.7106 1.99989 14.0463 1.9999 13.2413V7.75868C1.99989 6.95372 1.99988 6.28936 2.0441 5.74818C2.09002 5.18608 2.18859 4.66937 2.43588 4.18404C2.81937 3.43139 3.43129 2.81947 4.18394 2.43598C4.66928 2.18868 5.18598 2.09012 5.74808 2.04419C6.28927 1.99998 6.95364 1.99999 7.7586 2ZM10.5073 7.5C10.5073 6.67157 9.83575 6 9.00732 6C8.1789 6 7.50732 6.67157 7.50732 7.5C7.50732 8.32843 8.1789 9 9.00732 9C9.83575 9 10.5073 8.32843 10.5073 7.5ZM16.6073 11.7001C16.1669 11.3697 15.5426 11.4577 15.2105 11.8959C15.1488 11.9746 15.081 12.0486 15.0119 12.1207C14.8646 12.2744 14.6432 12.4829 14.3566 12.6913C13.7796 13.111 12.9818 13.5001 12.0073 13.5001C11.0328 13.5001 10.235 13.111 9.65799 12.6913C9.37138 12.4829 9.15004 12.2744 9.00274 12.1207C8.93366 12.0486 8.86581 11.9745 8.80418 11.8959C8.472 11.4577 7.84775 11.3697 7.40732 11.7001C6.96549 12.0314 6.87595 12.6582 7.20732 13.1001C7.20479 13.0968 7.21072 13.1043 7.22094 13.1171C7.24532 13.1478 7.29407 13.2091 7.31068 13.2289C7.36932 13.2987 7.45232 13.3934 7.55877 13.5045C7.77084 13.7258 8.08075 14.0172 8.48165 14.3088C9.27958 14.8891 10.4818 15.5001 12.0073 15.5001C13.5328 15.5001 14.735 14.8891 15.533 14.3088C15.9339 14.0172 16.2438 13.7258 16.4559 13.5045C16.5623 13.3934 16.6453 13.2987 16.704 13.2289C16.7333 13.1939 16.7567 13.165 16.7739 13.1432C17.1193 12.6969 17.0729 12.0493 16.6073 11.7001ZM15.0073 6C15.8358 6 16.5073 6.67157 16.5073 7.5C16.5073 8.32843 15.8358 9 15.0073 9C14.1789 9 13.5073 8.32843 13.5073 7.5C13.5073 6.67157 14.1789 6 15.0073 6Z"
fill="white"
/>
</svg>`;
const closeIcon = `<svg
id="closeIcon"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M18 18L6 6M6 18L18 6"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>`;
// create iframe
function createIframe() {
const iframe = document.createElement('iframe');
iframe.allow = "fullscreen;microphone"
iframe.title = "dify chatbot bubble window"
iframe.id = 'dify-chatbot-bubble-window'
iframe.src = `${baseUrl}/chat/${difyChatbotConfig.token}`
iframe.style.cssText = 'border: none; position: fixed; flex-direction: column; justify-content: space-between; box-shadow: rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px; bottom: 6.7rem; right: 1rem; width: 30rem; height: 48rem; border-radius: 0.75rem; display: flex; z-index: 2147483647; overflow: hidden; left: unset; background-color: #F3F4F6;'
document.body.appendChild(iframe);
// 计算更新入口位置,避免被遮挡
// const targetButton = document.getElementById('dify-chatbot-bubble-button');
// targetButton.style.right =
// handleRemToPx(iframe.style.width) +
// handleRemToPx(iframe.style.right) +
// 8 + "px";
}
/**
* rem转换为px
* @param {*} rem :30rem
*/
function handleRemToPx(rem) {
if (!rem) return;
let pxValue = 0;
try {
const regex = /\d+/;
// 提取数字部分,并转换为数字类型
const remValue = parseInt(regex.exec(rem)[0], 10);
const rootFontSize = parseFloat(
window.getComputedStyle(document.documentElement).fontSize
);
pxValue = remValue * rootFontSize;
} catch (error) {
console.error(error);
}
return pxValue;
}
/**
* 支持元素拖动
* @param {*} targetButton 入口元素
*/
function handleElementDrag(targetButton) {
// 定义变量来保存鼠标位置
let mouseX = 0,
mouseY = 0,
offsetX = 0,
offsetY = 0;
// 监听鼠标按下事件,获取鼠标位置和元素位置
targetButton.addEventListener("mousedown", function (event) {
// 计算鼠标位置
mouseX = event.clientX;
mouseY = event.clientY;
// 计算元素位置
const rect = targetButton.getBoundingClientRect();
offsetX = mouseX - rect.left;
offsetY = mouseY - rect.top;
// 监听鼠标移动事件
document.addEventListener("mousemove", onMouseMove);
});
// 监听鼠标抬起事件,停止监听鼠标移动事件
document.addEventListener("mouseup", function () {
document.removeEventListener("mousemove", onMouseMove);
});
// 鼠标移动事件处理程序,更新元素位置
function onMouseMove(event) {
// 计算元素位置
let newX = event.clientX - offsetX,
newY = event.clientY - offsetY;
// 计算视线边界
const viewportWidth = window.innerWidth,
viewportHeight = window.innerHeight;
const maxX = viewportWidth - targetButton.offsetWidth,
maxY = viewportHeight - targetButton.offsetHeight;
// 应用限制
newX = Math.max(12, Math.min(newX, maxX));
newY = Math.max(12, Math.min(newY, maxY));
// 更新元素位置
targetButton.style.left = newX + "px";
targetButton.style.top = newY + "px";
}
}
const targetButton = document.getElementById("dify-chatbot-bubble-button");
if (!targetButton) {
// create button
const containerDiv = document.createElement("div");
containerDiv.id = 'dify-chatbot-bubble-button';
containerDiv.style.cssText = `position: fixed; bottom: 3rem; right: 1rem; width: 50px; height: 50px; border-radius: 25px; background-color: #155EEF; box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px; cursor: move; z-index: 2147483647; transition: all 0.2s ease-in-out 0s; left: unset; transform: scale(1); :hover {transform: scale(1.1);}`;
const displayDiv = document.createElement('div');
displayDiv.style.cssText = "display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; z-index: 2147483647;";
displayDiv.innerHTML = openIcon;
containerDiv.appendChild(displayDiv);
document.body.appendChild(containerDiv);
handleElementDrag(containerDiv);
// add click event to control iframe display
containerDiv.addEventListener('click', function () {
const targetIframe = document.getElementById('dify-chatbot-bubble-window');
if (!targetIframe) {
createIframe();
displayDiv.innerHTML = closeIcon;
return;
}
if (targetIframe.style.display === "none") {
targetIframe.style.display = "block";
displayDiv.innerHTML = closeIcon;
} else {
targetIframe.style.display = "none";
displayDiv.innerHTML = openIcon;
}
});
} else {
// 浮动图标添加任意拖拽
handleElementDrag(targetButton);
}
}
\ No newline at end of file
{
"manifest_version": 3,
"name": "Dify Chatbot",
"version": "1.0",
"description": "This is a chrome extension to inject a dify chatbot on pages",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"permissions": ["webRequest", "storage"],
"action": {
"default_popup": "options.html",
"default_icon": {
"16": "favicon.png"
}
}
}
\ No newline at end of file
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h2 {
color: #333;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="text"] {
width: 280px;
padding: 6px;
}
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>Dify Chatbot Extension Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<h2>Dify Chatbot Extension Options</h2>
<label for="base-url">Base URL:</label>
<input type="text" id="base-url" name="base-url" value="">
<span class="required">*</span>
<label for="token">Token:</label>
<input type="text" id="token" name="token" value="">
<span class="required">*</span>
<button id="save-button">Save</button>
<script src="options.js"></script>
</body>
</html>
\ No newline at end of file
document.getElementById('save-button').addEventListener('click', function() {
var baseUrl = document.getElementById('base-url').value;
var token = document.getElementById('token').value;
if (baseUrl === '' || token === '') {
alert('Dify Chatbot Extension Options Not filled.');
return;
}
chrome.storage.sync.set({
'baseUrl': baseUrl,
'token': token
}, function() {
alert('Save Success!');
});
});
// 在页面加载时从chrome.storage中加载参数
chrome.storage.sync.get(['baseUrl', 'token'], function(result) {
document.getElementById('base-url').value = result.baseUrl;
document.getElementById('token').value = result.token;
});
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment