import React, {Component, PureComponent} from 'react'; import copy from 'copy-to-clipboard'; import {API_BASE,SafeTextarea} from './Common'; import {MessageViewer} from './Message'; import {API_VERSION_PARAM, PKUHELPER_ROOT, API, get_json, token_param} from './flows_api'; import './UserAction.css'; import {LoginPopup} from './infrastructure/widgets'; const BASE64_RATE=4/3; const MAX_IMG_DIAM=8000; const MAX_IMG_PX=6000000; const MAX_IMG_FILESIZE=450000*BASE64_RATE; export const TokenCtx=React.createContext({ value: null, set_value: ()=>{}, }); class ResetUsertokenWidget extends Component { constructor(props) { super(props); this.state={ loading_status: 'done', }; } do_reset() { if(window.confirm('您正在重置 UserToken!\n您的账号将会在【所有设备】上注销,您需要手动重新登录!')) { let uid=window.prompt('您正在重置 UserToken!\n请输入您的学号以确认身份:'); if(uid) this.setState({ loading_status: 'loading', },()=>{ fetch(PKUHELPER_ROOT+'api_xmcp/hole/reset_usertoken', { method: 'post', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ user_token: this.props.token, uid: uid, }), }) .then(get_json) .then((json)=>{ if(json.error) throw new Error(json.error); else alert('重置成功!您需要在所有设备上重新登录。'); this.setState({ loading_status: 'done', }); }) .catch((e)=>{ alert('重置失败:'+e); this.setState({ loading_status: 'done', }); }) }); } } render() { if(this.state.loading_status==='done') return (重置); else if(this.state.loading_status==='loading') return (); } } export class LoginForm extends Component { copy_token(token) { if(copy(token)) alert('复制成功!\n请一定不要泄露哦'); } render() { return ( {(token)=>
{token.value ?

您已登录。

根据计算中心要求,访问授权三个月内有效。
若提示“授权过期”,请注销后重新登录。

{this.props.show_sidebar( '系统消息', )}}>查看系统消息
当您发送的内容违规时,我们将用系统消息提示您

复制 User Token
User Token 用于迁移登录状态,切勿告知他人,若怀疑被盗号请尽快

: {(do_popup)=>(

PKU Helper 面向北京大学学生,通过 ISOP(北京大学数据共享开放服务平台)验证您的身份并提供服务。

)}
}
}
) } } export class ReplyForm extends Component { constructor(props) { super(props); this.state={ text: '', loading_status: 'done', }; this.on_change_bound=this.on_change.bind(this); this.area_ref=this.props.area_ref||React.createRef(); this.global_keypress_handler_bound=this.global_keypress_handler.bind(this); } global_keypress_handler(e) { if(e.code==='Enter' && !e.ctrlKey && !e.altKey && ['input','textarea'].indexOf(e.target.tagName.toLowerCase())===-1) { if(this.area_ref.current) { e.preventDefault(); this.area_ref.current.focus(); } } } componentDidMount() { document.addEventListener('keypress',this.global_keypress_handler_bound); } componentWillUnmount() { document.removeEventListener('keypress',this.global_keypress_handler_bound); } on_change(value) { this.setState({ text: value, }); } on_submit(event) { if(event) event.preventDefault(); if(this.state.loading_status==='loading') return; this.setState({ loading_status: 'loading', }); let data=new URLSearchParams(); data.append('pid',this.props.pid); data.append('text',this.state.text); data.append('user_token',this.props.token); fetch(API_BASE+'/api.php?action=docomment'+token_param(this.props.token), { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: data, }) .then(get_json) .then((json)=>{ if(json.code!==0) { if(json.msg) alert(json.msg); throw new Error(JSON.stringify(json)); } this.setState({ loading_status: 'done', text: '', }); this.area_ref.current.clear(); this.props.on_complete(); }) .catch((e)=>{ console.error(e); alert('回复失败'); this.setState({ loading_status: 'done', }); }); } render() { return (
{this.state.loading_status==='loading' ? : } ) } } export class PostForm extends Component { constructor(props) { super(props); this.state={ text: '', loading_status: 'done', img_tip: null, }; this.img_ref=React.createRef(); this.area_ref=React.createRef(); this.on_change_bound=this.on_change.bind(this); this.on_img_change_bound=this.on_img_change.bind(this); } componentDidMount() { if(this.area_ref.current) this.area_ref.current.focus(); } on_change(value) { this.setState({ text: value, }); } do_post(text,img) { let data=new URLSearchParams(); data.append('text',this.state.text); data.append('type',img ? 'image' : 'text'); data.append('user_token',this.props.token); if(img) data.append('data',img); fetch(API_BASE+'/api.php?action=dopost'+token_param(this.props.token), { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: data, }) .then(get_json) .then((json)=>{ if(json.code!==0) { if(json.msg) alert(json.msg); throw new Error(JSON.stringify(json)); } this.setState({ loading_status: 'done', text: '', }); this.area_ref.current.clear(); this.props.on_complete(); }) .catch((e)=>{ console.error(e); alert('发表失败'); this.setState({ loading_status: 'done', }); }); } proc_img(file) { return new Promise((resolve,reject)=>{ function return_url(url) { const idx=url.indexOf(';base64,'); if(idx===-1) throw new Error('img not base64 encoded'); return url.substr(idx+8); } let reader=new FileReader(); reader.onload=((event)=>{ // check size const url=event.target.result; const image = new Image(); image.src=url; image.onload=(()=>{ let width=image.width; let height=image.height; let compressed=false; if(width>MAX_IMG_DIAM) { height=height*MAX_IMG_DIAM/width; width=MAX_IMG_DIAM; compressed=true; } if(height>MAX_IMG_DIAM) { width=width*MAX_IMG_DIAM/height; height=MAX_IMG_DIAM; compressed=true; } if(height*width>MAX_IMG_PX) { let rate=Math.sqrt(height*width/MAX_IMG_PX); height/=rate; width/=rate; compressed=true; } console.log('chosen img size',width,height); let canvas=document.createElement('canvas'); let ctx=canvas.getContext('2d'); canvas.width=width; canvas.height=height; ctx.drawImage(image,0,0,width,height); let quality_l=.1,quality_r=.9,quality,new_url; while(quality_r-quality_l>=.03) { quality=(quality_r+quality_l)/2; new_url=canvas.toDataURL('image/jpeg',quality); console.log(quality_l,quality_r,'trying quality',quality,'size',new_url.length); if(new_url.length<=MAX_IMG_FILESIZE) quality_l=quality; else quality_r=quality; } if(quality_l>=.101) { console.log('chosen img quality',quality); resolve({ img: return_url(new_url), quality: quality, width: Math.round(width), height: Math.round(height), compressed: compressed, }); } else { reject('图片过大,无法上传'); } }); }); reader.readAsDataURL(file); }); } on_img_change() { if(this.img_ref.current && this.img_ref.current.files.length) this.setState({ img_tip: '(正在处理图片……)' },()=>{ this.proc_img(this.img_ref.current.files[0]) .then((d)=>{ this.setState({ img_tip: `(${d.compressed?'压缩到':'尺寸'} ${d.width}*${d.height} / `+ `质量 ${Math.floor(d.quality*100)}% / ${Math.floor(d.img.length/BASE64_RATE/1000)}KB)`, }); }) .catch((e)=>{ this.setState({ img_tip: `图片无效:${e}`, }); }); }); else this.setState({ img_tip: null, }); } on_submit(event) { if(event) event.preventDefault(); if(this.state.loading_status==='loading') return; if(this.img_ref.current.files.length) { this.setState({ loading_status: 'processing', }); this.proc_img(this.img_ref.current.files[0]) .then((d)=>{ this.setState({ loading_status: 'loading', }); this.do_post(this.state.text,d.img); }) .catch((e)=>{ alert(e); }); } else { this.setState({ loading_status: 'loading', }); this.do_post(this.state.text,null); } } render() { return (
{this.state.loading_status!=='done' ? : }
{!!this.state.img_tip &&

{this.img_ref.current.value=""; this.on_img_change();}}>删除图片 {this.state.img_tip}

}

请遵守树洞管理规范,文明发言

) } }