Rename Image component to ServerHeroImage (#24894)
This commit is contained in:
		
							parent
							
								
									51b83ed195
								
							
						
					
					
						commit
						ab7716cff4
					
				| @ -7,7 +7,7 @@ import ShortNumber from 'mastodon/components/short_number'; | ||||
| import Skeleton from 'mastodon/components/skeleton'; | ||||
| import Account from 'mastodon/containers/account_container'; | ||||
| import { domain } from 'mastodon/initial_state'; | ||||
| import { Image } from 'mastodon/components/image'; | ||||
| import { ServerHeroImage } from 'mastodon/components/server_hero_image'; | ||||
| import { Link } from 'react-router-dom'; | ||||
| 
 | ||||
| const messages = defineMessages({ | ||||
| @ -41,7 +41,7 @@ class ServerBanner extends React.PureComponent { | ||||
|           <FormattedMessage id='server_banner.introduction' defaultMessage='{domain} is part of the decentralized social network powered by {mastodon}.' values={{ domain: <strong>{domain}</strong>, mastodon: <a href='https://joinmastodon.org' target='_blank'>Mastodon</a> }} /> | ||||
|         </div> | ||||
| 
 | ||||
|         <Image blurhash={server.getIn(['thumbnail', 'blurhash'])} src={server.getIn(['thumbnail', 'url'])} className='server-banner__hero' /> | ||||
|         <ServerHeroImage blurhash={server.getIn(['thumbnail', 'blurhash'])} src={server.getIn(['thumbnail', 'url'])} className='server-banner__hero' /> | ||||
| 
 | ||||
|         <div className='server-banner__description'> | ||||
|           {isLoading ? ( | ||||
|  | ||||
| @ -9,7 +9,7 @@ type Props = { | ||||
|   className?: string; | ||||
| }; | ||||
| 
 | ||||
| export const Image: React.FC<Props> = ({ | ||||
| export const ServerHeroImage: React.FC<Props> = ({ | ||||
|   src, | ||||
|   srcSet, | ||||
|   blurhash, | ||||
| @ -11,7 +11,7 @@ import Account from 'mastodon/containers/account_container'; | ||||
| import Skeleton from 'mastodon/components/skeleton'; | ||||
| import { Icon }  from 'mastodon/components/icon'; | ||||
| import classNames from 'classnames'; | ||||
| import { Image } from 'mastodon/components/image'; | ||||
| import { ServerHeroImage } from 'mastodon/components/server_hero_image'; | ||||
| 
 | ||||
| const messages = defineMessages({ | ||||
|   title: { id: 'column.about', defaultMessage: 'About' }, | ||||
| @ -114,7 +114,7 @@ class About extends React.PureComponent { | ||||
|       <Column bindToDocument={!multiColumn} label={intl.formatMessage(messages.title)}> | ||||
|         <div className='scrollable about'> | ||||
|           <div className='about__header'> | ||||
|             <Image blurhash={server.getIn(['thumbnail', 'blurhash'])} src={server.getIn(['thumbnail', 'url'])} srcSet={server.getIn(['thumbnail', 'versions'])?.map((value, key) => `${value} ${key.replace('@', '')}`).join(', ')} className='about__header__hero' /> | ||||
|             <ServerHeroImage blurhash={server.getIn(['thumbnail', 'blurhash'])} src={server.getIn(['thumbnail', 'url'])} srcSet={server.getIn(['thumbnail', 'versions'])?.map((value, key) => `${value} ${key.replace('@', '')}`).join(', ')} className='about__header__hero' /> | ||||
|             <h1>{isLoading ? <Skeleton width='10ch' /> : server.get('domain')}</h1> | ||||
|             <p><FormattedMessage id='about.powered_by' defaultMessage='Decentralized social media powered by {mastodon}' values={{ mastodon: <a href='https://joinmastodon.org' className='about__mail' target='_blank'>Mastodon</a> }} /></p> | ||||
|           </div> | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user