-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Feature/channel retry warning #2987
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Calcium-Ion
merged 2 commits into
QuantumNous:main
from
seefs001:feature/channel-retry-warning
Feb 22, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
225 changes: 225 additions & 0 deletions
225
web/src/components/common/modals/RiskAcknowledgementModal.jsx
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,225 @@ | ||
| /* | ||
| Copyright (C) 2025 QuantumNous | ||
|
|
||
| This program is free software: you can redistribute it and/or modify | ||
| it under the terms of the GNU Affero General Public License as | ||
| published by the Free Software Foundation, either version 3 of the | ||
| License, or (at your option) any later version. | ||
|
|
||
| This program is distributed in the hope that it will be useful, | ||
| but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| GNU Affero General Public License for more details. | ||
|
|
||
| You should have received a copy of the GNU Affero General Public License | ||
| along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
|
||
| For commercial licensing, please contact support@quantumnous.com | ||
| */ | ||
|
|
||
| import React, { useCallback, useEffect, useMemo, useState } from 'react'; | ||
| import { | ||
| Modal, | ||
| Button, | ||
| Typography, | ||
| Checkbox, | ||
| Input, | ||
| Space, | ||
| } from '@douyinfe/semi-ui'; | ||
| import { IconAlertTriangle } from '@douyinfe/semi-icons'; | ||
| import { useIsMobile } from '../../../hooks/common/useIsMobile'; | ||
| import MarkdownRenderer from '../markdown/MarkdownRenderer'; | ||
|
|
||
| const { Text } = Typography; | ||
|
|
||
| const RiskMarkdownBlock = React.memo(function RiskMarkdownBlock({ | ||
| markdownContent, | ||
| }) { | ||
| if (!markdownContent) { | ||
| return null; | ||
| } | ||
|
|
||
| return ( | ||
| <div | ||
| className='rounded-lg' | ||
| style={{ | ||
| border: '1px solid var(--semi-color-warning-light-hover)', | ||
| background: | ||
| 'linear-gradient(180deg, var(--semi-color-warning-light-default) 0%, var(--semi-color-fill-0) 100%)', | ||
| padding: '12px', | ||
| contentVisibility: 'auto', | ||
| }} | ||
| > | ||
| <MarkdownRenderer content={markdownContent} /> | ||
| </div> | ||
| ); | ||
| }); | ||
|
|
||
| const RiskAcknowledgementModal = React.memo(function RiskAcknowledgementModal({ | ||
| visible, | ||
| title, | ||
| markdownContent = '', | ||
| detailTitle = '', | ||
| detailItems = [], | ||
| checklist = [], | ||
| inputPrompt = '', | ||
| requiredText = '', | ||
| inputPlaceholder = '', | ||
| mismatchText = '', | ||
| cancelText = '', | ||
| confirmText = '', | ||
| onCancel, | ||
| onConfirm, | ||
| }) { | ||
| const isMobile = useIsMobile(); | ||
| const [checkedItems, setCheckedItems] = useState([]); | ||
| const [typedText, setTypedText] = useState(''); | ||
|
|
||
| useEffect(() => { | ||
| if (!visible) return; | ||
| setCheckedItems(Array(checklist.length).fill(false)); | ||
| setTypedText(''); | ||
| }, [visible, checklist.length]); | ||
|
|
||
| const allChecked = useMemo(() => { | ||
| if (checklist.length === 0) return true; | ||
| return checkedItems.length === checklist.length && checkedItems.every(Boolean); | ||
| }, [checkedItems, checklist.length]); | ||
|
|
||
| const typedMatched = useMemo(() => { | ||
| if (!requiredText) return true; | ||
| return typedText.trim() === requiredText.trim(); | ||
| }, [typedText, requiredText]); | ||
|
|
||
| const detailText = useMemo(() => detailItems.join(', '), [detailItems]); | ||
| const canConfirm = allChecked && typedMatched; | ||
|
|
||
| const handleChecklistChange = useCallback((index, checked) => { | ||
| setCheckedItems((previous) => { | ||
| const next = [...previous]; | ||
| next[index] = checked; | ||
| return next; | ||
| }); | ||
| }, []); | ||
|
|
||
| return ( | ||
| <Modal | ||
| visible={visible} | ||
| title={ | ||
| <Space align='center'> | ||
| <IconAlertTriangle style={{ color: 'var(--semi-color-warning)' }} /> | ||
| <span>{title}</span> | ||
| </Space> | ||
| } | ||
| width={isMobile ? '100%' : 860} | ||
| centered | ||
| maskClosable={false} | ||
| closeOnEsc={false} | ||
| onCancel={onCancel} | ||
| bodyStyle={{ | ||
| maxHeight: isMobile ? '70vh' : '72vh', | ||
| overflowY: 'auto', | ||
| padding: isMobile ? '12px 16px' : '18px 22px', | ||
| }} | ||
| footer={ | ||
| <Space> | ||
| <Button onClick={onCancel}>{cancelText}</Button> | ||
| <Button | ||
| theme='solid' | ||
| type='danger' | ||
| disabled={!canConfirm} | ||
| onClick={onConfirm} | ||
| > | ||
| {confirmText} | ||
| </Button> | ||
| </Space> | ||
| } | ||
| > | ||
| <div className='flex flex-col gap-4'> | ||
| <div | ||
| className='rounded-lg' | ||
| style={{ | ||
| border: '1px solid var(--semi-color-warning-light-hover)', | ||
| background: 'var(--semi-color-warning-light-default)', | ||
| padding: isMobile ? '10px 12px' : '12px 14px', | ||
| }} | ||
| > | ||
| </div> | ||
|
|
||
| <RiskMarkdownBlock markdownContent={markdownContent} /> | ||
|
|
||
| {detailItems.length > 0 ? ( | ||
| <div | ||
| className='flex flex-col gap-2 rounded-lg' | ||
| style={{ | ||
| border: '1px solid var(--semi-color-warning-light-hover)', | ||
| background: 'var(--semi-color-fill-0)', | ||
| padding: isMobile ? '10px 12px' : '12px 14px', | ||
| }} | ||
| > | ||
| {detailTitle ? <Text strong>{detailTitle}</Text> : null} | ||
| <div className='font-mono text-xs break-all bg-orange-50 border border-orange-200 rounded-md p-2'> | ||
| {detailText} | ||
| </div> | ||
| </div> | ||
| ) : null} | ||
|
|
||
| {checklist.length > 0 ? ( | ||
| <div | ||
| className='flex flex-col gap-2 rounded-lg' | ||
| style={{ | ||
| border: '1px solid var(--semi-color-border)', | ||
| background: 'var(--semi-color-fill-0)', | ||
| padding: isMobile ? '10px 12px' : '12px 14px', | ||
| }} | ||
| > | ||
| {checklist.map((item, index) => ( | ||
| <Checkbox | ||
| key={`risk-check-${index}`} | ||
| checked={!!checkedItems[index]} | ||
| onChange={(event) => { | ||
| handleChecklistChange(index, event.target.checked); | ||
| }} | ||
| > | ||
| {item} | ||
| </Checkbox> | ||
| ))} | ||
| </div> | ||
| ) : null} | ||
|
|
||
| {requiredText ? ( | ||
| <div | ||
| className='flex flex-col gap-2 rounded-lg' | ||
| style={{ | ||
| border: '1px solid var(--semi-color-danger-light-hover)', | ||
| background: 'var(--semi-color-danger-light-default)', | ||
| padding: isMobile ? '10px 12px' : '12px 14px', | ||
| }} | ||
| > | ||
| {inputPrompt ? <Text strong>{inputPrompt}</Text> : null} | ||
| <div className='font-mono text-xs break-all rounded-md p-2 bg-gray-50 border border-gray-200'> | ||
| {requiredText} | ||
| </div> | ||
| <Input | ||
| value={typedText} | ||
| onChange={setTypedText} | ||
| placeholder={inputPlaceholder} | ||
| autoFocus={visible} | ||
| onCopy={(event) => event.preventDefault()} | ||
| onCut={(event) => event.preventDefault()} | ||
| onPaste={(event) => event.preventDefault()} | ||
| onDrop={(event) => event.preventDefault()} | ||
| /> | ||
| {!typedMatched && typedText ? ( | ||
| <Text type='danger' size='small'> | ||
| {mismatchText} | ||
| </Text> | ||
| ) : null} | ||
| </div> | ||
| ) : null} | ||
| </div> | ||
| </Modal> | ||
| ); | ||
| }); | ||
|
|
||
| export default RiskAcknowledgementModal; | ||
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove or populate the empty warning banner.
Lines 139-147 render a styled container with no content, which shows as a blank block in the modal.
🧹 Proposed cleanup
📝 Committable suggestion
🤖 Prompt for AI Agents