mirror of
https://github.com/vercel/commerce.git
synced 2025-07-24 02:31:24 +00:00
.vscode
assets
components
auth
cart
checkout
common
Avatar
FeatureBar
Footer
Footer.module.css
Footer.tsx
index.ts
Head
HomeAllProductsGrid
I18nWidget
Layout
Navbar
Searchbar
SidebarLayout
UserNav
index.ts
icons
product
ui
wishlist
search.tsx
config
framework
lib
pages
public
.editorconfig
.env.template
.eslintrc
.gitignore
.prettierignore
.prettierrc
README.md
codegen.bigcommerce.json
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
swell-js.d.ts
tailwind.config.js
tsconfig.json
yarn.lock
* Added Next.js eslint * added eslint to lint-staged * Added eslint config for prettier * Fixed eslint issues in multiple files * Fixed error in linter
118 lines
3.6 KiB
TypeScript
118 lines
3.6 KiB
TypeScript
import { FC } from 'react'
|
|
import cn from 'classnames'
|
|
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
import type { Page } from '@commerce/types/page'
|
|
import getSlug from '@lib/get-slug'
|
|
import { Github, Vercel } from '@components/icons'
|
|
import { Logo, Container } from '@components/ui'
|
|
import { I18nWidget } from '@components/common'
|
|
import s from './Footer.module.css'
|
|
|
|
interface Props {
|
|
className?: string
|
|
children?: any
|
|
pages?: Page[]
|
|
}
|
|
|
|
const links = [
|
|
{
|
|
name: 'Home',
|
|
url: '/',
|
|
},
|
|
]
|
|
|
|
const Footer: FC<Props> = ({ className, pages }) => {
|
|
const { sitePages } = usePages(pages)
|
|
const rootClassName = cn(s.root, className)
|
|
|
|
return (
|
|
<footer className={rootClassName}>
|
|
<Container>
|
|
<div className="grid grid-cols-1 lg:grid-cols-12 gap-8 border-b border-accent-2 py-12 text-primary bg-primary transition-colors duration-150">
|
|
<div className="col-span-1 lg:col-span-2">
|
|
<Link href="/">
|
|
<a className="flex flex-initial items-center font-bold md:mr-24">
|
|
<span className="rounded-full border border-accent-6 mr-2">
|
|
<Logo />
|
|
</span>
|
|
<span>ACME</span>
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
<div className="col-span-1 lg:col-span-8">
|
|
<div className="grid md:grid-rows-4 md:grid-cols-3 md:grid-flow-col">
|
|
{[...links, ...sitePages].map((page) => (
|
|
<span key={page.url} className="py-3 md:py-0 md:pb-4">
|
|
<Link href={page.url!}>
|
|
<a className="text-accent-9 hover:text-accent-6 transition ease-in-out duration-150">
|
|
{page.name}
|
|
</a>
|
|
</Link>
|
|
</span>
|
|
))}
|
|
</div>
|
|
</div>
|
|
<div className="col-span-1 lg:col-span-2 flex items-start lg:justify-end text-primary">
|
|
<div className="flex space-x-6 items-center h-10">
|
|
<a
|
|
className={s.link}
|
|
aria-label="Github Repository"
|
|
href="https://github.com/vercel/commerce"
|
|
>
|
|
<Github />
|
|
</a>
|
|
<I18nWidget />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="pt-6 pb-10 flex flex-col md:flex-row justify-between items-center space-y-4 text-accent-6 text-sm">
|
|
<div>
|
|
<span>© 2020 ACME, Inc. All rights reserved.</span>
|
|
</div>
|
|
<div className="flex items-center text-primary text-sm">
|
|
<span className="text-primary">Created by</span>
|
|
<a
|
|
rel="noopener noreferrer"
|
|
href="https://vercel.com"
|
|
aria-label="Vercel.com Link"
|
|
target="_blank"
|
|
className="text-primary"
|
|
>
|
|
<Vercel
|
|
className="inline-block h-6 ml-3 text-primary"
|
|
alt="Vercel.com Logo"
|
|
/>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
)
|
|
}
|
|
|
|
function usePages(pages?: Page[]) {
|
|
const { locale } = useRouter()
|
|
const sitePages: Page[] = []
|
|
|
|
if (pages) {
|
|
pages.forEach((page) => {
|
|
const slug = page.url && getSlug(page.url)
|
|
if (!slug) return
|
|
if (locale && !slug.startsWith(`${locale}/`)) return
|
|
sitePages.push(page)
|
|
})
|
|
}
|
|
|
|
return {
|
|
sitePages: sitePages.sort(bySortOrder),
|
|
}
|
|
}
|
|
|
|
// Sort pages by the sort order assigned in the BC dashboard
|
|
function bySortOrder(a: Page, b: Page) {
|
|
return (a.sort_order ?? 0) - (b.sort_order ?? 0)
|
|
}
|
|
|
|
export default Footer
|