Files
chatGPTBox/src/components/NotificationForChatGPTWeb/index.jsx
T
2023-05-08 22:31:52 +08:00

91 lines
2.2 KiB
React

import { useTranslation } from 'react-i18next'
import PropTypes from 'prop-types'
import Browser from 'webextension-polyfill'
import { toast, ToastContainer } from 'react-toastify'
import { useEffect } from 'react'
import 'react-toastify/dist/ReactToastify.css'
import { useTheme } from '../../hooks/use-theme.mjs'
import { getUserConfig } from '../../config/index.mjs'
const NotificationForChatGPTWeb = () => {
const { t } = useTranslation()
const [theme, config] = useTheme()
const buttonStyle = {
padding: '0 8px',
border: '1px solid',
borderRadius: '4px',
whiteSpace: 'nowrap',
cursor: 'pointer',
}
useEffect(() => {
toast(
<div
style={{
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
gap: '4px',
}}
>
<div>{t('Please keep this tab open. You can now use the web mode of ChatGPTBox')}</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: '4px' }}>
<button
style={buttonStyle}
onClick={() => {
Browser.runtime.sendMessage({
type: 'PIN_TAB',
data: {
saveAsChatgptConfig: true,
},
})
}}
>
{t('Pin Tab')}
</button>
<button
style={buttonStyle}
onClick={async () => {
Browser.runtime.sendMessage({
type: 'ACTIVATE_URL',
data: {
tabId: (await getUserConfig()).chatgptJumpBackTabId,
},
})
}}
>
{t('Go Back')}
</button>
</div>
</div>,
{
toastId: 0,
updateId: 0,
},
)
}, [config.themeMode, config.preferredLanguage])
return (
<ToastContainer
style={{
width: '440px',
}}
position="top-right"
autoClose={7000}
newestOnTop={false}
closeOnClick={false}
rtl={false}
pauseOnFocusLoss={true}
draggable={false}
theme={theme}
/>
)
}
NotificationForChatGPTWeb.propTypes = {
container: PropTypes.object.isRequired,
}
export default NotificationForChatGPTWeb