Skip to content

Commit 9348508

Browse files
committed
update linting and readme
1 parent 2b4e38c commit 9348508

File tree

7 files changed

+29
-36
lines changed

7 files changed

+29
-36
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,10 @@ You can also customize chatbot with different configuration
171171
company: 'Flowise',
172172
companyLink: 'https://flowiseai.com',
173173
},
174+
disclaimer: {
175+
title: 'Disclaimer',
176+
message: 'By using this chatbot, you agree to the <a target="_blank" href="https://flowiseai.com/terms">Terms & Condition</a>',
177+
}
174178
},
175179
},
176180
});

dist/components/Bot.d.ts.map

+1-1
Original file line numberDiff line numberDiff line change

dist/features/popup/components/DisclaimerPopup.d.ts.map

+1-1
Original file line numberDiff line numberDiff line change

dist/utils/index.d.ts.map

+1-1
Original file line numberDiff line numberDiff line change

src/components/Bot.tsx

+9-11
Original file line numberDiff line numberDiff line change
@@ -427,18 +427,18 @@ export const Bot = (botProps: BotProps & { class?: string }) => {
427427
setUploadedFiles([]);
428428
scrollToBottom();
429429
};
430-
430+
431431
const handleDisclaimerAccept = () => {
432432
setDisclaimerPopupOpen(false); // Close the disclaimer popup
433-
setCookie("chatbotDisclaimer", "true", 365); // Disclaimer accepted
433+
setCookie('chatbotDisclaimer', 'true', 365); // Disclaimer accepted
434434
};
435-
435+
436436
const promptClick = (prompt: string) => {
437437
handleSubmit(prompt);
438438
};
439439

440440
// Handle form submission
441-
const handleSubmit = async (value: string, action?: IAction | undefined | null) => {
441+
const handleSubmit = async (value: string, action?: IAction | undefined | null) => {
442442
if (value.trim() === '') {
443443
const containsFile = previews().filter((item) => !item.mime.startsWith('image') && item.type !== 'audio').length > 0;
444444
if (!previews().length || (previews().length && containsFile)) {
@@ -653,15 +653,14 @@ export const Bot = (botProps: BotProps & { class?: string }) => {
653653

654654
// eslint-disable-next-line solid/reactivity
655655
createEffect(async () => {
656-
657656
if (props.disclaimer) {
658-
if (getCookie("chatbotDisclaimer") == "true") {
659-
setDisclaimerPopupOpen(false)
657+
if (getCookie('chatbotDisclaimer') == 'true') {
658+
setDisclaimerPopupOpen(false);
660659
} else {
661-
setDisclaimerPopupOpen(true)
660+
setDisclaimerPopupOpen(true);
662661
}
663662
} else {
664-
setDisclaimerPopupOpen(false)
663+
setDisclaimerPopupOpen(false);
665664
}
666665

667666
const chatMessage = getLocalStorageChatflow(props.chatflowid);
@@ -1350,12 +1349,11 @@ export const Bot = (botProps: BotProps & { class?: string }) => {
13501349
<DisclaimerPopup
13511350
isOpen={disclaimerPopupOpen()}
13521351
onAccept={handleDisclaimerAccept}
1353-
title={props.disclaimer?.title}
1352+
title={props.disclaimer?.title}
13541353
message={props.disclaimer?.message}
13551354
buttonText={props.disclaimer?.buttonText}
13561355
/>
13571356
)}
1358-
13591357
</>
13601358
);
13611359
};

src/features/popup/components/DisclaimerPopup.tsx

+5-14
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@ export type DisclaimerPopupProps = {
99
};
1010

1111
export const DisclaimerPopup = (props: DisclaimerPopupProps) => {
12-
const [popupProps] = splitProps(props, [
13-
'onAccept',
14-
'isOpen',
15-
'title',
16-
'message',
17-
'buttonText',
18-
]);
12+
const [popupProps] = splitProps(props, ['onAccept', 'isOpen', 'title', 'message', 'buttonText']);
1913

2014
const handleAccept = () => {
2115
props.onAccept?.();
@@ -25,16 +19,13 @@ export const DisclaimerPopup = (props: DisclaimerPopupProps) => {
2519
<Show when={popupProps.isOpen}>
2620
<div class="fixed inset-0 rounded-lg flex items-center justify-center bg-black bg-opacity-40 backdrop-blur-sm z-50">
2721
<div class="bg-white p-10 rounded-lg shadow-lg max-w-md w-full text-center mx-4 font-sans">
28-
<h2 class="text-2xl font-semibold mb-4 flex justify-center items-center">
29-
{popupProps.title ?? 'Disclaimer'}
30-
</h2>
22+
<h2 class="text-2xl font-semibold mb-4 flex justify-center items-center">{popupProps.title ?? 'Disclaimer'}</h2>
3123

3224
<p
3325
class="text-gray-700 text-base mb-6"
34-
innerHTML={popupProps.message ??
35-
'By using this chatbot, you acknowledge and accept these terms.'}
36-
></p>
37-
26+
innerHTML={popupProps.message ?? 'By using this chatbot, you acknowledge and accept these terms.'}
27+
/>
28+
3829
<div class="flex justify-center">
3930
<button
4031
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded focus:outline-none focus:shadow-outline"

src/utils/index.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ export const getBubbleButtonSize = (size: 'small' | 'medium' | 'large' | number
130130

131131
export const setCookie = (cname: string, cvalue: string, exdays: number) => {
132132
const d = new Date();
133-
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
134-
const expires = "expires=" + d.toUTCString();
135-
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
136-
}
133+
d.setTime(d.getTime() + exdays * 24 * 60 * 60 * 1000);
134+
const expires = 'expires=' + d.toUTCString();
135+
document.cookie = cname + '=' + cvalue + ';' + expires + ';path=/';
136+
};
137137

138-
export const getCookie = (cname: string): string =>{
139-
const name = cname + "=";
138+
export const getCookie = (cname: string): string => {
139+
const name = cname + '=';
140140
const decodedCookie = decodeURIComponent(document.cookie);
141141
const ca = decodedCookie.split(';');
142142
for (let i = 0; i < ca.length; i++) {
@@ -148,5 +148,5 @@ export const getCookie = (cname: string): string =>{
148148
return c.substring(name.length, c.length);
149149
}
150150
}
151-
return "";
152-
}
151+
return '';
152+
};

0 commit comments

Comments
 (0)