mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-09 10:50:24 +00:00
Fix wikis list style when side panel width is changing (#6349)
* fix wikis list style when side panel width is changing * change code format * fix wiki list item width when side panel is folded
This commit is contained in:
@@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
|
||||
import WikiCardItem from './wiki-card-item';
|
||||
import WikiCardItemAdd from './wiki-card-item-add';
|
||||
import { isMobile } from '../../utils/utils';
|
||||
import { SIDE_PANEL_FOLDED_WIDTH } from '../../constants';
|
||||
|
||||
const propTypes = {
|
||||
wikis: PropTypes.array.isRequired,
|
||||
@@ -12,6 +13,8 @@ const propTypes = {
|
||||
isShowAvatar: PropTypes.bool.isRequired,
|
||||
renameWiki: PropTypes.func.isRequired,
|
||||
toggelAddWikiDialog: PropTypes.func,
|
||||
sidePanelRate: PropTypes.number,
|
||||
isSidePanelFolded: PropTypes.bool,
|
||||
};
|
||||
|
||||
class WikiCardGroup extends Component {
|
||||
@@ -29,10 +32,16 @@ class WikiCardGroup extends Component {
|
||||
window.removeEventListener('resize', this.onResize);
|
||||
}
|
||||
|
||||
getContainerWidth = () => {
|
||||
const { sidePanelRate, isSidePanelFolded } = this.props;
|
||||
return isSidePanelFolded ? window.innerWidth - SIDE_PANEL_FOLDED_WIDTH : window.innerWidth * (1 - sidePanelRate);
|
||||
};
|
||||
|
||||
onResize = () => {
|
||||
if (isMobile) return;
|
||||
const numberOfWiki = Math.floor((window.innerWidth * 0.78 / 180));
|
||||
const gridTemplateColumns = (Math.floor((window.innerWidth * 0.78 - (numberOfWiki + 1) * 16) / numberOfWiki) + 'px ').repeat(numberOfWiki);
|
||||
const containerWidth = this.getContainerWidth();
|
||||
const numberOfWiki = Math.floor(containerWidth / 180);
|
||||
const gridTemplateColumns = (Math.floor((containerWidth - (numberOfWiki + 1) * 16) / numberOfWiki) + 'px ').repeat(numberOfWiki);
|
||||
if (this.groupItemsRef.current) {
|
||||
this.groupItemsRef.current.style.gridTemplateColumns = gridTemplateColumns;
|
||||
}
|
||||
@@ -40,8 +49,9 @@ class WikiCardGroup extends Component {
|
||||
|
||||
render() {
|
||||
const { wikis, title, isDepartment, toggelAddWikiDialog } = this.props;
|
||||
const numberOfWiki = Math.floor((window.innerWidth * 0.78 / 180));
|
||||
const grids = (Math.floor((window.innerWidth * 0.78 - (numberOfWiki + 1) * 16) / numberOfWiki) + 'px ').repeat(numberOfWiki);
|
||||
const containerWidth = this.getContainerWidth();
|
||||
const numberOfWiki = Math.floor(containerWidth / 180);
|
||||
const grids = (Math.floor((containerWidth - (numberOfWiki + 1) * 16) / numberOfWiki) + 'px ').repeat(numberOfWiki);
|
||||
return (
|
||||
<div className='wiki-card-group mb-4'>
|
||||
<h4 className="sf-heading">
|
||||
|
Reference in New Issue
Block a user