This repository was archived by the owner on Oct 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
54 lines (51 loc) · 1.43 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { PluginType } from 'constants/common';
import Plugins from 'plugins';
const propTypes = {
/** The Logo visual name, should be provide via an AssetPlugin with prefix "logo" */
name: PropTypes.string,
/** Providing a `src` will render an `<img>` element */
src: PropTypes.string,
/** Providing a alt if `src` exits */
alt: PropTypes.string,
/** Set the width of the logo */
width: PropTypes.number,
/** Set the height of the logo */
height: PropTypes.number,
};
const defaultProps = {
alt: 'Logo',
};
const Logo = React.forwardRef(({ className, name, src, alt, height, width, as: Component = 'div', ...props }, ref) => {
let nameOri = name;
let srcOri = src;
if (srcOri) {
nameOri = false;
} else if (nameOri) {
srcOri = Plugins
.getPlugins(PluginType.ASSET)
.traverseCall('getAsset', 'logo', nameOri)
.find(asset => !!asset);
}
return (
<Component
{...props}
ref={ref}
className={classNames(
'Logo',
'u-inlineBlock u-fontSizeNone u-lineHeightNone',
className && className
)}
>
{srcOri && (
<img width={width} height={height} src={srcOri} alt={alt} className="u-maxWidthFull" />
)}
</Component>
);
});
Logo.displayName = 'Logo';
Logo.defaultProps = defaultProps;
Logo.propTypes = propTypes;
export default Logo;