mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-23 12:27:48 +00:00
* show sidepanel in search result * show metadata details * show library details * optimize * optimize * optimize --------- Co-authored-by: zhouwenxuan <aries@Mac.local>
104 lines
2.9 KiB
JavaScript
104 lines
2.9 KiB
JavaScript
import { useEffect, useState } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Utils } from '../../../utils/utils';
|
|
import { seafileAPI } from '../../../utils/seafile-api';
|
|
import toaster from '../../toast';
|
|
import { MetadataDetailsProvider } from '../../../metadata';
|
|
import { Repo } from '../../../models';
|
|
import { MetadataStatusProvider } from '../../../hooks';
|
|
import Details from './details';
|
|
import LibDetail from '../../dirent-detail/lib-details';
|
|
|
|
import './index.css';
|
|
|
|
const SearchedItemDetails = ({ repoID, path, dirent }) => {
|
|
const [repoInfo, setRepoInfo] = useState(null);
|
|
const [direntDetail, setDirentDetail] = useState(null);
|
|
|
|
useEffect(() => {
|
|
seafileAPI.getRepoInfo(repoID).then(res => {
|
|
const repo = new Repo(res.data);
|
|
setRepoInfo(repo);
|
|
}).catch(error => {
|
|
const errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
});
|
|
}, [repoID]);
|
|
|
|
useEffect(() => {
|
|
const controller = new AbortController();
|
|
|
|
const fetchData = async () => {
|
|
if (!repoID || !path || !dirent || dirent.isLib) {
|
|
setDirentDetail(null);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const res = await seafileAPI[dirent.type === 'file' ? 'getFileInfo' : 'getDirInfo'](
|
|
repoID,
|
|
path,
|
|
{ signal: controller.signal }
|
|
);
|
|
setDirentDetail(res.data);
|
|
} catch (error) {
|
|
if (error.name !== 'AbortError') {
|
|
const errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
}
|
|
}
|
|
};
|
|
|
|
const timer = setTimeout(fetchData, 200);
|
|
|
|
return () => {
|
|
controller.abort();
|
|
clearTimeout(timer);
|
|
};
|
|
}, [repoID, repoInfo, path, dirent]);
|
|
|
|
if (!repoInfo) return;
|
|
|
|
if (dirent.isLib) {
|
|
return (
|
|
<div className="searched-item-details">
|
|
<LibDetail currentRepoInfo={repoInfo} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!direntDetail) return null;
|
|
|
|
let parentDir = path !== '/' && path.endsWith('/') ? path.slice(0, -1) : path; // deal with folder path comes from search results, eg: /folder/
|
|
parentDir = Utils.getDirName(parentDir);
|
|
return (
|
|
<MetadataStatusProvider key={repoID} repoID={repoID} repoInfo={repoInfo}>
|
|
<MetadataDetailsProvider
|
|
repoID={repoID}
|
|
repoInfo={repoInfo}
|
|
path={path !== '/' && path.endsWith('/') ? path.slice(0, -1) : path}
|
|
dirent={dirent}
|
|
direntDetail={direntDetail}
|
|
direntType={dirent?.type !== 'file' ? 'dir' : 'file'}
|
|
>
|
|
<Details
|
|
repoID={repoID}
|
|
repoInfo={repoInfo}
|
|
path={parentDir}
|
|
dirent={dirent}
|
|
direntDetail={direntDetail}
|
|
/>
|
|
</MetadataDetailsProvider>
|
|
</MetadataStatusProvider>
|
|
);
|
|
};
|
|
|
|
SearchedItemDetails.propTypes = {
|
|
repoID: PropTypes.string.isRequired,
|
|
path: PropTypes.string.isRequired,
|
|
dirent: PropTypes.object.isRequired,
|
|
};
|
|
|
|
export default SearchedItemDetails;
|
|
|