mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-26 18:51:03 +00:00
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { siteRoot, mediaUrl, logoPath, logoWidth, logoHeight, siteTitle, gettext } from '../utils/constants';
|
|
|
|
const propTypes = {
|
|
onCloseSidePanel: PropTypes.func,
|
|
showCloseSidePanelIcon: PropTypes.bool,
|
|
};
|
|
|
|
class Logo extends React.Component {
|
|
|
|
closeSide = () => {
|
|
this.props.onCloseSidePanel();
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<div className='top-logo'>
|
|
<a href={siteRoot} id="logo">
|
|
<img src={logoPath.indexOf('image-view') != -1 ? logoPath : mediaUrl + logoPath} height={logoHeight} width={logoWidth} title={siteTitle} alt="logo" />
|
|
</a>
|
|
{this.props.showCloseSidePanelIcon &&
|
|
<a
|
|
className="sf2-icon-x1 sf-popover-close side-panel-close action-icon d-md-none"
|
|
onClick={this.closeSide}
|
|
title={gettext('Close')}
|
|
aria-label={gettext('Close')}
|
|
>
|
|
</a>
|
|
}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
Logo.propTypes = propTypes;
|
|
|
|
export default Logo;
|