File size: 5,166 Bytes
4674012 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
/*
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 from 'react';
import { Modal, Badge } from '@douyinfe/semi-ui';
import { renderQuota, renderNumber } from '../../../../helpers';
const UserInfoModal = ({
showUserInfo,
setShowUserInfoModal,
userInfoData,
t,
}) => {
const infoItemStyle = {
marginBottom: '16px',
};
const labelStyle = {
display: 'flex',
alignItems: 'center',
marginBottom: '2px',
fontSize: '12px',
color: 'var(--semi-color-text-2)',
gap: '6px',
};
const renderLabel = (text, type = 'tertiary') => (
<div style={labelStyle}>
<Badge dot type={type} />
{text}
</div>
);
const valueStyle = {
fontSize: '14px',
fontWeight: '600',
color: 'var(--semi-color-text-0)',
};
const rowStyle = {
display: 'flex',
justifyContent: 'space-between',
marginBottom: '16px',
gap: '20px',
};
const colStyle = {
flex: 1,
minWidth: 0,
};
return (
<Modal
title={t('用户信息')}
visible={showUserInfo}
onCancel={() => setShowUserInfoModal(false)}
footer={null}
centered
closable
maskClosable
width={600}
>
{userInfoData && (
<div style={{ padding: 20 }}>
{/* 基本信息 */}
<div style={rowStyle}>
<div style={colStyle}>
{renderLabel(t('用户名'), 'primary')}
<div style={valueStyle}>{userInfoData.username}</div>
</div>
{userInfoData.display_name && (
<div style={colStyle}>
{renderLabel(t('显示名称'), 'primary')}
<div style={valueStyle}>{userInfoData.display_name}</div>
</div>
)}
</div>
{/* 余额信息 */}
<div style={rowStyle}>
<div style={colStyle}>
{renderLabel(t('余额'), 'success')}
<div style={valueStyle}>{renderQuota(userInfoData.quota)}</div>
</div>
<div style={colStyle}>
{renderLabel(t('已用额度'), 'warning')}
<div style={valueStyle}>
{renderQuota(userInfoData.used_quota)}
</div>
</div>
</div>
{/* 统计信息 */}
<div style={rowStyle}>
<div style={colStyle}>
{renderLabel(t('请求次数'), 'warning')}
<div style={valueStyle}>
{renderNumber(userInfoData.request_count)}
</div>
</div>
{userInfoData.group && (
<div style={colStyle}>
{renderLabel(t('用户组'), 'tertiary')}
<div style={valueStyle}>{userInfoData.group}</div>
</div>
)}
</div>
{/* 邀请信息 */}
{(userInfoData.aff_code || userInfoData.aff_count !== undefined) && (
<div style={rowStyle}>
{userInfoData.aff_code && (
<div style={colStyle}>
{renderLabel(t('邀请码'), 'tertiary')}
<div style={valueStyle}>{userInfoData.aff_code}</div>
</div>
)}
{userInfoData.aff_count !== undefined && (
<div style={colStyle}>
{renderLabel(t('邀请人数'), 'tertiary')}
<div style={valueStyle}>
{renderNumber(userInfoData.aff_count)}
</div>
</div>
)}
</div>
)}
{/* 邀请获得额度 */}
{userInfoData.aff_quota !== undefined &&
userInfoData.aff_quota > 0 && (
<div style={infoItemStyle}>
{renderLabel(t('邀请获得额度'), 'success')}
<div style={valueStyle}>
{renderQuota(userInfoData.aff_quota)}
</div>
</div>
)}
{/* 备注 */}
{userInfoData.remark && (
<div style={{ marginBottom: 0 }}>
{renderLabel(t('备注'), 'tertiary')}
<div
style={{
...valueStyle,
wordBreak: 'break-all',
lineHeight: '1.4',
}}
>
{userInfoData.remark}
</div>
</div>
)}
</div>
)}
</Modal>
);
};
export default UserInfoModal;
|