casnode/web/src/main/FavoritesBox.js

213 lines
6.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright 2020 The casbin Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import React from "react";
import * as Setting from "../Setting";
import {Link, withRouter} from "react-router-dom";
import * as FavoritesBackend from "../backend/FavoritesBackend";
import TopicList from "./TopicList";
import PageColumn from "./PageColumn";
import i18next from "i18next";
class FavoritesBox extends React.Component {
constructor(props) {
super(props);
this.state = {
classes: props,
favoritesType: props.match.params.favorites,
favorites: [],
subscribes: [],
p: "",
page: 1,
limit: 20,
minPage: 1,
maxPage: -1,
favoritesNum: 0,
subscribesNum: 0,
temp: 0,
url: "",
};
const params = new URLSearchParams(this.props.location.search);
this.state.p = params.get("p");
if (this.state.p === null) {
this.state.page = 1;
} else {
this.state.page = parseInt(this.state.p);
}
this.state.url = `/my/${this.state.favoritesType}`;
}
componentDidMount() {
this.getFavoritesInfo();
}
componentWillReceiveProps(newProps) {
if (newProps.location !== this.props.location) {
const params = new URLSearchParams(newProps.location.search);
let page = params.get("p");
if (page === null) {
page = 1;
}
this.setState(
{
page: parseInt(page),
favoritesType: newProps.match.params.favorites,
},
() => this.getFavoritesInfo()
);
}
}
getFavoritesInfo() {
let favoritesType;
switch (this.state.favoritesType) {
case "topics":
favoritesType = "favor_topic";
break;
case "following":
favoritesType = "follow_user";
break;
case "nodes":
favoritesType = "favor_node";
break;
default:
return;
}
FavoritesBackend.getFavorites(favoritesType, this.state.limit, this.state.page).then((res) => {
if (res.status === "ok") {
this.setState({
favorites: res.data,
favoritesNum: res.data2,
});
}
});
if (favoritesType === "favor_topic") {
FavoritesBackend.getFavorites("subscribe_topic", this.state.limit, this.state.page).then((res) => {
if (res.status === "ok") {
this.setState({
subscribes: res.data,
subscribesNum: res.data2,
});
}
});
}
}
renderNodes(node) {
if (node.nodeInfo == null) {
return;
}
return (
<Link className="grid_item" to={`/go/${node?.nodeInfo.id}`}>
<div
style={{
display: "table",
padding: "20px 0px 20px 0px",
width: "100%",
textAlign: "center",
fontSize: "14px",
}}
>
<img src={node?.nodeInfo.image} border="0" align="default" width="73" alt={node?.nodeInfo.name} />
<div className="sep10"></div>
{node?.nodeInfo.name}
<div className="sep5"></div>
<span className="fade f12">
<li className="fa fa-comments"></li>
{node?.topicNum}
</span>
</div>
</Link>
);
}
showPageColumn() {
if (this.state.favoritesNum < this.state.limit) {
return;
}
return <PageColumn page={this.state.page} total={this.state.favoritesNum} url={this.state.url} defaultPageNum={this.state.limit} />;
}
render() {
switch (this.state.favoritesType) {
case "nodes":
return (
<div className="box">
<div className="header">
<Link to="/">{Setting.getForumName()}</Link>
<span className="chevron">&nbsp;&nbsp;</span> {i18next.t("fav:My Favorite Nodes")}
<div className="fr f12">
<span className="snow">{i18next.t("fav:Total nodes")} &nbsp;</span>
<strong className="gray">{this.state.favoritesNum}</strong>
</div>
</div>
<div id="my-nodes">
{this.state.favorites.map((node) => {
return this.renderNodes(node);
})}
</div>
</div>
);
case "topics":
return (
<div className="box">
<div className="header">
<Link to="/">{Setting.getForumName()}</Link>
<span className="chevron">&nbsp;&nbsp;</span> {i18next.t("fav:My favorite topics")}
<div className="fr f12">
<span className="snow">{i18next.t("fav:Total topics")} &nbsp;</span>
<strong className="gray">{this.state.favoritesNum}</strong>
</div>
</div>
<TopicList topics={this.state.favorites} showNodeName={true} showAvatar={true} />
<div className="sep20" />
<div className="header">
<Link to="/">{Setting.getForumName()}</Link>
<span className="chevron">&nbsp;&nbsp;</span> {i18next.t("fav:My subscribe topics")}
<div className="fr f12">
<span className="snow">{i18next.t("fav:Total topics")} &nbsp;</span>
<strong className="gray">{this.state.subscribesNum}</strong>
</div>
</div>
<TopicList topics={this.state.subscribes} showNodeName={true} showAvatar={true} />
</div>
);
case "following":
return (
<div className="box">
<div className="header">
<Link to="/">{Setting.getForumName()}</Link>
<span className="chevron">&nbsp;&nbsp;</span> {i18next.t("fav:Latest topics from people I followed")}
<div className="fr f12">
<span className="snow">{i18next.t("fav:Total topics")} &nbsp;</span>
<strong className="gray">{this.state.favoritesNum}</strong>
</div>
</div>
{Setting.PcBrowser ? this.showPageColumn() : null}
<TopicList topics={this.state.favorites} showNodeName={true} showAvatar={true} />
{this.showPageColumn()}
</div>
);
default:
return <div className="box">{this.state.favoritesType}</div>;
}
}
}
export default withRouter(FavoritesBox);