| import clsx from 'clsx'; |
| import { |
| iconsThatNeedOffset, |
| iconsThatNeedOffsetX, |
| iconsThatNeedOffsetY, |
| } from 'gridicons/dist/util/icons-offset'; |
| import spritePath from 'gridicons/svg-sprite/gridicons.svg'; |
| import * as React from 'react'; |
| import type { ReactNode } from 'react'; |
| import type { Assign } from 'utility-types'; |
|
|
| interface Props { |
| icon: string; |
| size?: number; |
| title?: ReactNode; |
| } |
|
|
| type AllProps = Assign< React.SVGProps< SVGSVGElement >, Props >; |
|
|
| function isCrossOrigin( url: string ) { |
| if ( typeof window === 'undefined' ) { |
| return false; |
| } |
| return new URL( url, window.location.href ).origin !== window.location.origin; |
| } |
|
|
| |
| |
| |
| |
| |
| function useProxiedURL( url: string ) { |
| const [ urlProxy, setUrlProxy ] = React.useState( () => |
| isCrossOrigin( url ) ? undefined : url |
| ); |
| React.useEffect( () => { |
| if ( isCrossOrigin( url ) ) { |
| setUrlProxy( undefined ); |
| fetch( url ) |
| .then( ( res ) => res.blob() ) |
| .then( ( blob ) => { |
| const urlProxy = URL.createObjectURL( blob ); |
| setUrlProxy( urlProxy ); |
| } ) |
| .catch( () => {} ); |
| } else { |
| setUrlProxy( url ); |
| } |
| }, [ url ] ); |
|
|
| return urlProxy; |
| } |
|
|
| const Gridicon = React.memo( |
| React.forwardRef< SVGSVGElement, AllProps >( ( props: AllProps, ref ) => { |
| const { size = 24, icon, className, title, ...otherProps } = props; |
| const isModulo18 = size % 18 === 0; |
|
|
| |
| const proxiedSpritePath = useProxiedURL( spritePath ); |
|
|
| |
| |
| const iconName = `gridicons-${ icon }`; |
|
|
| const iconClass = clsx( 'gridicon', iconName, className, { |
| 'needs-offset': isModulo18 && iconsThatNeedOffset.includes( iconName ), |
| 'needs-offset-x': isModulo18 && iconsThatNeedOffsetX.includes( iconName ), |
| 'needs-offset-y': isModulo18 && iconsThatNeedOffsetY.includes( iconName ), |
| } ); |
|
|
| return ( |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 24 24" |
| className={ iconClass } |
| height={ size } |
| width={ size } |
| ref={ ref } |
| { ...otherProps } |
| > |
| { title && <title>{ title }</title> } |
| { proxiedSpritePath && <use xlinkHref={ `${ proxiedSpritePath }#${ iconName }` } /> } |
| </svg> |
| ); |
| } ) |
| ); |
|
|
| Gridicon.displayName = 'Gridicon'; |
|
|
| export default Gridicon; |
|
|