import React, {Component, PureComponent} from 'react'; import {PKUHELPER_ROOT} from './flows_api'; import {split_text,NICKNAME_RE,PID_RE,URL_RE} from './text_splitter' import TimeAgo from 'react-timeago'; import chineseStrings from 'react-timeago/lib/language-strings/zh-CN'; import buildFormatter from 'react-timeago/lib/formatters/buildFormatter'; import './Common.css'; const chinese_format=buildFormatter(chineseStrings); export const API_BASE=PKUHELPER_ROOT+'services/pkuhole'; function pad2(x) { return x<10 ? '0'+x : ''+x; } export function format_time(time) { return `${time.getMonth()+1}-${pad2(time.getDate())} ${time.getHours()}:${pad2(time.getMinutes())}:${pad2(time.getSeconds())}`; } export function Time(props) { const time=new Date(props.stamp*1000); return (   {format_time(time)} ); } export function TitleLine(props) { return (

{props.text}

) } export class HighlightedText extends PureComponent { render() { let parts=split_text(this.props.text,[ ['url',URL_RE], ['pid',PID_RE], ['nickname',NICKNAME_RE], ]); function normalize_url(url) { return /^https?:\/\//.test(url) ? url : 'http://'+url; } return (
                {parts.map((part,idx)=>{
                    let [rule,p]=part;
                    return (
                        {
                            rule==='url' ? {p} :
                            rule==='pid' ? {e.preventDefault(); this.props.show_pid(p);}}>{p} :
                            rule==='nickname' ? {p} :
                            p
                        }
                    );
                })}
            
) } } window.TEXTAREA_BACKUP={}; export class SafeTextarea extends Component { constructor(props) { super(props); this.state={ text: window.TEXTAREA_BACKUP[props.id]||'', }; this.on_change_bound=this.on_change.bind(this); this.on_keydown_bound=this.on_keydown.bind(this); this.clear=this.clear.bind(this); this.area_ref=React.createRef(); this.change_callback=props.on_change||(()=>{}); this.change_callback(this.state.text); this.submit_callback=props.on_submit||(()=>{}); } componentWillUnmount() { window.TEXTAREA_BACKUP[this.props.id]=this.state.text; this.change_callback(this.state.text); } on_change(event) { this.setState({ text: event.target.value, }); this.change_callback(event.target.value); } on_keydown(event) { if(event.key==='Enter' && event.ctrlKey && !event.altKey) { event.preventDefault(); this.submit_callback(); } } clear() { this.setState({ text: '', }); } set(text) { this.change_callback(text); this.setState({ text: text, }); } get() { return this.state.text; } focus() { this.area_ref.current.focus(); } render() { return (