Skip to content

Commit

Permalink
optimize_file_details (#6868)
Browse files Browse the repository at this point in the history
* optimize_file_details

* feat: optimize ui

* feat: optimize ui

* feat: optimize ui

---------

Co-authored-by: zheng.shen <[email protected]>
Co-authored-by: 杨国璇 <[email protected]>
  • Loading branch information
3 people authored Oct 12, 2024
1 parent 3cdb626 commit df29823
Show file tree
Hide file tree
Showing 11 changed files with 262 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
.file-details-collapse {
display: flex;
flex-direction: column;
width: 100%;
height: auto;
margin-bottom: 10px;
}

.file-details-collapse .file-details-collapse-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 8px;
height: 28px;
width: 100%;
border-radius: 3px;
border: 1px solid rgba(69, 170, 242, 0);
}

.file-details-collapse .file-details-collapse-header:hover {
background-color: #F0F0F0;
}

.file-details-collapse .file-details-collapse-header .file-details-collapse-header-title {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: default;
color: #666;
font-size: 14px;
}

.file-details-collapse .file-details-collapse-header .file-details-collapse-header-operation {
height: 20px;
width: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-left: 4px;
}

.file-details-collapse .file-details-collapse-header .file-details-collapse-header-operation:hover {
background-color: #DBDBDB;
cursor: pointer;
border-radius: 3px;
}

.file-details-collapse .file-details-collapse-header .sf3-font-down {
color: #666666;
}

.file-details-collapse .file-details-collapse-body {
padding: 0 4px;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React, { useState, useCallback } from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';

import './index.css';

const Collapse = ({ className, title, children, isCollapse = true }) => {
const [showChildren, setShowChildren] = useState(isCollapse);

const toggleShowChildren = useCallback(() => {
setShowChildren(!showChildren);
}, [showChildren]);

return (
<div className={classnames('file-details-collapse', className)}>
<div className="file-details-collapse-header">
<div className="file-details-collapse-header-title">{title}</div>
<div className="file-details-collapse-header-operation" onClick={toggleShowChildren}>
<i className={`sf3-font sf3-font-down ${showChildren ? '' : 'rotate-90'}`}></i>
</div>
</div>
{showChildren && (
<div className="file-details-collapse-body">
{children}
</div>
)}
</div>
);
};

Collapse.propTypes = {
isCollapse: PropTypes.bool,
className: PropTypes.string,
title: PropTypes.string,
children: PropTypes.any,
};

export default Collapse;
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.sf-metadata-property-detail-capture-information-item .dirent-detail-item-name {
font-size: 12px;
min-height: 24px;
padding: 3px 6px;
word-break: break-all;
}

.sf-metadata-property-detail-capture-information-item .dirent-detail-item-value {
font-size: 12px;
min-height: 24px;
padding: 3px 6px;
display: block;
word-break: break-all;
}

.sf-metadata-property-detail-capture-information-item .dirent-detail-item-value:empty::before {
content: attr(placeholder);
color: #666;
font-size: 12px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,65 @@ import PropTypes from 'prop-types';
import { v4 as uuidV4 } from 'uuid';
import { Formatter } from '@seafile/sf-metadata-ui-component';
import classnames from 'classnames';
import { getDirentPath } from './utils';
import DetailItem from '../detail-item';
import { CellType } from '../../../metadata/constants';
import { gettext } from '../../../utils/constants';
import EditFileTagPopover from '../../popover/edit-filetag-popover';
import FileTagList from '../../file-tag-list';
import { Utils } from '../../../utils/utils';
import { MetadataDetails, useMetadata } from '../../../metadata';
import ObjectUtils from '../../../metadata/utils/object-utils';
import { getDirentPath } from '../utils';
import DetailItem from '../../detail-item';
import { CellType, GEOLOCATION_FORMAT, PRIVATE_COLUMN_KEY } from '../../../../metadata/constants';
import { gettext } from '../../../../utils/constants';
import EditFileTagPopover from '../../../popover/edit-filetag-popover';
import FileTagList from '../../../file-tag-list';
import { Utils } from '../../../../utils/utils';
import { MetadataDetails, useMetadata } from '../../../../metadata';
import ObjectUtils from '../../../../metadata/utils/object-utils';
import { getCellValueByColumn, getDateDisplayString, getGeolocationDisplayString,
decimalToExposureTime,
} from '../../../../metadata/utils/cell';
import Collapse from './collapse';

import './index.css';

const getImageInfoName = (key) => {
switch (key) {
case 'Dimensions':
return gettext('Dimensions');
case 'Device make':
return gettext('Device make');
case 'Device model':
return gettext('Device model');
case 'Color space':
return gettext('Color space');
case 'Capture time':
return gettext('Capture time');
case 'Focal length':
return gettext('Focal length');
case 'F number':
return gettext('F number');
case 'Exposure time':
return gettext('Exposure time');
default:
return key;
}
};

const getImageInfoValue = (key, value) => {
if (!value) return value;
switch (key) {
case 'Dimensions':
return value.replace('x', ' x ');
case 'Capture time':
return getDateDisplayString(value, 'YYYY-MM-DD HH:mm:ss');
case 'Focal length':
return value.replace('mm', ' ' + gettext('mm'));
case 'Exposure time':
return decimalToExposureTime(value) + ' ' + gettext('s');
default:
return value;
}
};

const FileDetails = React.memo(({ repoID, repoInfo, dirent, path, direntDetail, onFileTagChanged, repoTags, fileTagList }) => {
const [isEditFileTagShow, setEditFileTagShow] = useState(false);
const { enableMetadata } = useMetadata();
const [record, setRecord] = useState(null);

const direntPath = useMemo(() => getDirentPath(dirent, path), [dirent, path]);
const tagListTitleID = useMemo(() => `detail-list-view-tags-${uuidV4()}`, []);
Expand All @@ -32,7 +78,11 @@ const FileDetails = React.memo(({ repoID, repoInfo, dirent, path, direntDetail,
onFileTagChanged(dirent, direntPath);
}, [dirent, direntPath, onFileTagChanged]);

return (
const updateRecord = useCallback((record) => {
setRecord(record);
}, []);

const dom = (
<>
<DetailItem field={sizeField} className="sf-metadata-property-detail-formatter">
<Formatter field={sizeField} value={Utils.bytesToSize(direntDetail.size)} />
Expand Down Expand Up @@ -68,8 +118,47 @@ const FileDetails = React.memo(({ repoID, repoInfo, dirent, path, direntDetail,
</DetailItem>
)}
{window.app.pageOptions.enableMetadataManagement && enableMetadata && (
<MetadataDetails repoID={repoID} filePath={direntPath} repoInfo={repoInfo} direntType="file" />
<MetadataDetails repoID={repoID} filePath={direntPath} repoInfo={repoInfo} direntType="file" updateRecord={updateRecord} />
)}
</>
);

let component = dom;
if (Utils.imageCheck(dirent.name)) {
const fileDetails = getCellValueByColumn(record, { key: PRIVATE_COLUMN_KEY.FILE_DETAILS });
const fileDetailsJson = JSON.parse(fileDetails?.slice(9, -7) || '{}');
const fileLocation = getCellValueByColumn(record, { key: PRIVATE_COLUMN_KEY.LOCATION });

component = (
<>
<Collapse title={gettext('General information')}>
{dom}
</Collapse>
<Collapse title={gettext('Capture information')}>
{Object.entries(fileDetailsJson).map(item => {
return (
<div className="dirent-detail-item sf-metadata-property-detail-capture-information-item" key={item[0]}>
<div className="dirent-detail-item-name">{getImageInfoName(item[0])}</div>
<div className="dirent-detail-item-value" placeholder={gettext('Empty')}>{getImageInfoValue(item[0], item[1])}</div>
</div>
);
})}
{fileLocation && (
<div className="dirent-detail-item sf-metadata-property-detail-capture-information-item" key={'location'}>
<div className="dirent-detail-item-name">{gettext('Location')}</div>
<div className="dirent-detail-item-value" placeholder={gettext('Empty')}>
{getGeolocationDisplayString(fileLocation, { geo_format: GEOLOCATION_FORMAT.LNG_LAT })}
</div>
</div>
)}
</Collapse>
</>
);
}

return (
<>
{component}
{isEditFileTagShow &&
<EditFileTagPopover
repoID={repoID}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/tree-section/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const TreeSection = ({ title, children, moreKey, moreOperations, moreOperationCl
}, []);

return (
<div className={classnames('tree-section', { [className]: className })}>
<div className={classnames('tree-section', className)}>
<div
className={classnames('tree-section-header', { 'tree-section-header-hover': highlight })}
onMouseEnter={onMouseEnter}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ export const NOT_DISPLAY_COLUMN_KEYS = [
PRIVATE_COLUMN_KEY.OBJ_ID,
PRIVATE_COLUMN_KEY.SIZE,
PRIVATE_COLUMN_KEY.SUFFIX,
PRIVATE_COLUMN_KEY.FILE_DETAILS,
PRIVATE_COLUMN_KEY.LOCATION
];

export const SYSTEM_FOLDERS = [
Expand Down
11 changes: 5 additions & 6 deletions frontend/src/metadata/components/metadata-details/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { SYSTEM_FOLDERS } from './constants';

import './index.css';

const MetadataDetails = ({ repoID, filePath, repoInfo, direntType }) => {
const MetadataDetails = ({ repoID, filePath, repoInfo, direntType, updateRecord }) => {
const [isLoading, setLoading] = useState(true);
const [metadata, setMetadata] = useState({ record: {}, fields: [] });
const permission = useMemo(() => repoInfo.permission !== 'admin' && repoInfo.permission !== 'rw' ? 'r' : 'rw', [repoInfo]);
Expand All @@ -37,18 +37,16 @@ const MetadataDetails = ({ repoID, filePath, repoInfo, direntType }) => {
metadataAPI.getMetadataRecordInfo(repoID, parentDir, fileName).then(res => {
const { results, metadata } = res.data;
const record = Array.isArray(results) && results.length > 0 ? results[0] : {};
let fields = normalizeFields(metadata).map(field => new Column(field));
if (!Utils.imageCheck(fileName)) {
fields = fields.filter(filed => filed.key !== PRIVATE_COLUMN_KEY.LOCATION);
}
const fields = normalizeFields(metadata).map(field => new Column(field));
updateRecord && updateRecord(record);
setMetadata({ record, fields });
setLoading(false);
}).catch(error => {
const errMessage = Utils.getErrorMsg(error);
toaster.danger(errMessage);
setLoading(false);
});
}, [repoID, filePath, direntType]);
}, [repoID, filePath, direntType, updateRecord]);

const onChange = useCallback((fieldKey, newValue) => {
const { record, fields } = metadata;
Expand Down Expand Up @@ -132,6 +130,7 @@ MetadataDetails.propTypes = {
repoInfo: PropTypes.object,
direntType: PropTypes.string,
direntDetail: PropTypes.object,
updateRecord: PropTypes.func,
};

export default MetadataDetails;
30 changes: 29 additions & 1 deletion frontend/src/metadata/utils/cell/column/geolocation.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
import { GROUP_GEOLOCATION_GRANULARITY, GEOLOCATION_FORMAT } from '../../../constants';
import { isValidPosition } from '../../validate';

const _convertLatitudeDecimalToDMS = (latitudeDecimal) => {
if (!latitudeDecimal && latitudeDecimal !== 0) return '';
if (latitudeDecimal < -90 || latitudeDecimal > 90) {
return '';
}
const degrees = Math.floor(Math.abs(latitudeDecimal));
const minutesDecimal = (Math.abs(latitudeDecimal) - degrees) * 60;
const minutes = Math.floor(minutesDecimal);
const seconds = Math.round((minutesDecimal - minutes) * 60);
const latitudeNS = latitudeDecimal >= 0 ? 'N' : 'S';
return `${latitudeNS}${degrees}°${minutes}'${seconds}"`;
};

const _convertLongitudeDecimalToDMS = (longitudeDecimal) => {
if (!longitudeDecimal && longitudeDecimal !== 0) return '';
if (longitudeDecimal < -180 || longitudeDecimal > 180) {
return '';
}
const degrees = Math.floor(Math.abs(longitudeDecimal));
const minutesDecimal = (Math.abs(longitudeDecimal) - degrees) * 60;
const minutes = Math.floor(minutesDecimal);
const seconds = Math.round((minutesDecimal - minutes) * 60);
const longitudeNS = longitudeDecimal >= 0 ? 'E' : 'W';
return `${longitudeNS}${degrees}°${minutes}'${seconds}"`;
};

/**
* Get formatted geolocation
* @param {object} loc
Expand All @@ -16,7 +42,9 @@ const getGeolocationDisplayString = (loc, formats, { isBaiduMap = true, hyphen =
case GEOLOCATION_FORMAT.LNG_LAT: {
const { lng, lat } = loc;
if (!isValidPosition(lng, lat)) return '';
return isBaiduMap ? `${lng}, ${lat}` : `${lat}, ${lng}`;
const lngDMS = _convertLongitudeDecimalToDMS(lng);
const latDMS = _convertLatitudeDecimalToDMS(lat);
return `${latDMS}, ${lngDMS}`;
}
case GEOLOCATION_FORMAT.COUNTRY_REGION: {
const { country_region } = loc;
Expand Down
1 change: 1 addition & 0 deletions frontend/src/metadata/utils/cell/column/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export {
formatStringToNumber,
formatTextToNumber,
getFloatNumber,
decimalToExposureTime,
} from './number';
export {
checkIsPredefinedOption,
Expand Down
10 changes: 10 additions & 0 deletions frontend/src/metadata/utils/cell/column/number.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,21 @@ const formatTextToNumber = (value) => {
return isNaN(newData) ? null : newData;
};

const decimalToExposureTime = (decimal) => {
if (!decimal) return 0;
const integerPart = Math.floor(decimal);
const decimalPart = decimal - integerPart;
if (integerPart > 0) return integerPart;
const denominator = Math.round(1 / decimalPart);
return '1/' + denominator;
};

export {
getPrecisionNumber,
getNumberDisplayString,
replaceNumberNotAllowInput,
formatStringToNumber,
formatTextToNumber,
getFloatNumber,
decimalToExposureTime,
};
1 change: 1 addition & 0 deletions frontend/src/metadata/utils/cell/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export {
getFloatNumber,
getColumnOptionNamesByIds,
getColumnOptionIdsByNames,
decimalToExposureTime,
} from './column';

export { isCellValueChanged } from './cell-comparer';
Expand Down

0 comments on commit df29823

Please sign in to comment.