1.0.1-alpha.11 β€’ Published 4 years ago

gatsby-theme-guitar-book v1.0.1-alpha.11

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

Gatsby Theme Guitar Book

This is an entirely configuration-based Gatsby theme that generates a guitar book website based on a series of Markdown or MDX files. It also exports a series of components that can be used within MDX pages.

Features

  • Plug and Play
  • Fully customizable
  • Mobile, Tablet and Desktop friendly
  • SEO friendly
  • App works offline, and it can be added to phone/desktop home screen
  • Free storing space for songs
  • Easy to edit songs
  • Editing songs without programming knowledge
  • Integrated with Google Analytic and Ad Sense
  • Lyrics Auto scroll
  • Chords mapping and their preview with how to play them
  • Music Video for every song with just link from YouTube
  • Fully covered search

Published Demo Guitar Books

ModuleStatusPublic URL
Polish SongsNetlify Statushttps://guitar-book.netlify.app/
English SongsNetlify Statushttps://guitar-book.netlify.app/english
Shanties SongsNetlify Statushttps://guitar-book.netlify.app/shanties

Installation

If you're using this package, you'll also need to install gatsby and its peer dependencies, react and react-dom. Next, install the theme:

npm install gatsby-theme-guitar-book

or

yarn add gatsby-theme-guitar-book

Configuration

You can configure gatsby-theme-guitar-book for use with any set of app using the provided configuration options. You may also use component shadowing to customize elements like the logo or color scheme.

// gatsby-config.js
module.exports = {
  pathPrefix: '/english',
  plugins: [
    {
      resolve: `gatsby-theme-guitar-book`,
      options: {
        ...themeOptions,
        root: __dirname,
        baseDir: 'apps/english',
        subtitle: 'English Songs',
        siteName: 'Guitar Book',
        pageTitle: 'Guitar Book',
        description: 'Track and play best guitar songs for camping',
        githubRepo: 'jozwiaczek/guitar-book',
        menuTitle: 'Songs Types',
        gaTrackingId: 'UA-122299419-2',
        baseUrl: 'https://guitar-book.netlify.app/',
        logoLink: 'https://guitar-book.netlify.app//',
        contentDir: 'content',
        twitterHandle: 'jozwiaczek',
        youtubeUrl: 'https://www.youtube.com/c/JakubJ%C3%B3%C5%BAwiak/featured',
        navConfig: {
          'Polish Songs πŸ‡΅πŸ‡±': {
              url: 'https://guitar-book.netlify.app/',
              description:
                'Navigate to guitar book with polish songs'
            },
            'English Songs πŸ‡ΊπŸ‡Έ': {
              url: 'https://guitar-book.netlify.app/english',
              description:
                'Navigate to guitar book with english songs'
            },
            'Shanties Songs πŸ΄β€': {
              url: 'https://guitar-book.netlify.app/shanties',
              description:
                "Navigate to guitar book with shanties"
            }
        },
        sidebarCategories: {
          null: ['index'],
          'George Ezra': [
            'blame-it-on-me',
            'listening-to-the-men'
          ],
          'Other Guitar Books': [
            '[Polish πŸ‡΅πŸ‡±](https://guitar-book.netlify.app)',
            '[Shanties πŸ΄β€](https://guitar-book.netlify.app/shanties)'
          ],
        }
      }
    }
  ]
};

Important note: Remember that guitar book must always have at least one .md and mdx file to build successfully.

Options

Option nameTypeRequiredDescription
rootstringYesMust be __dirname
siteNamestringYesThe main title for the website, used in the <title> element and top left corner of the site
descriptionstringYesThe site description for SEO and social (FB, Twitter) tags
sidebarCategoriesobjectYesAn object mapping categories to page paths (see sidebarCategories reference)
subtitlestringNoThe page title that gets rendered above the sidebar navigation
pageTitlestringNoThe string to be rendered in the page's <title> tag. If omitted, siteName will be used.
baseDirstringNoIf your Gatsby site does not live in the root of your project directory/git repo, pass the subdirectory name here (english, for example)
contentDirstringNoThe directory where songs content exists (content by default)
githubRepostringNoThe owner and name of the content repository on GitHub
gaTrackingIdstringNoYour site's Google Analytics tracking ID
adSensestringNoYour site's Google AdSense tracking ID
baseUrlstringNoThe origin where your website will be hosted (e.g. https://guitar-book.netlify.app)
twitterHandlestringNoYour Twitter handle, without the "@"
youtubeUrlstringNoThe URL of your YouTube channel
navConfigobjectNoAn object defining the top-left navigation links (see navConfig reference)
checkLinksOptionsobjectNoOptions accepted by gastby-remark-check-links
ignorearrayNoFiles to ignore using anymatch-compatible definition pattern

sidebarCategories

The sidebarCategories option is an object keyed by category titles. Each entry in the object is an array of page paths. The path should resemble the location of a Markdown/MDX file in the git repository, relative to contentDir, and without the .md extension. Sidebar navigation items that are not a member of a category live under the null key. To add an external link to your sidebar, your can provide a string formatted like a Markdown link.

sidebarCategories: {
  null: ['index'],
  'George Ezra': [
    'blame-it-on-me',
    'listening-to-the-men'
  ],
  'Other Guitar Books': [
    '[Polish πŸ‡΅πŸ‡±](https://guitar-book.netlify.app)',
    '[Shanties πŸ΄β€](https://guitar-book.netlify.app/shanties)'
  ]
}

navConfig

The navConfig option should be an object keyed by link titles. The values should be objects with description, and url properties. Check out the default theme options for an example of the expected shape of this data.

Adding songs

This theme generates pages based on Markdown or MDX files in the contentDir directory of a repo. Your Markdown/MDX files should contain some frontmatter defining their titles and descriptions. To add new song use Verse component with .mdx file.

---
title: Hallelujah
description: Jeff Buckley
ytLink: https://www.youtube.com/watch?v=y8AWFf7EAc4 
---

import { Verse } from 'gatsby-theme-guitar-book';

<Verse text={`
[Intro]
C Am C Am
\n
[Verse 1]
  C                 Am
I heard there was a secret chord
     C                   Am
That David played and it pleased the lord
    F                G               C        G
But you don't really care for music, do you?
        C                  F           G
Well it goes like this the fourth, the fifth
    Am                 F
The minor fall and the major lift
    G            E7             Am
The baffled king composing hallelujah
\n
[Chorus]
     F           Am          F           C    G   C
Hallelujah, hallelujah, hallelujah, hallelu-u-u-u-jah ....
`}/>

Page URLs will be derived from the file paths of your Markdown. You can nest Markdown files within directories to create pages with additional path segments. You can overwrite this default path by adding a slug field to your Markdown frontmatter header.

Component shadowing

You can customize a website using this theme further by taking advantage of component shadowing.

import React from 'react';
import {Helmet} from 'react-helmet';

export default function SEO({title, description, siteName}) {
  return (
    <Helmet>
      <link rel="icon" href="/path/to/custom-favicon.ico" />
      {/* other SEO tags (OpenGraph, Twitter, etc.) */}
    </Helmet>
  );
}

Components

This theme exports React components that you can use in MDX files throughout a documentation website.

Verse

This component gives you ability to show the lyrics with mapped preview of chords.

PropTypeDescription
textstringNew lines in lyrics must be split by \n, other way you will get error. All chords should be placed on top of song line to be properly mapped
import { Verse } from 'gatsby-theme-guitar-book';

<Verse text={`
[Intro]
C Am C Am
\n
[Verse 1]
  C                 Am
I heard there was a secret chord
     C                   Am
That David played and it pleased the lord
    F                G               C        G
But you don't really care for music, do you?
        C                  F           G
Well it goes like this the fourth, the fifth
    Am                 F
The minor fall and the major lift
    G            E7             Am
The baffled king composing hallelujah
\n
[Chorus]
     F           Am          F           C    G   C
Hallelujah, hallelujah, hallelujah, hallelu-u-u-u-jah ....
`}/>

ExpansionPanel

An expandable panel of content used to hide complex information or instructions that might be a tangent from the main topic of the content it lives within.

PropTypeDescription
childrennodeThe content of the panel, usually includes an ExpansionPanelList
titlestringThe title of the panel, visible even when the panel is closed

Deployment

All apps sites will eventually be deployed into a subdirectory, as configured by the pathPrefix optionβ€”/shanties, for example.

Examples

In apps directory you will find my 3 connected guitar-books (english, polish, shanties).

Template

If you want to start with your own guitar check template directory with tutorial how to start.

Important note: Guitar book always must have at least one .md and mdx file to build successfully.

Important note: To build successfully project with gatsby-theme-guitar-book plugin you must init git in project and publish it with some provider (it can be private repo and no matter which provider).