1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 19:08:21 +00:00

fix: set width fail (#6509)

* fix: set width fail

* feat: update code

* feat: update code

* feat: update code

* feat: update code

---------

Co-authored-by: 杨国璇 <ygx@Hello-word.local>
This commit is contained in:
杨国璇
2024-08-08 16:10:53 +08:00
committed by GitHub
parent 0921335971
commit e2bb71e8c9
13 changed files with 114 additions and 89 deletions

View File

@@ -1,10 +1,11 @@
import React, { Fragment } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import { gettext } from '../../utils/constants';
import CurDirPath from '../../components/cur-dir-path';
import Detail from '../../components/dirent-detail';
import DirColumnView from '../../components/dir-view-mode/dir-column-view';
import ToolbarForSelectedDirents from '../../components/toolbar/selected-dirents-toolbar';
import { MetadataStatusProvider } from '../../metadata/hooks';
import '../../css/lib-content-view.css';
@@ -120,12 +121,10 @@ class LibContentContainer extends React.Component {
onPathClick = (path) => {
this.props.onMainNavBarClick(path);
this.props.closeDirentDetail();
};
onItemClick = (dirent) => {
this.props.onItemClick(dirent);
this.props.closeDirentDetail();
};
onDirentClick = (dirent, event) => {
@@ -181,7 +180,7 @@ class LibContentContainer extends React.Component {
}
return (
<Fragment>
<MetadataStatusProvider repoID={repoID}>
<div className="cur-view-container">
{this.props.currentRepoInfo.status === 'read-only' &&
<div className="readonly-tip-message">
@@ -253,7 +252,6 @@ class LibContentContainer extends React.Component {
<div
className={`cur-view-content lib-content-container ${this.props.isTreePanelShown ? 'view-mode-container' : ''}`}
onScroll={this.onItemsScroll}
>
{!this.props.pathExist && this.errMessage}
{this.props.pathExist && (
@@ -335,7 +333,7 @@ class LibContentContainer extends React.Component {
)}
</div>
</div>
</Fragment>
</MetadataStatusProvider>
);
}
}