webapp/src/components/Discours/Footer.tsx

159 lines
3.9 KiB
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { createMemo, For } from 'solid-js'
import './Footer.scss'
2022-09-22 09:37:49 +00:00
import { Icon } from '../Nav/Icon'
2022-09-09 11:53:35 +00:00
import Subscribe from './Subscribe'
import { t } from '../../utils/intl'
2022-09-23 23:42:19 +00:00
import { locale } from '../../stores/ui'
2022-09-09 11:53:35 +00:00
export const Footer = () => {
const locale_title = createMemo(() => (locale() === 'ru' ? 'English' : 'Русский'))
const locale_link = createMemo(() => '?lang=' + (locale() === 'ru' ? 'en' : 'ru'))
const links = createMemo(() => [
{
header: 'About the project',
items: [
{
title: 'Manifest',
slug: '/about/manifest'
},
{
title: 'How it works',
slug: '/about/guide'
},
{
title: 'Dogma',
slug: '/about/dogma'
},
{
title: 'Terms of use',
slug: '/about/terms-of-use'
},
{
title: 'How to write an article',
slug: '/how-to-write-a-good-article'
}
]
},
{
header: 'Participating',
items: [
{
title: 'Suggest an idea',
slug: '/connect'
},
{
title: 'Become an author',
slug: '/create'
},
{
title: 'Support us',
slug: '/about/help'
},
{
title: 'Feedback',
slug: '/#feedback'
},
{
title: 'Work with us',
slug: 'https://docs.google.com/forms/d/e/1FAIpQLSeNNvIzKlXElJtkPkYiXl-jQjlvsL9u4-kpnoRjz1O8Wo40xQ/viewform'
}
]
},
{
header: 'Sections',
items: [
{
title: 'Authors',
slug: '/authors'
},
{
title: 'Communities',
slug: '/community'
},
{
title: 'Partners',
slug: '/about/partners'
},
{
title: 'Special projects',
slug: '/about/projects'
},
{
title: locale_title(),
slug: locale_link()
}
]
}
])
const SOCIAL = [
{
name: 'facebook',
href: 'https://facebook.com/discoursio'
},
{
name: 'vk',
href: 'https://vk.com/discoursio'
},
{
name: 'twitter',
href: 'https://twitter.com/discours_io'
},
{
name: 'telegram',
href: 'https://t.me/discoursio'
}
]
return (
<footer class="discours-footer">
<div class="wide-container">
<div class="row">
<For each={links()}>
{({ header, items }) => (
<div class="col-md-3">
<h5>{t(header)}</h5>
<ul>
<For each={items}>
{({ slug, title }) => (
<li>
{' '}
<a href={slug}>{slug.startsWith('?') ? title : t(title)}</a>{' '}
</li>
)}
</For>
</ul>
</div>
)}
</For>
<div class="col-md-3">
<h5>{t('Subscription')}</h5>
<p>{t('Join our maillist')}</p>
<Subscribe />
</div>
</div>
<div class="footer-copyright row">
<div class="col-md-10">
Независимый журнал с&nbsp;открытой горизонтальной редакцией о&nbsp;культуре, науке
и&nbsp;обществе. Дискурс&nbsp;&copy; 2015&ndash;2022{' '}
<a href="/about/terms-of-use">{t('Terms of use')}</a>
</div>
<div class="footer-copyright__social col-md-2">
<For each={[...SOCIAL]}>
{(social) => (
<div class={`social__item social__item--${social.name}`}>
<a href={social.href}>
<Icon name={`${social.name}-white`} />
</a>
</div>
)}
</For>
</div>
</div>
</div>
</footer>
)
}