forked from newthuhole/hole_thu_frontend
add reload and error handling
This commit is contained in:
94
src/Flows.js
94
src/Flows.js
@@ -48,7 +48,7 @@ class FlowItemRow extends Component {
|
|||||||
super(props);
|
super(props);
|
||||||
this.state={
|
this.state={
|
||||||
replies: [],
|
replies: [],
|
||||||
reply_loading: false,
|
reply_status: 'done',
|
||||||
};
|
};
|
||||||
this.info=props.info;
|
this.info=props.info;
|
||||||
this.color_picker=new ColorPicker();
|
this.color_picker=new ColorPicker();
|
||||||
@@ -56,15 +56,15 @@ class FlowItemRow extends Component {
|
|||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
if(parseInt(this.info.reply,10)) {
|
if(parseInt(this.info.reply,10)) {
|
||||||
this.setState({
|
|
||||||
reply_loading: true,
|
|
||||||
});
|
|
||||||
this.load_replies();
|
this.load_replies();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
load_replies() {
|
load_replies(callback) {
|
||||||
console.log('fetching reply',this.info.pid);
|
console.log('fetching reply',this.info.pid);
|
||||||
|
this.setState({
|
||||||
|
reply_status: 'loading',
|
||||||
|
});
|
||||||
fetch(API_BASE+'/api.php?action=getcomment&pid='+this.info.pid)
|
fetch(API_BASE+'/api.php?action=getcomment&pid='+this.info.pid)
|
||||||
.then((res)=>res.json())
|
.then((res)=>res.json())
|
||||||
.then((json)=>{
|
.then((json)=>{
|
||||||
@@ -76,34 +76,54 @@ class FlowItemRow extends Component {
|
|||||||
return parseInt(a.timestamp,10)-parseInt(b.timestamp,10);
|
return parseInt(a.timestamp,10)-parseInt(b.timestamp,10);
|
||||||
})
|
})
|
||||||
.map((info)=>{
|
.map((info)=>{
|
||||||
info._display_color=info.islz ? null : this.color_picker.get(info.name)
|
info._display_color=info.islz ? null : this.color_picker.get(info.name);
|
||||||
return info;
|
return info;
|
||||||
}),
|
}),
|
||||||
reply_loading: false,
|
reply_status: 'done',
|
||||||
});
|
},callback);
|
||||||
|
})
|
||||||
|
.catch((e)=>{
|
||||||
|
console.trace(e);
|
||||||
|
this.setState({
|
||||||
|
replies: [],
|
||||||
|
reply_status: 'failed',
|
||||||
|
},callback);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
show_sidebar() {
|
||||||
|
this.props.callback(
|
||||||
|
'帖子详情',
|
||||||
|
<div className="flow-item-row sidebar-flow-item">
|
||||||
|
<div className="box box-tip">
|
||||||
|
<a onClick={()=>{
|
||||||
|
this.props.callback('帖子详情',<p className="box box-tip">加载中……</p>);
|
||||||
|
this.load_replies(this.show_sidebar);
|
||||||
|
}}>更新回复</a>
|
||||||
|
</div>
|
||||||
|
<FlowItem info={this.info} />
|
||||||
|
{this.state.replies.map((reply)=><Reply info={reply} key={reply.cid} />)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
// props.do_show_details
|
// props.do_show_details
|
||||||
return (
|
return (
|
||||||
<div className="flow-item-row" onClick={(event)=>{
|
<div className="flow-item-row" onClick={(event)=>{
|
||||||
if(!CLICKABLE_TAGS[event.target.tagName.toLowerCase()])
|
if(!CLICKABLE_TAGS[event.target.tagName.toLowerCase()])
|
||||||
this.props.callback(
|
this.show_sidebar();
|
||||||
'帖子详情',
|
|
||||||
<div className="flow-item-row sidebar-flow-item">
|
|
||||||
<FlowItem info={this.info} />
|
|
||||||
{this.state.replies.map((reply)=><Reply info={reply} key={reply.cid} />)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}}>
|
}}>
|
||||||
<FlowItem info={this.info} />
|
<FlowItem info={this.info} />
|
||||||
<div className="flow-reply-row">
|
<div className="flow-reply-row">
|
||||||
{!!this.state.reply_loading && <div className="box box-tip">加载中</div>}
|
{this.state.reply_status==='loading' && <div className="box box-tip">加载中</div>}
|
||||||
|
{this.state.reply_status==='failed' &&
|
||||||
|
<div className="box box-tip"><a onClick={()=>{this.load_replies()}}>重新加载</a></div>
|
||||||
|
}
|
||||||
{this.state.replies.slice(0,PREVIEW_REPLY_COUNT).map((reply)=><Reply info={reply} key={reply.cid} />)}
|
{this.state.replies.slice(0,PREVIEW_REPLY_COUNT).map((reply)=><Reply info={reply} key={reply.cid} />)}
|
||||||
{this.state.replies.length>PREVIEW_REPLY_COUNT && <div className="box box-tip">
|
{this.state.replies.length>PREVIEW_REPLY_COUNT &&
|
||||||
还有 {this.state.replies.length-PREVIEW_REPLY_COUNT} 条
|
<div className="box box-tip">还有 {this.state.replies.length-PREVIEW_REPLY_COUNT} 条</div>
|
||||||
</div>}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@@ -135,7 +155,7 @@ export class Flow extends Component {
|
|||||||
search_param: props.search_text,
|
search_param: props.search_text,
|
||||||
loaded_pages: 0,
|
loaded_pages: 0,
|
||||||
chunks: [],
|
chunks: [],
|
||||||
loading: false,
|
loading_status: 'done',
|
||||||
};
|
};
|
||||||
this.on_scroll_bound=this.on_scroll.bind(this);
|
this.on_scroll_bound=this.on_scroll.bind(this);
|
||||||
}
|
}
|
||||||
@@ -159,12 +179,15 @@ export class Flow extends Component {
|
|||||||
!(prev.chunks[prev.chunks.length-1].data.some((p)=>p.pid===x.pid))
|
!(prev.chunks[prev.chunks.length-1].data.some((p)=>p.pid===x.pid))
|
||||||
)),
|
)),
|
||||||
}]),
|
}]),
|
||||||
loading: false,
|
loading_status: 'done',
|
||||||
}));
|
}));
|
||||||
})
|
})
|
||||||
.catch((err)=>{
|
.catch((err)=>{
|
||||||
console.trace(err);
|
console.trace(err);
|
||||||
alert('load failed');
|
this.setState((prev,props)=>({
|
||||||
|
loaded_pages: prev.loaded_pages-1,
|
||||||
|
loading_status: 'failed',
|
||||||
|
}));
|
||||||
});
|
});
|
||||||
} else if(this.state.mode==='search') {
|
} else if(this.state.mode==='search') {
|
||||||
fetch(
|
fetch(
|
||||||
@@ -183,12 +206,15 @@ export class Flow extends Component {
|
|||||||
data: json.data,
|
data: json.data,
|
||||||
mode: finished ? 'search_finished' : 'search',
|
mode: finished ? 'search_finished' : 'search',
|
||||||
}],
|
}],
|
||||||
loading: false,
|
loading_status: 'done',
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch((err)=>{
|
.catch((err)=>{
|
||||||
console.trace(err);
|
console.trace(err);
|
||||||
alert('load failed');
|
this.setState((prev,props)=>({
|
||||||
|
loaded_pages: prev.loaded_pages-1,
|
||||||
|
loading_status: 'failed',
|
||||||
|
}));
|
||||||
});
|
});
|
||||||
} else if(this.state.mode==='single') {
|
} else if(this.state.mode==='single') {
|
||||||
const pid=parseInt(this.state.search_param.substr(1),10);
|
const pid=parseInt(this.state.search_param.substr(1),10);
|
||||||
@@ -206,29 +232,32 @@ export class Flow extends Component {
|
|||||||
data: [json.data],
|
data: [json.data],
|
||||||
}],
|
}],
|
||||||
mode: 'single_finished',
|
mode: 'single_finished',
|
||||||
loading: false,
|
loading_status: 'done',
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch((err)=>{
|
.catch((err)=>{
|
||||||
console.trace(err);
|
console.trace(err);
|
||||||
alert('load failed');
|
this.setState((prev,props)=>({
|
||||||
|
loaded_pages: prev.loaded_pages-1,
|
||||||
|
loading_status: 'failed',
|
||||||
|
}));
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
console.log('nothing to load');
|
console.log('nothing to load');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState((prev,props)=>({
|
this.setState((prev,props)=>({
|
||||||
loaded_pages: prev.loaded_pages+1,
|
loaded_pages: prev.loaded_pages+1,
|
||||||
loading: true,
|
loading_status: 'loading',
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
on_scroll(event) {
|
on_scroll(event) {
|
||||||
if(event.target===document) {
|
if(event.target===document) {
|
||||||
//console.log(event);
|
|
||||||
const avail=document.body.scrollHeight-window.scrollY-window.innerHeight;
|
const avail=document.body.scrollHeight-window.scrollY-window.innerHeight;
|
||||||
if(avail<window.innerHeight && this.state.loading===false)
|
if(avail<window.innerHeight && this.state.loading_status==='done')
|
||||||
this.load_page(this.state.loaded_pages+1);
|
this.load_page(this.state.loaded_pages+1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -249,7 +278,12 @@ export class Flow extends Component {
|
|||||||
{this.state.chunks.map((chunk)=>(
|
{this.state.chunks.map((chunk)=>(
|
||||||
<FlowChunk title={chunk.title} list={chunk.data} key={chunk.title} callback={this.props.callback} />
|
<FlowChunk title={chunk.title} list={chunk.data} key={chunk.title} callback={this.props.callback} />
|
||||||
))}
|
))}
|
||||||
<TitleLine text={this.state.loading ? 'Loading...' : '© xmcp'} />
|
{this.state.loading_status==='failed' &&
|
||||||
|
<div className="box box-tip">
|
||||||
|
<a onClick={()=>{this.load_page(this.state.loaded_pages+1)}}>重新加载</a>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
<TitleLine text={this.state.loading_status==='loading' ? 'Loading...' : '© xmcp'} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 2;
|
z-index: 20;
|
||||||
}
|
}
|
||||||
.sidebar-on .sidebar-shadow {
|
.sidebar-on .sidebar-shadow {
|
||||||
opacity: .3;
|
opacity: .3;
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
width: calc(100% - 700px);
|
width: calc(100% - 700px);
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
background-color: rgba(255,255,255,.8);
|
background-color: rgba(255,255,255,.8);
|
||||||
z-index: 3;
|
z-index: 21;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
.sidebar-on .sidebar {
|
.sidebar-on .sidebar {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
.title-bar {
|
.title-bar {
|
||||||
z-index: 1;
|
z-index: 10;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: -6em;
|
top: -6em;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user