1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-10 11:21:29 +00:00

Files view mode sort (#6210)

* ['Files'] added 'view mode' options & added 'grid' mode for 'My Libraries' & 'Shared with me'

* ['Files'] added 'grid' mode for 'Shared with all' & 'department/group'; redesigned the empty tip for 'grid' mode; replaced 'star/unstar/monitored' icons

* ['Files'] added 'sort'(WIP)

* ['Files' page] added 'sort' for all the libraries
This commit is contained in:
llj
2024-06-17 09:32:05 +08:00
committed by GitHub
parent 140fd4856e
commit 2641d89553
11 changed files with 448 additions and 153 deletions

View File

@@ -1,22 +1,20 @@
import React, { Fragment } from 'react';
import PropTypes from 'prop-types';
import { UncontrolledTooltip } from 'reactstrap';
import Icon from '../components/icon';
import { gettext } from '../utils/constants';
const propTypes = {
repoID: PropTypes.string.isRequired
repoID: PropTypes.string.isRequired,
className: PropTypes.string
};
class RepoMonitoredIcon extends React.Component {
render() {
const { repoID } = this.props;
const { repoID, className } = this.props;
return (
<Fragment>
<span id={`watching-${repoID}`} className="ml-1">
<Icon symbol='monitor' />
</span>
<i id={`watching-${repoID}`} className={`sf3-font-monitor sf3-font ${className ? className : ''}`}></i>
<UncontrolledTooltip
placement="bottom"
target={`#watching-${repoID}`}