YosiSF / iceberg-gatsby-whtcorps

SPA

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gatsby multi-language starter with CMS

Demo on Netlify

Starter on Gatsby

A starter Internationalization / i18n without third party plugins or packages for Posts and Pages. Different URLs dependending on the language. Focused on SEO, PWA, Image Optimization, Styled Components and more. This starter is also integrate with Netlify CMS to manage all pages, posts and images.

  • Translations by using GraphQL, hooks and context API
  • Content in markdown for pages and posts in different languages
  • General translations for any content
  • Creation of menus by using, jSON, translations and GraphQL
  • Netlify CMS to manage all pages, posts and images
  • Styled Components to styles
  • All important seetings for speedy and optimized images
  • Blog Posts list with pagination
  • Focus on SEO
  • PWA

πŸš€ Getting Started

Assuming Gatsby is installed, run the following commands to install the project:

With gatsby-cli:

$ gatsby new gatsby-multilanguage-site https://github.com/diogorodrigues/iceberg-gatsby-multilang.git

With git clone:

$ git clone https://github.com/diogorodrigues/iceberg-gatsby-multilang.git your-project-name # Clone the project

cd your-project-name

rm -rf .git
yarn install # or npm install
gatsby develop # or yarn run develop

Running gatsby develop you will see the following URLs:

http://localhost:8000
http://localhost:8000/___graphql
http://localhost:8000/admin

File Structure

A quick look at the top-level files and directories you'll see in a Gatsby project.

β”œβ”€β”€ blog
β”‚   β”œβ”€β”€ markdown-file.en.md
β”‚   β”œβ”€β”€ markdown-file.pt.md
β”œβ”€β”€ config
β”‚   β”œβ”€β”€ menu
β”‚   β”‚   β”œβ”€β”€ en.json
β”‚   β”‚   β”œβ”€β”€ pt.json
β”‚   β”œβ”€β”€ translations
β”‚   β”‚   β”œβ”€β”€ en.json
β”‚   β”‚   β”œβ”€β”€ pt.json
β”‚   β”œβ”€β”€ i18n.js
β”œβ”€β”€ pages
β”‚   β”œβ”€β”€ markdown-file.en.md
β”‚   β”œβ”€β”€ markdown-file.pt.md
β”œβ”€β”€ src
β”œβ”€β”€ static
β”‚   β”œβ”€β”€ admin
β”‚   β”‚   β”œβ”€β”€ config.yml
β”‚   β”œβ”€β”€ assets
β”‚   β”‚   β”œβ”€β”€ img
β”œβ”€β”€ gatsby-browser.js
β”œβ”€β”€ gatsby-config.js
β”œβ”€β”€ gatsby-node.js
β”œβ”€β”€ gatsby-ssr.js
β”œβ”€β”€ wrapPageElement.js

  1. blog and pages directories: All markdown files to generate pages and posts.

  2. config: All language settings: languages, strings, menu... In i18n.js you can set the languages and some others important info

  3. src: Components, hooks, templates and fixed pages (Different of markdown pages, these pages have the same url for all languages and the text content needs to be inserted in config/translations files).

  4. static: Netlify settings and images.

  5. gatsby-browser.js: External files and the layout wrapper setting.

  6. gatsby-config.js: Gatsby plugins.

  7. gatsby-node.js: Logic for generating pages and posts by manipulating GraphQL.

  8. wrapPageElement.js As this component wraps every page (due to the wrapPageElement API) we can be sure to have the locale available everywhere!

About Netlify CMS

You must change the Netlify data "repo" and "site_domain" according your Github repository in static/admin/config.yml.

backend:
    name: github
    repo: _owner-name/repo-name_ # Path to your GitHub repository
    branch: master
    site_domain: _site-url_ # If site extists

Important notes:

  • General information for languages are defined in config/i18n.js.
  • The general content translations are located in config/translations and the useTranslations custom hook pulls these translations (via GraphQL query) and inserts them into the pages.
  • The menu items translations are located in config/menu and the useMenu custom hook pulls these translations (via GraphQL query) and inserts them into the pages.
  • Due to the use of a global layout / context API and the language code passed to all pages (see gatsby-node.js), you know on all pages which language is currently displayed.
  • Blogposts are defined in blog directory and pages are defined in pages directory. The file names are the slug of the posts and pages.
  • A custom component for the tag is implemented - this way links can stay the same for every language, without the need to manually write path prefixes.

Deploy

Deploy to Netlify


πŸ’œ Thanks


This project started based on this solution to create a manner to provide translations, but I added a lots of other solutions based on my projects needs (like menu from GraphQL, markdown for pages, pagination, image optmization, styled components, PWA, CMS and more). Feel free to use this solution if you want. :)

About

SPA

License:MIT License


Languages

Language:JavaScript 100.0%