1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-17 16:52:09 +00:00
seahub/frontend/src/components/tree-dir-view/tree-dir-list.js

34 lines
1003 B
JavaScript
Raw Normal View History

2018-09-04 09:16:50 +00:00
import React, { Component } from 'react';
import { serviceUrl } from '../constants';
2018-09-04 09:16:50 +00:00
class TreeDirList extends React.Component {
constructor(props) {
super(props);
this.state = {
isMourseEnter: false
}
}
onMainNodeClick = () => {
this.props.onMainNodeClick(this.props.node);
}
render() {
let node = this.props.node;
return (
<tr className='row' onMouseEnter={this.onMouseEnter} onMouseLeave={this.onMouseLeave}>
<td className="dirent-icon" style={{width: "5%"}}>
2018-09-12 03:50:41 +00:00
<img src={node.type === "dir" ? serviceUrl + "/media/img/folder-192.png" : serviceUrl + "/media/img/file/192/txt.png"}></img>
2018-09-04 09:16:50 +00:00
</td>
<td style={{width: "60%"}}>
<a className="custom-link" onClick={this.onMainNodeClick}>{node.name}</a>
</td>
<td style={{width: "15%"}}>{node.size}</td>
<td style={{width: "20%"}} title={node.last_update_time}>{node.last_update_time}</td>
</tr>
)
}
}
export default TreeDirList;