fix(top): fix top tab redraw bug regression in v0.29.3
This commit is contained in:
@ -12,26 +12,35 @@ class PagesPie extends Component {
|
||||
if (params.replace === 'last') {
|
||||
this.pie.pop();
|
||||
}
|
||||
this.forceUpdate();
|
||||
delete params.replace;
|
||||
}
|
||||
setTimeout(() => {
|
||||
if (Array.isArray(pages)) {
|
||||
for (let i in pages) {
|
||||
this.pie.push({
|
||||
Page: pages[i],
|
||||
params: params
|
||||
});
|
||||
}
|
||||
} else {
|
||||
this.pie.push({
|
||||
Page: pages,
|
||||
params: params
|
||||
});
|
||||
}
|
||||
this.forceUpdate();
|
||||
}, 0);
|
||||
}
|
||||
if (Array.isArray(pages)) {
|
||||
for (let i in pages) {
|
||||
this.pie.push({
|
||||
Page: pages[i],
|
||||
params: params
|
||||
});
|
||||
}
|
||||
} else {
|
||||
this.pie.push({
|
||||
Page: pages,
|
||||
params: params
|
||||
});
|
||||
}
|
||||
if(this._mounted)
|
||||
this.forceUpdate()
|
||||
}
|
||||
|
||||
componentWillMount()
|
||||
{
|
||||
this._mounted = true
|
||||
}
|
||||
|
||||
componentWillUnmount()
|
||||
{
|
||||
this._mounted = false
|
||||
}
|
||||
|
||||
close(count) {
|
||||
if (count && typeof count === 'number') {
|
||||
for (let i = 0; i < count; i++) {
|
||||
@ -50,7 +59,7 @@ class PagesPie extends Component {
|
||||
}
|
||||
// ОТРИСОВКА
|
||||
render() {
|
||||
if (this.pie.length > 0) {
|
||||
if (this.pie.length > 0) {
|
||||
return (
|
||||
<div
|
||||
className={'pie full-size ' + (this.props.className || '')}
|
||||
|
@ -50,8 +50,12 @@ export default class TopPage extends Page {
|
||||
}
|
||||
mergeTorrents(torrents, type, time)
|
||||
{
|
||||
let isNewTab = false
|
||||
if(!this.topTorrents[type])
|
||||
{
|
||||
this.topTorrents[type] = {}
|
||||
isNewTab = true
|
||||
}
|
||||
if(!this.topTorrents[type][time])
|
||||
this.topTorrents[type][time] = {torrents: [], page: 0}
|
||||
|
||||
@ -60,7 +64,7 @@ export default class TopPage extends Page {
|
||||
|
||||
this.topTorrents[type][time].torrents = _.orderBy(_.unionBy(this.topTorrents[type][time].torrents, torrents, 'hash'), ['seeders'], ['desc'])
|
||||
|
||||
if(this.state.type == type && this.state.time == time)
|
||||
if((this.state.type == type && this.state.time == time) || isNewTab)
|
||||
{
|
||||
this._update();
|
||||
}
|
||||
|
Reference in New Issue
Block a user