This commit is contained in:
Dawid Wysokiński 2020-07-26 12:03:52 +02:00
commit e337f31c4d
18 changed files with 15056 additions and 0 deletions

54
.babelrc Normal file
View File

@ -0,0 +1,54 @@
{
"presets": ["babel-preset-gatsby"],
"plugins": [
[
"module-resolver",
{
"@": ["./src"],
"alias": {
"@components": "./src/components",
"@config": "./src/config",
"@features": "./src/features",
"@images": "./src/images",
"@libs": "./src/libs",
"@utils": "./src/utils"
}
}
],
[
"babel-plugin-transform-imports",
{
"@material-ui/core": {
// Use "transform: '@material-ui/core/${member}'," if your bundler does not support ES modules
"transform": "@material-ui/core/${member}",
"preventFullImport": true
},
"@material-ui/lab": {
// Use "transform: '@material-ui/lab/${member}'," if your bundler does not support ES modules
"transform": "@material-ui/lab/${member}",
"preventFullImport": true
},
"@material-ui/icons": {
// Use "transform: '@material-ui/icons/${member}'," if your bundler does not support ES modules
"transform": "@material-ui/icons/${member}",
"preventFullImport": true
},
"lodash": {
// Use "transform: 'lodash/${member}'," if your bundler does not support ES modules
"transform": "lodash/${member}",
"preventFullImport": true
},
"date-fns": {
// Use "transform: 'date-fns/${member}'," if your bundler does not support ES modules
"transform": "date-fns/${member}",
"preventFullImport": true
},
"validator": {
// Use "transform: 'validator/${member}'," if your bundler does not support ES modules
"transform": "validator/lib/${member}",
"preventFullImport": true
}
}
]
]
}

69
.gitignore vendored Normal file
View File

@ -0,0 +1,69 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# dotenv environment variable files
.env*
# gatsby files
.cache/
public
# Mac files
.DS_Store
# Yarn
yarn-error.log
.pnp/
.pnp.js
# Yarn Integrity file
.yarn-integrity

4
.prettierignore Normal file
View File

@ -0,0 +1,4 @@
.cache
package.json
package-lock.json
public

4
.prettierrc Normal file
View File

@ -0,0 +1,4 @@
{
"arrowParens": "avoid",
"semi": false
}

14
LICENSE Normal file
View File

@ -0,0 +1,14 @@
The BSD Zero Clause License (0BSD)
Copyright (c) 2020 Gatsby Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.

99
README.md Normal file
View File

@ -0,0 +1,99 @@
<!-- AUTO-GENERATED-CONTENT:START (STARTER) -->
<p align="center">
<a href="https://www.gatsbyjs.org">
<img alt="Gatsby" src="https://www.gatsbyjs.org/monogram.svg" width="60" />
</a>
</p>
<h1 align="center">
Gatsby's default starter
</h1>
Kick off your project with this default boilerplate. This starter ships with the main Gatsby configuration files you might need to get up and running blazing fast with the blazing fast app generator for React.
_Have another more specific idea? You may want to check out our vibrant collection of [official and community-created starters](https://www.gatsbyjs.org/docs/gatsby-starters/)._
## 🚀 Quick start
1. **Create a Gatsby site.**
Use the Gatsby CLI to create a new site, specifying the default starter.
```shell
# create a new Gatsby site using the default starter
gatsby new my-default-starter https://github.com/gatsbyjs/gatsby-starter-default
```
1. **Start developing.**
Navigate into your new sites directory and start it up.
```shell
cd my-default-starter/
gatsby develop
```
1. **Open the source code and start editing!**
Your site is now running at `http://localhost:8000`!
_Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql)._
Open the `my-default-starter` directory in your code editor of choice and edit `src/pages/index.js`. Save your changes and the browser will update in real time!
## 🧐 What's inside?
A quick look at the top-level files and directories you'll see in a Gatsby project.
.
├── node_modules
├── src
├── .gitignore
├── .prettierrc
├── gatsby-browser.js
├── gatsby-config.js
├── gatsby-node.js
├── gatsby-ssr.js
├── LICENSE
├── package-lock.json
├── package.json
└── README.md
1. **`/node_modules`**: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed.
2. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for “source code”.
3. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for.
4. **`.prettierrc`**: This is a configuration file for [Prettier](https://prettier.io/). Prettier is a tool to help keep the formatting of your code consistent.
5. **`gatsby-browser.js`**: This file is where Gatsby expects to find any usage of the [Gatsby browser APIs](https://www.gatsbyjs.org/docs/browser-apis/) (if any). These allow customization/extension of default Gatsby settings affecting the browser.
6. **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins youd like to include, etc. (Check out the [config docs](https://www.gatsbyjs.org/docs/gatsby-config/) for more detail).
7. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.org/docs/node-apis/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.
8. **`gatsby-ssr.js`**: This file is where Gatsby expects to find any usage of the [Gatsby server-side rendering APIs](https://www.gatsbyjs.org/docs/ssr-apis/) (if any). These allow customization of default Gatsby settings affecting server-side rendering.
9. **`LICENSE`**: This Gatsby starter is licensed under the 0BSD license. This means that you can see this file as a placeholder and replace it with your own license.
10. **`package-lock.json`** (See `package.json` below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(You wont change this file directly).**
11. **`package.json`**: A manifest file for Node.js projects, which includes things like metadata (the projects name, author, etc). This manifest is how npm knows which packages to install for your project.
12. **`README.md`**: A text file containing useful reference information about your project.
## 🎓 Learning Gatsby
Looking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.org/). Here are some places to start:
- **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.org/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process.
- **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.org/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar.
## 💫 Deploy
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-default)
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/gatsbyjs/gatsby-starter-default)
<!-- AUTO-GENERATED-CONTENT:END -->

7
gatsby-browser.js Normal file
View File

@ -0,0 +1,7 @@
/**
* Implement Gatsby's Browser APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/browser-apis/
*/
// You can delete this file if you're not using it

58
gatsby-config.js Normal file
View File

@ -0,0 +1,58 @@
const siteUrl = "https://tribalwarshelp.com"
module.exports = {
siteMetadata: {
title: `TWHelp`,
description: `Tools for the popular online game TribalWars.`,
dcbotUrl: "https://dcbot.tribalwarshelp.com",
apiUrl: "https://api.tribalwarshelp.com",
author: "Dawid Wysokiński",
contactUrl: "http://dawid-wysokinski.pl/#contact",
scriptsUrl: "https://github.com/tribalwarshelp/scripts",
siteUrl,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Tribal Wars Help`,
short_name: `TWHelp`,
start_url: `/`,
background_color: `#303030`,
theme_color: `#303030`,
display: `minimal-ui`,
icon: `src/images/icon.svg`, // This path is relative to the root of the site.
},
},
`gatsby-theme-material-ui`,
`gatsby-plugin-sitemap`,
{
resolve: "gatsby-plugin-robots-txt",
options: {
host: siteUrl,
sitemap: siteUrl + "/sitemap.xml",
env: {
development: {
policy: [{ userAgent: "*", disallow: ["/"] }],
},
production: {
policy: [{ userAgent: "*", allow: "/" }],
},
},
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}

7
gatsby-node.js Normal file
View File

@ -0,0 +1,7 @@
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
// You can delete this file if you're not using it

7
gatsby-ssr.js Normal file
View File

@ -0,0 +1,7 @@
/**
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/ssr-apis/
*/
// You can delete this file if you're not using it

52
package.json Normal file
View File

@ -0,0 +1,52 @@
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"gatsby": "^2.23.12",
"gatsby-image": "^2.4.9",
"gatsby-plugin-manifest": "^2.4.14",
"gatsby-plugin-offline": "^3.2.13",
"gatsby-plugin-react-helmet": "^3.3.6",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sharp": "^2.6.14",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-source-filesystem": "^2.3.14",
"gatsby-theme-material-ui": "^1.0.12",
"gatsby-transformer-sharp": "^2.5.7",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"prettier": "2.0.5"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}

126
src/components/SEO.js Normal file
View File

@ -0,0 +1,126 @@
/**
* SEO component that queries for data with
* Gatsby's useStaticQuery React hook
*
* See: https://www.gatsbyjs.org/docs/use-static-query/
*/
import React from "react"
import PropTypes from "prop-types"
import { Helmet } from "react-helmet"
import { useStaticQuery, graphql } from "gatsby"
import seoBG from "@images/seo-bg.png"
function SEO({ description, lang, meta, title, pathname }) {
const { site } = useStaticQuery(
graphql`
query {
site {
siteMetadata {
title
description
siteUrl
}
}
}
`
)
const metaDescription = description || site.siteMetadata.description
return (
<Helmet
htmlAttributes={{
lang,
}}
title={title}
titleTemplate={`%s | ${site.siteMetadata.title}`}
meta={[
{
name: `description`,
content: metaDescription,
},
{
property: `og:site_name`,
content: site.siteMetadata.title,
},
{
property: `og:title`,
content: title,
},
{
property: `og:description`,
content: metaDescription,
},
{
property: `og:url`,
content: `${site.siteMetadata.siteUrl}${pathname}`,
},
{
property: `og:image`,
content: `${site.siteMetadata.siteUrl}${seoBG}`,
},
{
property: `og:image:width`,
content: `1280`,
},
{
property: `og:image:height`,
content: `640`,
},
{
property: `og:image`,
content: `website`,
},
{
property: `og:locale`,
content: `pl`,
},
{
name: `twitter:card`,
content: `summary_large_image`,
},
{
name: `twitter:title`,
content: title,
},
{
name: `twitter:description`,
content: metaDescription,
},
{
name: `twitter:url`,
content: `${site.siteMetadata.siteUrl}${pathname}`,
},
{
name: `twitter:image`,
content: `${site.siteMetadata.siteUrl}${seoBG}`,
},
{
name: `twitter:image:alt`,
content: site.siteMetadata.title,
},
].concat(meta)}
>
<link
rel="canonical"
content={`${site.siteMetadata.siteUrl}${pathname}`}
></link>
</Helmet>
)
}
SEO.defaultProps = {
lang: `en`,
meta: [],
description: ``,
}
SEO.propTypes = {
description: PropTypes.string,
lang: PropTypes.string,
meta: PropTypes.arrayOf(PropTypes.object),
title: PropTypes.string.isRequired,
}
export default SEO

View File

@ -0,0 +1,9 @@
import { createMuiTheme, responsiveFontSizes } from "@material-ui/core/styles"
const theme = createMuiTheme({
palette: {
type: "dark",
},
})
export default responsiveFontSizes(theme)

20
src/images/icon.svg Normal file
View File

@ -0,0 +1,20 @@
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
<g>
<title>background</title>
<rect fill="none" id="canvas_background" height="402" width="582" y="-1" x="-1"/>
</g>
<g>
<title>Layer 1</title>
<path id="XMLID_13814_" d="m190.101,250.133l26.359,-26.359l-83.811,-83.811c-1.82,-1.82 -1.82,-4.771 0,-6.59c1.82,-1.819 4.77,-1.819 6.59,0l83.811,83.811l26.359,-26.359l-89.495,-89.495l-75.625,-19.19l16.393,78.575l89.419,89.418z"/>
<rect y="300.187" x="279.477" width="37.278" transform="matrix(0.7071,-0.7071,0.7071,0.7071,-147.2936,307.9705) " id="XMLID_13815_" height="63.204"/>
<path id="XMLID_13816_" d="m90.43,389.344c-4.709,4.709 -7.394,10.863 -7.558,17.326c-0.163,6.375 2.153,12.291 6.522,16.66c4.211,4.211 9.908,6.529 16.042,6.529c6.692,0 13.065,-2.686 17.943,-7.566l22.029,-22.029l-32.949,-32.949l-22.029,22.029z"/>
<path id="XMLID_13817_" d="m429.129,406.67c-0.165,-6.463 -2.85,-12.617 -7.559,-17.324l-22.029,-22.031l-32.949,32.949l22.029,22.029c4.879,4.881 11.251,7.566 17.942,7.566c6.135,0 11.832,-2.318 16.043,-6.529c4.369,-4.369 6.685,-10.285 6.523,-16.66z"/>
<rect y="361.29" x="118.815" width="46.597" transform="matrix(-0.7071,-0.7071,0.7071,-0.7071,-19.4581,733.1609) " id="XMLID_13818_" height="18.641"/>
<rect y="341.523" x="138.585" width="46.596" transform="matrix(-0.7071,-0.7071,0.7071,-0.7071,28.2824,713.3979) " id="XMLID_13819_" height="18.638"/>
<path fill="#000000" id="XMLID_13820_" d="m427.711,82.14l-75.627,19.189l-92.79,92.79l-65.898,65.898l-47.988,47.988l26.36,26.359l200.994,-200.993c1.818,-1.819 4.771,-1.819 6.589,0c1.82,1.82 1.82,4.771 0,6.59l-200.993,200.994l26.36,26.359l206.601,-206.599l16.392,-78.575z"/>
<rect y="341.521" x="326.819" width="46.599" transform="matrix(0.7071,-0.7071,0.7071,0.7071,-145.5347,350.3372) " id="XMLID_13821_" height="18.64"/>
<rect y="361.29" x="346.589" width="46.597" transform="matrix(0.7071,-0.7071,0.7071,0.7071,-153.7236,370.099) " id="XMLID_13822_" height="18.641"/>
<rect y="267.237" x="312.427" width="37.278" transform="matrix(-0.7071,0.7071,-0.7071,-0.7071,776.4762,276.0517) " id="XMLID_13823_" height="63.205"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
src/images/seo-bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 675 KiB

29
src/pages/404.js Normal file
View File

@ -0,0 +1,29 @@
import React from "react"
import { Typography, Box, Container } from "@material-ui/core"
import { Link } from "gatsby-theme-material-ui"
import SEO from "../components/SEO"
const NotFoundPage = ({ location }) => (
<Box
display="flex"
minHeight="100vh"
alignItems="center"
justifyContent="center"
textAlign="center"
>
<SEO title="404" pathname={location.pathname} />
<Container>
<Typography variant="h1" gutterBottom>
Page not found
</Typography>
<Typography variant="h2">
<Link color="secondary" to="/">
Back to our site
</Link>
</Typography>
</Container>
</Box>
)
export default NotFoundPage

96
src/pages/index.js Normal file
View File

@ -0,0 +1,96 @@
import React from "react"
import { useStaticQuery, graphql } from "gatsby"
import { makeStyles } from "@material-ui/core/styles"
import { Typography, Button, Box, Container, Link } from "@material-ui/core"
import SEO from "../components/SEO"
const LinkButton = ({ children, href }) => {
return (
<Link href={href} underline="none">
<Button size="large" color="secondary" variant="contained">
<Typography variant="h4">{children}</Typography>
</Button>
</Link>
)
}
const useStyles = makeStyles(theme => ({
nav: {
marginBottom: theme.spacing(3),
display: "flex",
flexDirection: "row",
flexWrap: "wrap",
alignItems: "center",
justifyContent: "center",
"& > *": {
padding: theme.spacing(0.5),
},
},
}))
const IndexPage = ({ location }) => {
const classes = useStyles()
const {
site: { siteMetadata },
} = useStaticQuery(
graphql`
query {
site {
siteMetadata {
dcbotUrl
apiUrl
author
contactUrl
scriptsUrl
}
}
}
`
)
return (
<Box
display="flex"
minHeight="100vh"
alignItems="center"
justifyContent="center"
textAlign="center"
flexDirection="column"
>
<SEO title="Home" pathname={location.pathname} />
<Container>
<header>
<Typography gutterBottom variant="h1">
TWHelp
</Typography>
</header>
<nav className={classes.nav}>
<div>
<LinkButton href={siteMetadata.apiUrl}>API</LinkButton>
</div>
<div>
<LinkButton href={siteMetadata.dcbotUrl}>Discord Bot</LinkButton>
</div>
<div>
<LinkButton href={siteMetadata.scriptsUrl}>Scripts</LinkButton>
</div>
<div>
<LinkButton href={siteMetadata.contactUrl}>Contact</LinkButton>
</div>
<Box width="100%">
<Typography variant="h4">More coming soon...</Typography>
</Box>
</nav>
<footer>
<Typography>
&copy; {new Date().getFullYear()} {siteMetadata.author}
</Typography>
</footer>
</Container>
</Box>
)
}
export default IndexPage

14401
yarn.lock Normal file

File diff suppressed because it is too large Load Diff