Spaces:
Running
Running
/** | |
Copyright 2024 Google LLC | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. | |
*/ | |
import React, { useEffect, useRef, useState } from "react"; | |
import './App.scss'; | |
import { LiveAPIProvider, useLiveAPIContext } from "./contexts/LiveAPIContext"; | |
import ControlTray from "./components/control-tray/ControlTray"; | |
import { IOSModal } from "./components/ios-modal/IOSModal"; | |
import { isIOS } from "./lib/platform"; | |
import cn from "classnames"; | |
import { LiveConfig } from "./multimodal-live-types"; | |
const myCustomInstruction = ` | |
ت1. هویت دستیار: | |
فقط خود را به عنوان "دستیار صوتی و تصویری اپلیکیشن زبانفلای" معرفی کن. | |
هرگز خود را محصول یا زیرمجموعه گوگل، اپل یا هیچ شرکت دیگری معرفی نکن. | |
در پاسخ به سؤال کاربر درباره هویت، دقیقاً بگو: | |
"من دستیار صوتی و تصویری اپلیکیشن زبانفلای هستم. چگونه میتوانم به شما کمک کنم؟" | |
مدیریت زبان گفتگو: | |
به طور پیشفرض، مکالمه را به زبان انگلیسی آغاز کن. | |
اگر کاربر با زبانی غیر از انگلیسی صحبت کرد، گفتگو را به همان زبان ادامه بده. | |
زبان پاسخ را همیشه مطابق زبان کاربر تنظیم کن. تغییر زبان به صورت خودکار انجام شود. | |
بیان اعداد: | |
هنگام مکالمه به انگلیسی، اعداد را به صورت کامل به انگلیسی بیان کن (مثلاً: twenty-five). | |
هنگام مکالمه به زبانی دیگر، اعداد را به همان زبان بیان کن (مثلاً: بیست و پنج). | |
تنظیم صدا و لحن: | |
با صدای مایل به بلند و شفاف صحبت کن. | |
در صورت درخواست کاربر، صدای خود را بلندتر، آرامتر یا به تقلید از صدای خواستهشده تغییر بده. | |
بدون استثنا، هرگونه تغییر صدای درخواستی کاربر را اجرا کن. | |
تعهد به پاسخگویی: | |
تحت هیچ شرایطی به کاربر نگو که "نمیتوانم پاسخ دهم" یا "نمیتوانم کمک کنم". | |
همیشه در تمام زمینهها تلاش کن بهترین پاسخ ممکن را به کاربر ارائه بدهی. | |
رفتار در شروع گفتگو: | |
اگر پیام ورودی "START_GREETING" دریافت شد، تنها با یکی از جملات کوتاه زیر پاسخ بده: | |
"Hello, how can I help you?" | |
یا "Hey, what's up?" | |
اطلاعرسانی درباره اپلیکیشن زبانفلای: | |
در صورت نیاز کاربر، توضیح بده که اپلیکیشن زبانفلای در گوگل پلی و کافه بازار قابل دانلود است. | |
راهنمایی کن که کاربران میتوانند با جستجو در این فروشگاهها، اپلیکیشن را نصب کنند. | |
پشتیبانی از یادگیری زبان: | |
هنگام پاسخگویی، در صورت مرتبط بودن، مثالهای جملهسازی، کاربرد واژگان و اصطلاحات ارائه بده. | |
در صورت درخواست کاربر، معانی واژگان، هممعنیها، متضادها، و نمونه جملهها را هم ارائه بده. | |
تمرین شنیداری و گفتاری: | |
اگر کاربر بخواهد، جملهای را بخوان و از او بخواه آن را تکرار کند (تمرین shadowing). | |
فرصت کامل برای تکرار بده و کاربر را با بازخورد مثبت تشویق کن. | |
شخصیسازی تجربه یادگیری: | |
در صورت درخواست کاربر، سرعت مکالمه را کند یا تند کن. | |
سطح سختی واژگان و جملات را بر اساس سطح کاربر (مبتدی، متوسط، پیشرفته) تنظیم کن. | |
**تعامل تصویری:** | |
- به تصویر زندهای که از کاربر دریافت میکنی توجه کن. | |
- اگر در تصویر نکته قابل توجهی وجود دارد (مانند حالت چهره، اشیاء خاص، یا محیط اطراف کاربر)، میتوانی به آن در مکالمه اشاره کنی، البته فقط اگر مرتبط با موضوع صحبت باشد یا کاربر از تو بخواهد. | |
- اگر کاربر سوالی در مورد چیزی که در تصویر میبیند پرسید، سعی کن بر اساس تصویر پاسخ دهی. | |
- هدف اصلی، کمک به یادگیری زبان است، پس تعامل تصویری باید در خدمت این هدف باشد. | |
`.trim(); | |
const initialAppConfig: LiveConfig = { | |
model: "models/gemini-2.0-flash-exp", | |
systemInstruction: { | |
parts: [{ text: myCustomInstruction }], | |
}, | |
}; | |
const SvgHumanIcon = () => ( | |
<svg width="70" height="70" viewBox="0 0 88 89" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M75.1481 81.6361H12.9259C9.66667 81.6361 7 78.9721 7 75.7161V58.5112C7 57.5862 7 57.1052 7.44444 56.2172C8.85185 52.9612 13 50.2232 19.4815 47.8922C24.1111 56.6982 33.3704 62.6921 44 62.6921C54.6296 62.6921 63.9259 56.6982 68.5185 47.8922C75 50.1862 79.1852 52.9982 80.5556 56.2172C81 56.6612 81 57.6232 81 58.5112V75.7161C81 78.9721 78.3333 81.6361 75.0741 81.6361H75.1481Z" stroke="currentColor" strokeWidth="6.42146" strokeLinecap="round" strokeLinejoin="round"/><path d="M44.0371 50.1862C33.8519 50.1862 25.5186 41.8612 25.5186 31.6863V26.1363C25.5186 15.9613 33.8519 7.63635 44.0371 7.63635C54.2223 7.63635 62.5556 15.9613 62.5556 26.1363V31.6863C62.5556 41.8612 54.2223 50.1862 44.0371 50.1862Z" stroke="currentColor" strokeWidth="6.42146" strokeLinecap="round" strokeLinejoin="round"/></svg> | |
); | |
const AppInternalLogic: React.FC<{ | |
isMicActive: boolean; | |
isCamActive: boolean; | |
setIsMicActive: React.Dispatch<React.SetStateAction<boolean>>; | |
setIsCamActive: React.Dispatch<React.SetStateAction<boolean>>; | |
createLogoFunction: (isMini: boolean, isActive: boolean, type?: 'human' | 'ai') => React.ReactNode; | |
videoRef: React.RefObject<HTMLVideoElement>; | |
notificationPopoverRef: React.RefObject<HTMLDivElement>; | |
notificationButtonRef: React.RefObject<HTMLButtonElement>; | |
isNotificationOpen: boolean; | |
setIsNotificationOpen: React.Dispatch<React.SetStateAction<boolean>>; | |
}> = ({ | |
isMicActive, | |
isCamActive, | |
setIsMicActive, | |
setIsCamActive, | |
createLogoFunction, | |
videoRef, | |
notificationPopoverRef, | |
notificationButtonRef, | |
isNotificationOpen, | |
setIsNotificationOpen | |
}) => { | |
const { connected, disconnect } = useLiveAPIContext(); | |
useEffect(() => { | |
if (!isMicActive && !isCamActive && connected) { | |
disconnect(); | |
} | |
}, [isMicActive, isCamActive, connected, disconnect]); | |
return ( | |
<div className="w-full flex flex-col items-center justify-center min-h-screen text-foreground antialiased"> | |
<div className="max-w-3xl w-full flex flex-col items-center justify-center h-full relative"> | |
<div className="header-controls"> | |
<div id="notification-trigger-container"> | |
<button | |
ref={notificationButtonRef} | |
id="notification-button" | |
aria-label="Notifications" | |
className="header-button" | |
onClick={(e) => { | |
e.stopPropagation(); | |
setIsNotificationOpen(!isNotificationOpen); | |
}} | |
> | |
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg> | |
</button> | |
</div> | |
<div className="back-button-container"> | |
<div className="header-button" onClick={() => alert('Back clicked (implement navigation)')}> | |
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="m15 18-6-6 6-6"></path></svg> | |
</div> | |
</div> | |
</div> | |
<div ref={notificationPopoverRef} id="notification-popover-wrapper" className="notification-popover-wrapper"> | |
<div | |
id="notification-popover" | |
className={cn("popover-content", { | |
"open animate-popover-open-top-center": isNotificationOpen, | |
"animate-popover-close-top-center": !isNotificationOpen && document.getElementById('notification-popover')?.classList.contains('open'), | |
})} | |
> | |
<div className="notification-popover-text-content"> | |
مدلهای هوش مصنوعی میتوانند اشتباه کنند، صحت اطلاعات مهم را بررسی کنید و از وارد کردن اطلاعات حساس بپرهیزید. | |
</div> | |
</div> | |
</div> | |
<div className="w-full flex flex-col items-center justify-center flex-grow relative"> | |
<video | |
id="video-feed" | |
ref={videoRef} | |
autoPlay | |
playsInline | |
className={cn( | |
"absolute top-0 left-0 w-full h-full object-cover scale-x-[-1]", | |
{ "hidden": !isCamActive } | |
)} | |
/> | |
<div | |
id="large-logo-container" | |
className={cn( | |
"absolute top-0 left-0 w-full h-full", | |
{ | |
"flex items-center justify-center": isMicActive && !isCamActive, | |
"hidden": !isMicActive || isCamActive, | |
} | |
)} | |
> | |
{isMicActive && !isCamActive && createLogoFunction(false, true, 'human')} | |
</div> | |
</div> | |
<ControlTray | |
videoRef={videoRef} | |
supportsVideo={true} | |
onVideoStreamChange={(stream) => { /* ... */ }} | |
isAppMicActive={isMicActive} | |
onAppMicToggle={setIsMicActive} | |
isAppCamActive={isCamActive} | |
onAppCamToggle={setIsCamActive} | |
createLogoFunction={createLogoFunction} | |
/> | |
</div> | |
</div> | |
); | |
} | |
// *** NEW: Configuration for logo colors for Tailwind JIT compatibility *** | |
const logoColorConfig = { | |
blue: { | |
ping: "bg-blue-200 dark:bg-blue-700", | |
outer: "bg-blue-200 dark:bg-blue-700", | |
mid: "bg-blue-300 dark:bg-blue-600", | |
inner: "bg-blue-400 dark:bg-blue-500", | |
}, | |
green: { | |
ping: "bg-green-200 dark:bg-green-700", | |
outer: "bg-green-200 dark:bg-green-700", | |
mid: "bg-green-300 dark:bg-green-600", | |
inner: "bg-green-400 dark:bg-green-500", | |
}, | |
gray: { | |
ping: "bg-gray-200 dark:bg-gray-700", | |
outer: "bg-gray-200 dark:bg-gray-700", | |
mid: "bg-gray-300 dark:bg-gray-600", | |
inner: "bg-gray-400 dark:bg-gray-500", | |
} | |
}; | |
function App() { | |
const videoRef = useRef<HTMLVideoElement>(null); | |
const [showIOSModal, setShowIOSModal] = useState(false); | |
const [isAllowedOrigin, setIsAllowedOrigin] = useState<boolean | null>(null); | |
const [isMicActive, setIsMicActive] = useState(false); | |
const [isCamActive, setIsCamActive] = useState(false); | |
const [isNotificationOpen, setIsNotificationOpen] = useState(false); | |
const notificationPopoverRef = useRef<HTMLDivElement>(null); | |
const notificationButtonRef = useRef<HTMLButtonElement>(null); | |
useEffect(() => { | |
if (isIOS()) { | |
setShowIOSModal(true); | |
} | |
const timer = setTimeout(() => { | |
setIsAllowedOrigin(true); | |
}, 100); | |
return () => clearTimeout(timer); | |
}, []); | |
useEffect(() => { | |
const handleClickOutside = (event: MouseEvent) => { | |
if ( | |
isNotificationOpen && | |
notificationPopoverRef.current && | |
!notificationPopoverRef.current.contains(event.target as Node) && | |
notificationButtonRef.current && | |
!notificationButtonRef.current.contains(event.target as Node) | |
) { | |
setIsNotificationOpen(false); | |
} | |
}; | |
document.addEventListener("mousedown", handleClickOutside); | |
return () => { | |
document.removeEventListener("mousedown", handleClickOutside); | |
}; | |
}, [isNotificationOpen]); | |
if (isAllowedOrigin === null) { | |
return <div style={{ padding: '20px', textAlign: 'center' }}>در حال بررسی دسترسی...</div>; | |
} | |
const createLogoFunction = (isMini: boolean, isActive: boolean, type: 'human' | 'ai' = 'human') => { | |
if (!isActive) return null; | |
const size = isMini ? 80 : 200; | |
const iconSize = isMini ? 35 : 70; // This variable seems unused for SvgHumanIcon which has fixed size. Kept for consistency. | |
const insetBase = isMini | |
? { ping: 10, outer: 0, mid: 5, inner: 12, icon: 22 } | |
: { ping: 40, outer: 0, mid: 20, inner: 50, icon: 65 }; | |
// *** UPDATED: Use logoColorConfig for Tailwind JIT compatibility *** | |
const effectiveType = (type === 'human') ? 'blue' : (type === 'ai' ? 'green' : 'gray'); | |
const currentColors = logoColorConfig[effectiveType as keyof typeof logoColorConfig] || logoColorConfig.gray; | |
return ( | |
<div className="relative" style={{ width: `${size}px`, height: `${size}px` }}> | |
<div className={`absolute rounded-full opacity-50 animate-ping ${currentColors.ping}`} style={{ inset: `${insetBase.ping}px` }}></div> | |
<div className={`absolute rounded-full opacity-50 ${currentColors.outer}`} style={{ inset: `${insetBase.outer}px` }}></div> | |
<div className={`absolute rounded-full opacity-50 ${currentColors.mid}`} style={{ inset: `${insetBase.mid}px` }}></div> | |
<div className={`absolute rounded-full opacity-50 ${currentColors.inner}`} style={{ inset: `${insetBase.inner}px` }}></div> | |
<div className="z-10 absolute" style={{ inset: `${insetBase.icon}px`, display: 'flex', alignItems: 'center', justifyContent: 'center' }}> | |
{type === 'human' && <SvgHumanIcon />} | |
{/* اگر آیکون AI دارید، اینجا اضافه کنید. مثال: type === 'ai' && <SvgAiIcon /> */} | |
</div> | |
</div> | |
); | |
}; | |
return ( | |
<LiveAPIProvider initialConfig={initialAppConfig}> | |
<AppInternalLogic | |
isMicActive={isMicActive} | |
setIsMicActive={setIsMicActive} | |
isCamActive={isCamActive} | |
setIsCamActive={setIsCamActive} | |
createLogoFunction={createLogoFunction} | |
videoRef={videoRef} | |
notificationPopoverRef={notificationPopoverRef} | |
notificationButtonRef={notificationButtonRef} | |
isNotificationOpen={isNotificationOpen} | |
setIsNotificationOpen={setIsNotificationOpen} | |
/> | |
<IOSModal isOpen={showIOSModal} onClose={() => setShowIOSModal(false)} /> | |
</LiveAPIProvider> | |
); | |
} | |
export default App; |