Spaces:
Running
Running
File size: 9,005 Bytes
3444669 28f2243 3444669 3283b52 28f2243 3283b52 28f2243 3444669 28f2243 3444669 b22362b 3444669 b22362b 3444669 47eb5bf 3444669 47eb5bf 2c42897 47eb5bf 3444669 407e55b b22362b 9f614f8 3444669 b22362b 3444669 b22362b 3444669 47eb5bf 3444669 689a1dd 3444669 689a1dd 3444669 b8385e3 3444669 b22362b 3444669 ad0710e 689a1dd a316c97 689a1dd 3444669 47eb5bf a272232 3444669 b22362b 3444669 28f2243 689a1dd 3444669 689a1dd bf55e19 689a1dd 3444669 28f2243 3444669 689a1dd 28f2243 3444669 |
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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
import { useState, useEffect } from "react";
import styles from "./user.module.scss";
import EditIcon from "../icons/edit.svg";
import { List, ListItem, Modal, Popover, showModal, showToast } from "./ui-lib";
import { IconButton } from "./button";
import {
useAccessStore,
useAppConfig,
} from "../store";
import Locale from "../locales";
import { Path } from "../constant";
import { ErrorBoundary } from "./error";
import { useNavigate } from "react-router-dom";
import { Avatar, AvatarPicker } from "./emoji";
import { useUserStore } from "../store/user";
import { encrypt } from "../rsaEncrypt";
function UserPwdModal(props: { onClose?: () => void }) {
const useStor = useUserStore()
const [oldPwd, setOldPwd] = useState('');
const [newPwd, setNewPwd] = useState('');
const [newPwd1, setNewPwd1] = useState('');
async function updatePass():Promise<any>{
if(newPwd!=newPwd1){
showToast("两次输入的新密码不一致!")
return false
}
if(oldPwd==newPwd1||oldPwd==newPwd){
showToast("新密码与旧密码一致!")
return false
}
await useStor.updatePass(String(encrypt(oldPwd)),String(encrypt(newPwd)))
}
return (
<div className="modal-mask">
<Modal
title={Locale.User.Pass.Title}
onClose={() => props.onClose?.()}
actions={[
<IconButton
key="add"
icon={<EditIcon />}
onClick={()=>{
updatePass().then(()=>{
props.onClose?.()
})
}}
bordered
text={Locale.User.Save}
/>,
]}
>
<div>
<List>
<ListItem title={Locale.User.Pass.OldPwd}>
<input
type="password"
className={styles.kamicode}
value={oldPwd}
onChange={(e)=>{setOldPwd(e.currentTarget.value)}}
>
</input>
</ListItem>
<ListItem title={Locale.User.Pass.NewPwd}>
<input
type="password"
className={styles.kamicode}
value={newPwd}
onChange={(e)=>{setNewPwd(e.currentTarget.value)}}
>
</input>
</ListItem>
<ListItem title={Locale.User.Pass.NewPwd1}>
<input
type="password"
className={styles.kamicode}
value={newPwd1}
onChange={(e)=>{setNewPwd1(e.currentTarget.value)}}
>
</input>
</ListItem>
</List>
</div>
</Modal>
</div>
);
}
export function User() {
const navigate = useNavigate();
const [showEmojiPicker, setShowEmojiPicker] = useState(false);
const [shouldShowPwdModal, setShowPwdModal] = useState(false);
const config = useAppConfig();
const updateConfig = config.update;
const accessStore = useAccessStore();
const useStor = useUserStore()
const [userName, setUserName] = useState("");
const [kami, setKami] = useState("");
const onUserName = (text: string) => {
setUserName(text)
useStor.updateName(userName)
};
function getVip(){
const curDate = new Date();
const paramDate = new Date(useStor.vip_time.replace(/-/g, "/"));
console.log(paramDate);
if (curDate >= paramDate) {
return true;
}
return false;
}
function getVipTime(){
let time = String(new Date());
if(useStor.vip_time!=null || useStor.vip_time!=''){
console.log(useStor.vip_time)
time=useStor.vip_time
}
const date = new Date(time)
const Y = date.getFullYear()
const M = date.getMonth() + 1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1
const D = date.getDate()
return `${Y} - ${M} - ${D}`
}
useEffect(()=>{
if(accessStore.auth){
useStor.getUserInfo()
}
setUserName(useStor.name)
},[useStor,accessStore])
useEffect(() => {
const keydownEvent = (e: KeyboardEvent) => {
if (e.key === "Escape") {
navigate(Path.Home);
}
};
document.addEventListener("keydown", keydownEvent);
return () => {
document.removeEventListener("keydown", keydownEvent);
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
return (
<ErrorBoundary>
<div className="window-header">
<div className="window-header-title">
<div className="window-header-main-title">
{Locale.User.Title}
</div>
<div className="window-header-sub-title">
{Locale.User.SubTitle}
</div>
</div>
</div>
<div className={styles["user"]}>
<List>
<ListItem title={Locale.Settings.Avatar}>
<Popover
onClose={() => setShowEmojiPicker(false)}
content={
<AvatarPicker
onEmojiClick={(avatar: string) => {
updateConfig((config) => (config.avatar = avatar));
setShowEmojiPicker(false);
}}
/>
}
open={showEmojiPicker}
>
<div
className={styles.avatar}
onClick={() => setShowEmojiPicker(true)}
>
<Avatar avatar={config.avatar} />
</div>
</Popover>
</ListItem>
<ListItem title={Locale.User.Name}>
<input
type="input"
className={styles.name}
value={userName}
disabled={!accessStore.auth}
onBlur={(e)=>{onUserName(e.currentTarget.value)}}
onChange={(e)=>{setUserName(e.currentTarget.value)}}
></input>
</ListItem>
<ListItem title={Locale.User.Mail}>
<span>{useStor.mail}</span>
</ListItem>
<ListItem title={Locale.User.Wallet}>
<div className={styles.font} >
剩余积分:<span className={styles.wallet}>{useStor.wallet}</span>
</div>
</ListItem>
<ListItem title={Locale.User.Vip}>
<div className={styles.font}>
<div className={styles.vipState}>{getVip()?"非会员":"会员"}</div>
<div className={styles.vipTime}>{getVipTime()}</div>
</div>
</ListItem>
</List>
<List>
<ListItem title={Locale.User.kami}>
<div className={styles.kamidiv}>
<input
type="input"
className={styles.kamicode}
value={kami}
onChange={(e)=>{setKami(e.currentTarget.value)}}>
</input>
<IconButton
className={styles.kamiButton}
disabled={!accessStore.auth}
text="兑换"
onClick={()=>{
useStor.useKami(kami)
setKami("")
}}
/>
</div>
</ListItem>
<ListItem title="充值">
<IconButton
text="购买卡密"
onClick={()=>{
window.location.href="https://qtka.scgzfw.cn/links/879AEC7D"
}}
/>
</ListItem>
<ListItem title={Locale.User.SigState}>
<IconButton
disabled={!accessStore.auth}
text="签到(送积分)"
onClick={()=>{
useStor.userSig()
}}
/>
</ListItem>
<ListItem title={Locale.User.Pass.Title}>
<IconButton
disabled={!accessStore.auth}
text={Locale.User.Pass.Title}
onClick={()=>{
setShowPwdModal(true)
}}
/>
</ListItem>
</List>
<List>
<ListItem title="QQ频道">
<IconButton
className={styles.qqButton}
text="加入"
onClick={()=>{
window.location.href="https://pd.qq.com/s/e1veynn5h"
}}
/>
</ListItem>
<ListItem title={Locale.User.Ststus}>
<IconButton
className={styles.logoutButton}
disabled={!accessStore.auth}
text="登出"
onClick={()=>{
useStor.logOut().then(()=>{
accessStore.updateAuth("")
setUserName("")
})
showToast("登出成功!")
}}
/>
</ListItem>
</List>
{shouldShowPwdModal && (
<UserPwdModal onClose={() => setShowPwdModal(false)} />
)}
</div>
</ErrorBoundary>
);
}
|