/* 这个程序的流程是 , 首先执行 构造函数 (), 然后 就去执行那个 render 渲染 , 在 render 哪里 的if else 转向应该执行的渲染方法 , 例如 commitsrender
然后当 标签对应的渲染方法执行完毕之后 就over了 .
*/ import React from 'react';
import ajax from 'superagent'; class Detail extends React.Component { // 声明一个 Detail 类 通过关键字 extend 继承自 React.Component
constructor(props) { // construtor 是 构造函数的意思 在任何语言之内 当你用这个类 实例化一个对象之后 , 就会自动执行 构造函数(优先级很高) 。
super(props); // 通过 super 关键字 将 props 这个属性给 该类 的父亲 React.Component this.state = { // 给 this 所指向的对象 , 绑定方法 .
mode: 'commits', // mode 是指定默认的 模式 , 也就是当你打开网页的时候 你首先看到的是 commits 中的内容 .
commits: [], // 现在 声明 this的属性 (state) , (其实 : 后面的内容随意 , 但是为了容易理解下文 所以这里就是 [] 表明这是一个数组 )
forks: [],
pulls: []
};
}
componentWillMount() {
ajax.get('http://192.168.1.100:3000/test1') // 通过这个方法 来获取 地址中的内容 .
.end((error, response) => { // error 来 储存上面的获取内容是否成功 , response 来储存 获取的内容 .
if (!error && response) { // 如果 没有发生错误 , 并且有内容的话
this.setState({ commits: response.body }); // 这里是将 , 上文中的 response.body 的内容 绑定到 , this 下面的conmits 属性 .
} else {
console.log('Error fetching commits', error); // 如果 获取内容出问题的话 就 在web控制台 输出 这里的内容 .
}
}
);
ajax.get('http://192.168.1.100:3000/test2') // 同上
.end((error, response) => {
if (!error && response) {
this.setState({ forks: response.body });
} else {
console.log('Error fetching forks', error);
}
}
);
ajax.get('http://192.168.1.100:3000/test3') // 同上
.end((error, response) => {
if (!error && response) {
this.setState({ pulls: response.body });
} else {
console.log('Error fetching pulls', error);
}
}
);
}
showCommits() { // 这个方法的意思是 展现出来commits的内容 .
this.setState({ mode: 'commits' }); // 在这里 我们昨天说过 可以通过 setstate 这个方法 来监测当 内容改变的时候 会自动刷新页面 .
}
showForks() {
this.setState({ mode: 'forks' }); // 同上
}
showPulls() {
this.setState({ mode: 'pulls' });
}
renderCommits() { // 这里是 渲染 commits的内容 .
return this.state.commits.map((commit, index) => { // 在上面 (15-24) commits , 可以看到commits的储存的 第一个网页中的内容 . index的数值 是从 0 开始 最大值根据 commits的大小来确定 . // 在括号里面 commit 储存 commits的内容 相当于 commit=this.state.commits
const author = commit.author ? commit.author : 'xpower'; // 因为 网页中的是 author 所以当 commit 代表 就等于了 网页的内容 . 可以通过 . 的方法来调用其中和属性
return (<p key={index}> // 这里是 因为采用了匿名函数 , react 不能识别出来 , 网页标签的代号 . 所以在这里需要手动设置 .
<strong>{author}</strong>:
<a href={commit.url}>{commit.url}</a>.// 第一个 commit.url 是实质上点击之后 导向的地址 . 第二个 commit.url是网页上面显示的地址 .
</p>);
});
}
renderForks() {
return this.state.forks.map((fork, index) => {
const owner = fork.owner ? fork.owner : 'Anonymous'; return (<p key={index}>
<strong>{owner}</strong>: forked to
<a href={fork.url}>{fork.url}</a> at {fork.created_at}.
</p>);
});
}
renderPulls() {
return this.state.pulls.map((pull, index) => {
const user = pull.user ? pull.user : 'Anonymous';
return (<p key={index}>
<strong>{user}</strong>:
<a href={pull.url}>{pull.url}</a>.
</p>);
});
}
render() {
let content;
if (this.state.mode === 'commits') { //这几个 if else 适用于检查现在 . 是执行的的哪一个标签 .
content = this.renderCommits(); // 然后开始调用 , 相应标签对应的函数 .
} else if (this.state.mode === 'forks') {
content = this.renderForks();
} else {
content = this.renderPulls();
}
return (<div>
<button onClick={this.showCommits.bind(this)}>Show Commits</button>
<button onClick={this.showForks.bind(this)}>Show Forks</button>
<button onClick={this.showPulls.bind(this)}>Show Pulls</button>
{content}
</div>);
}
}
export default Detail;