[Glitch] Refactor footers in web UI into a single component
Port 451e5980b6 to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
			
			
This commit is contained in:
		
							parent
							
								
									9bb4f796db
								
							
						
					
					
						commit
						763735f92e
					
				|  | @ -8,12 +8,13 @@ import { openModal } from 'flavours/glitch/actions/modal'; | |||
| import PropTypes from 'prop-types'; | ||||
| import ImmutablePropTypes from 'react-immutable-proptypes'; | ||||
| import ImmutablePureComponent from 'react-immutable-pure-component'; | ||||
| import { me, invitesEnabled, version } from 'flavours/glitch/util/initial_state'; | ||||
| import { me } from 'flavours/glitch/util/initial_state'; | ||||
| import { fetchFollowRequests } from 'flavours/glitch/actions/accounts'; | ||||
| import { List as ImmutableList } from 'immutable'; | ||||
| import { createSelector } from 'reselect'; | ||||
| import { fetchLists } from 'flavours/glitch/actions/lists'; | ||||
| import { preferencesLink, profileLink, signOutLink } from 'flavours/glitch/util/backend_links'; | ||||
| import { preferencesLink, signOutLink } from 'flavours/glitch/util/backend_links'; | ||||
| import LinkFooter from 'flavours/glitch/features/ui/components/link_footer'; | ||||
| 
 | ||||
| const messages = defineMessages({ | ||||
|   heading: { id: 'getting_started.heading', defaultMessage: 'Getting started' }, | ||||
|  | @ -174,25 +175,7 @@ const NAVIGATION_PANEL_BREAKPOINT = 600 + (285 * 2) + (10 * 2); | |||
|             <ColumnLink icon='sign-out' text={intl.formatMessage(messages.sign_out)} href={signOutLink} method='delete' /> | ||||
|           </div> | ||||
| 
 | ||||
|           <div className='getting-started__footer'> | ||||
|             <ul> | ||||
|               {invitesEnabled && <li><a href='/invites' target='_blank'><FormattedMessage id='getting_started.invite' defaultMessage='Invite people' /></a> · </li>} | ||||
|               <li><a href='/about/more' target='_blank'><FormattedMessage id='navigation_bar.info' defaultMessage='About this server' /></a> · </li> | ||||
|               <li><a href='https://joinmastodon.org/apps' target='_blank'><FormattedMessage id='navigation_bar.apps' defaultMessage='Mobile apps' /></a> · </li> | ||||
|               <li><a href='/terms' target='_blank'><FormattedMessage id='getting_started.terms' defaultMessage='Terms of service' /></a> · </li> | ||||
|               <li><a href='https://docs.joinmastodon.org' target='_blank'><FormattedMessage id='getting_started.documentation' defaultMessage='Documentation' /></a></li> | ||||
|             </ul> | ||||
| 
 | ||||
|             <p> | ||||
|               <FormattedMessage | ||||
|                 id='getting_started.open_source_notice' | ||||
|                 defaultMessage='Glitchsoc is open source software, a friendly fork of {Mastodon}. You can contribute or report issues on GitHub at {github}.' | ||||
|                 values={{ | ||||
|                   github: <span><a href='https://github.com/glitch-soc/mastodon' rel='noopener' target='_blank'>glitch-soc/mastodon</a> (v{version})</span>, | ||||
|                   Mastodon: <a href='https://github.com/tootsuite/mastodon' rel='noopener' target='_blank'>Mastodon</a> }} | ||||
|               /> | ||||
|             </p> | ||||
|           </div> | ||||
|           <LinkFooter /> | ||||
|         </div> | ||||
|       </Column> | ||||
|     ); | ||||
|  |  | |||
|  | @ -2,9 +2,7 @@ import React from 'react'; | |||
| import SearchContainer from 'flavours/glitch/features/compose/containers/search_container'; | ||||
| import ComposeFormContainer from 'flavours/glitch/features/compose/containers/compose_form_container'; | ||||
| import NavigationContainer from 'flavours/glitch/features/compose/containers/navigation_container'; | ||||
| import { invitesEnabled, version, repository, source_url } from 'mastodon/initial_state'; | ||||
| import { Link } from 'react-router-dom'; | ||||
| import { FormattedMessage } from 'react-intl'; | ||||
| import LinkFooter from './link_footer'; | ||||
| 
 | ||||
| const ComposePanel = () => ( | ||||
|   <div className='compose-panel'> | ||||
|  | @ -14,27 +12,7 @@ const ComposePanel = () => ( | |||
| 
 | ||||
|     <div className='flex-spacer' /> | ||||
| 
 | ||||
|     <div className='getting-started__footer'> | ||||
|       <ul> | ||||
|         {invitesEnabled && <li><a href='/invites' target='_blank'><FormattedMessage id='getting_started.invite' defaultMessage='Invite people' /></a> · </li>} | ||||
|         <li><Link to='/keyboard-shortcuts'><FormattedMessage id='navigation_bar.keyboard_shortcuts' defaultMessage='Hotkeys' /></Link> · </li> | ||||
|         <li><a href='/auth/edit'><FormattedMessage id='getting_started.security' defaultMessage='Security' /></a> · </li> | ||||
|         <li><a href='/about/more' target='_blank'><FormattedMessage id='navigation_bar.info' defaultMessage='About this server' /></a> · </li> | ||||
|         <li><a href='https://joinmastodon.org/apps' target='_blank'><FormattedMessage id='navigation_bar.apps' defaultMessage='Mobile apps' /></a> · </li> | ||||
|         <li><a href='/terms' target='_blank'><FormattedMessage id='getting_started.terms' defaultMessage='Terms of service' /></a> · </li> | ||||
|         <li><a href='/settings/applications' target='_blank'><FormattedMessage id='getting_started.developers' defaultMessage='Developers' /></a> · </li> | ||||
|         <li><a href='https://docs.joinmastodon.org' target='_blank'><FormattedMessage id='getting_started.documentation' defaultMessage='Documentation' /></a> · </li> | ||||
|         <li><a href='/auth/sign_out' data-method='delete'><FormattedMessage id='navigation_bar.logout' defaultMessage='Logout' /></a></li> | ||||
|       </ul> | ||||
| 
 | ||||
|       <p> | ||||
|         <FormattedMessage | ||||
|           id='getting_started.open_source_notice' | ||||
|           defaultMessage='Mastodon is open source software. You can contribute or report issues on GitHub at {github}.' | ||||
|           values={{ github: <span><a href={source_url} rel='noopener' target='_blank'>{repository}</a> (v{version})</span> }} | ||||
|         /> | ||||
|       </p> | ||||
|     </div> | ||||
|     <LinkFooter withHotkeys /> | ||||
|   </div> | ||||
| ); | ||||
| 
 | ||||
|  |  | |||
|  | @ -0,0 +1,36 @@ | |||
| import React from 'react'; | ||||
| import PropTypes from 'prop-types'; | ||||
| import { FormattedMessage } from 'react-intl'; | ||||
| import { Link } from 'react-router-dom'; | ||||
| import { invitesEnabled, version, repository, source_url } from 'flavours/glitch/util/initial_state'; | ||||
| import { signOutLink } from 'flavours/glitch/util/backend_links'; | ||||
| 
 | ||||
| const LinkFooter = () => ( | ||||
|   <div className='getting-started__footer'> | ||||
|     <ul> | ||||
|       {invitesEnabled && <li><a href='/invites' target='_blank'><FormattedMessage id='getting_started.invite' defaultMessage='Invite people' /></a> · </li>} | ||||
|       <li><a href='/auth/edit'><FormattedMessage id='getting_started.security' defaultMessage='Security' /></a> · </li> | ||||
|       <li><a href='/about/more' target='_blank'><FormattedMessage id='navigation_bar.info' defaultMessage='About this server' /></a> · </li> | ||||
|       <li><a href='https://joinmastodon.org/apps' target='_blank'><FormattedMessage id='navigation_bar.apps' defaultMessage='Mobile apps' /></a> · </li> | ||||
|       <li><a href='/terms' target='_blank'><FormattedMessage id='getting_started.terms' defaultMessage='Terms of service' /></a> · </li> | ||||
|       <li><a href='/settings/applications' target='_blank'><FormattedMessage id='getting_started.developers' defaultMessage='Developers' /></a> · </li> | ||||
|       <li><a href='https://docs.joinmastodon.org' target='_blank'><FormattedMessage id='getting_started.documentation' defaultMessage='Documentation' /></a> · </li> | ||||
|       <li><a href={signOutLink} data-method='delete'><FormattedMessage id='navigation_bar.logout' defaultMessage='Logout' /></a></li> | ||||
|     </ul> | ||||
| 
 | ||||
|     <p> | ||||
|       <FormattedMessage | ||||
|         id='getting_started.open_source_notice' | ||||
|         defaultMessage='Glitchsoc is open source software, a friendly fork of {Mastodon}. You can contribute or report issues on GitHub at {github}.' | ||||
|         values={{ | ||||
|           github: <span><a href='https://github.com/glitch-soc/mastodon' rel='noopener' target='_blank'>glitch-soc/mastodon</a> (v{version})</span>, | ||||
|           Mastodon: <a href='https://github.com/tootsuite/mastodon' rel='noopener' target='_blank'>Mastodon</a> }} | ||||
|       /> | ||||
|     </p> | ||||
|   </div> | ||||
| ); | ||||
| 
 | ||||
| LinkFooter.propTypes = { | ||||
| }; | ||||
| 
 | ||||
| export default LinkFooter; | ||||
		Loading…
	
		Reference in New Issue