forked from ethereum/ethereum-org-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed3ade4
commit fa14f27
Showing
7 changed files
with
338 additions
and
339 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# APIs we use in our website | ||
|
||
1. Add personal GitHub API token (free) | ||
|
||
We recommend setting this up when running the project locally, as we use the GitHub API to fetch repository data for many projects & files. | ||
|
||
> - [Follow these instructions](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) to create a personal GitHub API token | ||
> - When selecting scopes in step 8, leave everything unchecked (the data we fetch doesn't require any [scope](https://docs.github.com/en/developers/apps/scopes-for-oauth-apps#available-scopes)) | ||
> - In local repo root directory: Make a copy of `.env.example` and name it `.env` | ||
> - Copy & paste your new GitHub API token into `.env` | ||
```sh | ||
# .env Example: | ||
GATSBY_GITHUB_TOKEN_READ_ONLY=48f84de812090000demo00000000697cf6e6a059 | ||
``` | ||
|
||
2. Add Etherscan API token (free) | ||
|
||
> - [Create an account](https://etherscan.io/) on Etherscan | ||
> - Navigate to your Account Settings page | ||
> - In the sidebar, click on 'API-KEYs' and add a new token | ||
> - Copy & paste your Api-Key Token from Etherscan into `.env` | ||
```sh | ||
# .env Example: | ||
ETHERSCAN_API_KEY=K6NUTARFJZJCIXHF1F1E1YGJZ8RQ29BE4U | ||
``` | ||
|
||
3. Add DeFiPulse API token (free) | ||
|
||
> - [Follow this guide](https://docs.defipulse.com/quick-start-guide) to create an account and get your DeFiPulse API token | ||
> - Copy & paste your Active API Key from DeFiPulse into `.env` | ||
```sh | ||
# .env Example: | ||
DEFI_PULSE_API_KEY=4953aaf7966dad9c129397e197a0630ed0594f66962dd5fb058972b250da | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,236 @@ | ||
# Website conventions / best practices | ||
|
||
## ❗️ Translation initiative | ||
|
||
_Please read carefully if adding or altering any written language content_ | ||
|
||
How to prepare your content for translation depends on whether you're working on a simple Markdown/MDX page or a React component page. | ||
|
||
**- MDX pages (`/src/content/page/`)** | ||
|
||
Markdown will be translated as whole pages of content, so no specific action is required. Simply create a new folder within `/src/content/` with the name of the page, then place index markdown file (ie. `index.md`) within the new folder. | ||
|
||
**- React component page** | ||
|
||
- **English text should be placed into `/src/intl/en/page-CORRESPONDING-PAGE.json`** | ||
- [Crowdin](https://crowdin.com/) is the platform we use to manage & crowdsource translation efforts. Please use the following conventions to help streamline this process. | ||
- Use kebab casing (utilizing-dashes-between-words) for file names and JSON keys | ||
- Use standard sentence casing for entry values | ||
- If capitalization styling required, it is preferable to style with CSS | ||
- Do this: | ||
``` | ||
JSON `"page-warning": "Be very careful"` | ||
CSS `text-transform: uppercase` | ||
``` | ||
- Not this: | ||
``` | ||
JSON `"page-warning": "BE VERY CAREFUL"` | ||
``` | ||
- This minimizes issues during translation, and allows consistent styling to all languages | ||
- _Please avoid_ embedding links within a sentence. For a word/phrase to be a link, it requires a key/string in the intl JSON. If this is in the middle of another sentence, this results in the sentence being broken into multiple pieces, and requires coding the sentence structure into the JavaScript. | ||
- This results in significant challenges during the translation process, as written syntax for each language will vary in terms of ordering subjects/verbs/etc. | ||
- If you're wanting to link to something within your sentence, create a link at the end of the sentence or paragraph: | ||
```jsx | ||
<p> | ||
All Ethereum transactions require a fee, known as Gas, that gets paid to the | ||
miner. <Link to="link">More on Gas</Link> | ||
</p> | ||
``` | ||
|
||
Once, you've added your English content to the appropriate JSON file, the above code should look something more like: | ||
|
||
```jsx | ||
<p> | ||
<Translation id="page-transactions" />{" "} | ||
<Link to="link"> | ||
<Translation id="page-transactions-gas-link" /> | ||
</Link> | ||
</p> | ||
``` | ||
|
||
- _tl;dr Each individual JSON entry should be a complete phrase by itself_ | ||
|
||
- This is done using the `Translation` component. However there is an alternative method for regular JS: `gatsby-plugin-intl` with `/src/utils/translations.js` | ||
|
||
- **Method one: `<Translation />` component (preferred if only needed in JSX)** | ||
|
||
```jsx | ||
import { Translation } from "src/components/Translation" | ||
|
||
// Utilize in JSX using | ||
;<Translation id="language-json-key" /> | ||
``` | ||
|
||
- **Method two: `translateMessageId()`** | ||
|
||
```jsx | ||
import { useIntl } from "gatsby-plugin-intl" | ||
import { translateMessageId } from "src/utils/translations" | ||
// Utilize anywhere in JS using | ||
const intl = useIntl() | ||
translateMessageId("language-json-key", intl) | ||
``` | ||
|
||
```jsx | ||
const siteTitle = translateMessageId("site-title", intl) | ||
``` | ||
|
||
## React Hooks | ||
|
||
- Components and pages are written using arrow function syntax with React hooks in lieu of using class-based components | ||
|
||
```jsx | ||
// Example | ||
import React, { useState, useEffect } from "react" | ||
|
||
const ComponentName = (props) => { | ||
// useState hook for managing state variables | ||
const [greeting, setGreeting] = useState("") | ||
|
||
useEffect(() => { | ||
// useEffect hook for handling component lifecycle | ||
setGreeting("Hello world") | ||
}, []) | ||
|
||
return <div>{greeting}</div> | ||
} | ||
|
||
export default ComponentName | ||
``` | ||
|
||
## Styling | ||
|
||
- `src/theme.js` - Declares site color themes, breakpoints and other constants (try to utilize these colors first) | ||
- We use [styled-components](https://styled-components.com/) | ||
|
||
- Tagged template literals are used to style custom components | ||
|
||
```jsx | ||
// Example of styling syntax using styled-components | ||
|
||
import styled from "styled-components" | ||
|
||
const GenericButton = styled.div` | ||
width: 200px; | ||
height: 50px; | ||
` | ||
const PrimaryButton = styled(GenericButton)` | ||
background: blue; | ||
` | ||
const SecondaryButton = styled(GenericButton)` | ||
background: red; | ||
` | ||
|
||
// These are each components, capitalized by convention, and can be used within JSX code | ||
// ie: <PrimaryButton>Text</PrimaryButton> | ||
``` | ||
|
||
- Recommended VS Code Plugin: `vscode-styled-components` <br>To install: Open VS Code > `Ctrl+P` / `Cmd+P` > Run: <br>`ext install vscode-styled-components` | ||
|
||
- Values from `src/theme.js` are automatically passed as a prop object to styled components | ||
|
||
```jsx | ||
// Example of theme.js usage | ||
|
||
import styled from "styled-components" | ||
|
||
const Container = styled.div` | ||
background: ${(props) => props.theme.colors.background}; | ||
@media (max-width: ${(props) => props.theme.breakpoints.s}) { | ||
font-size: #{(props) => props.theme.fontSized.s}; | ||
} | ||
` | ||
``` | ||
|
||
- [Framer Motion](https://www.framer.com/motion/) - An open source and production-ready motion library for React on the web, used for our animated designs | ||
- **Emojis**: We use [Twemoji](https://twemoji.twitter.com/), an open-source emoji set created by Twitter. These are hosted by us, and used to provide a consistent experience across operating systems. | ||
|
||
```jsx | ||
// Example of emoji use | ||
import Emoji from "./Emoji" | ||
|
||
// Within JSX: | ||
;<Emoji text=":star:" size={1} /> // sized in `em` | ||
``` | ||
|
||
- **Icons**: We use [React Icons](https://react-icons.github.io/react-icons/) | ||
- `src/components/Icon.js` is the component used to import icons to be used | ||
- If an icon you want to use is not listed you will need to add it to this file | ||
|
||
`src/components/Icon.js`: | ||
|
||
```jsx | ||
// Example of how to add new icon not listed | ||
import { ZzIconName } from "react-icons/zz" | ||
|
||
// Then add to IconContect.Provider children: | ||
{ | ||
name === "alias" && <ZzIconName /> | ||
} | ||
``` | ||
|
||
From React component: | ||
|
||
```jsx | ||
// Example of icon use | ||
import Icon from "./Icon" | ||
|
||
// Within JSX: | ||
;<Icon name="alias" /> | ||
``` | ||
|
||
## Image loading and API calls using GraphQL | ||
|
||
- [Gatsby + GraphQL](https://www.gatsbyjs.com/docs/graphql/) used for loading of images and preferred for API calls (in lieu of REST, if possible/practical). Utilizes static page queries that run at build time, not at run time, optimizing performance. | ||
- Image loading example: | ||
|
||
```jsx | ||
import { graphql } from "gatsby" | ||
|
||
export const query = graphql` | ||
query { | ||
hero: file(relativePath: { eq: "developers-eth-blocks.png" }) { | ||
childImageSharp { | ||
gatsbyImageData( | ||
width: 800 | ||
layout: FIXED | ||
placeholder: BLURRED | ||
quality: 100 | ||
) | ||
} | ||
} | ||
} | ||
` | ||
// These query results get passed as an object `props.data` to your component | ||
``` | ||
|
||
- API call example: | ||
|
||
```jsx | ||
import { graphql } from "gatsby" | ||
|
||
export const repoInfo = graphql` | ||
fragment repoInfo on GitHub_Repository { | ||
stargazerCount | ||
languages(orderBy: { field: SIZE, direction: DESC }, first: 2) { | ||
nodes { | ||
name | ||
} | ||
} | ||
url | ||
} | ||
` | ||
export const query = graphql` | ||
query { | ||
hardhatGitHub: github { | ||
repository(owner: "nomiclabs", name: "hardhat") { | ||
...repoInfo | ||
} | ||
} | ||
} | ||
` | ||
// These query results get passed as an object `props.data` to your component | ||
``` |
2 changes: 1 addition & 1 deletion
2
docs/contributing/EDITING_MARKDOWN.md → docs/contributing/editing-markdown.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# The ethereum.org website stack | ||
|
||
- [Node.js](https://nodejs.org/) | ||
- [Yarn package manager](https://yarnpkg.com/cli/install) | ||
- [Gatsby](https://www.gatsbyjs.org/) | ||
- Manages page builds and deployment | ||
- Configurable in `gatsby-node.js`, `gatsby-browser.js`, `gatsby-config.js`, and `gatsby-ssr.js` | ||
- [Gatsby Tutorial](https://www.gatsbyjs.com/docs/tutorial/) | ||
- [Gatsby Docs](https://www.gatsbyjs.org/docs/) | ||
- [React](https://reactjs.org/) - A JavaScript library for building component-based user interfaces | ||
- [GraphQL](https://graphql.org/) - A query language for APIs | ||
- [Algolia](https://www.algolia.com/) - Site indexing, rapid intra-site search results, and search analytics. [Learn more on how we implement Algolia for site search](./docs/ALGOLIA_DOCSEARCH.md). | ||
- Primary implementation: `/src/components/Search/index.js` | ||
- [Crowdin](https://crowdin.com/) - crowdsourcing for our translation efforts (See "Translation initiative" below) | ||
- [GitHub Actions](https://github.com/features/actions) - Manages CI/CD, and issue tracking | ||
- [Netlify](https://www.netlify.com/) - DNS management and primary host for `master` build. Also provides automatic preview deployments for all pull requests | ||
|
||
## Code structure | ||
|
||
| Folder | Primary use | | ||
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| `/src` | Main source folder for development | | ||
| `/src/assets` | Image assets | | ||
| `/src/components` | React components that do not function as standalone pages | | ||
| `/src/content` | Markdown/MDX files for site content stored here. <br>For example: `ethereum.org/en/about/` is built from `src/content/about/index.md` <br>The markdown files are parsed and rendered by `src/templates/static.js`\* | | ||
| `/src/content/developers/docs` | \*Markdown files in here use the Docs template: `src/templates/docs.js` | | ||
| `/src/content/developers/tutorials` | \*Markdown files in here use the Tutorial template: `src/templates/tutorial.js` | | ||
| `/src/data` | General data files importable by components | | ||
| `/src/hooks` | Custom React hooks | | ||
| `/src/intl` | Language translation JSON files | | ||
| `/src/lambda` | Lambda function scripts for API calls | | ||
| `/src/pages`<br>`/src/pages-conditional` | React components that function as standalone pages. <br>For example: `ethereum.org/en/wallets/find-wallet` is built from `src/pages/wallets/find-wallet.js` | | ||
| `/src/scripts`<br>`/src/utils` | Custom utility scripts | | ||
| `/src/styles` | Stores `layout.css` which contains root level css styling | | ||
| `/src/templates` | JSX templates that define layouts of different regions of the site | | ||
| `/src/theme.js` | Declares site color themes, breakpoints and other constants (try to utilize these colors first) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Translation Program | ||
|
||
_The Translation Program is an initiative to translate ethereum.org into different languages and make the website accessible to people from all over the world._ | ||
|
||
If you are looking to get involved as a translator, you can [join our project in Crowdin](https://crowdin.com/project/ethereum-org/invite/) and start translating the website to your language immediately. | ||
|
||
To get more information about the program, learn how to use Crowdin, check on the progress or find some useful tools for translators, please visit the [Translation Program page](https://ethereum.org/en/contributing/translation-program/). |