Session Website | Send Messages, Not Metadata.
Go to file
tomobre 7cb36bc78b fix: misspell in comment fixed 2023-02-24 16:52:28 +11:00
assets/svgs feat: added YouTube page to footer 2023-02-06 12:02:04 +11:00
components fix: misspell in comment fixed 2023-02-24 16:52:28 +11:00
constants feat: added merch store link 2023-02-01 10:34:09 +11:00
contentful fix: replace all open group copy with community 2023-01-20 14:49:06 +11:00
contexts
hooks
pages fix: faqs accepting videos and gifs, height increases with each video 2023-02-24 12:41:28 +11:00
public fix: replace all open group copy with community 2023-01-20 14:49:06 +11:00
services fix: fixed RSS feed generation 2023-02-01 13:51:46 +11:00
styles
types
utils
.env.example
.eslintrc.json
.gitignore
.nvmrc
.prettierignore
.prettierrc
.yarnrc feat: make yarn install use frozen lockfile by default 2023-01-20 14:49:42 +11:00
LICENSE
README.md
additional.d.ts
next-env.d.ts
next.config.js fix: replace all open group copy with community 2023-01-20 14:49:06 +11:00
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock

README.md


Send Messages, Not Metadata.

Getting Started

This project is built with Contentful, Next.js, Tailwind CSS & Typescript.

System Requirements

Setup

  1. Install nvm

Follow nvm setup instructions here.

  1. Install Node.js locally
nvm install 14.15.0
nvm use 14.15.0
  1. Install yarn
npm install yarn -g
  1. Install dependencies

Using --frozen-lockfile makes sure that the environment is consistent on any machine by installing the exact package versions listed in the yarn.lock.

yarn install --frozen-lockfile
  1. Signup for a free Contentful account and create an organisation and within that create a space.

    We called our organization Session and the space Website.

    • For the site to build correctly you need to import our Content models and assets into your Contentful space. We have created some example content so you can get comfortable with our Contentful setup.

    • Add your space ID and content management token inside of contentful/config.json

    • Run this command inside the root of this project

      npx contentful space import --config contentful/config.json
    
    • For more information about importing/exporting in Contentful see here.
  2. Setup your environment file. See our .env.example as a guide. Make sure to call the file .env.local.

    • You can leave the Campaign Monitor keys empty unless you are interested in how we handle mailing list subscriptions.

Developing

  • For accessbility testing we use the axe-react plugin.
  • We use the Headwind VSCode extension for sorting TailwindCSS classes.
  • We use classnames to organise our classes into groups that combine at build time.

If you are new to Next.js, this is a helpful introduction: https://nextjs.org/docs

Now you can run the development server:

yarn dev

Open http://localhost:3000 with your browser to see the Session homepage.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

Contentful

  • Use the Link Preview and Media content models for embedding content into blog posts.
  • If linking content that is on the site itself try to omit omit https://getsession.org. e.g. https://getsession.org/blog/onion-requests-session-new-message-routing-solution/ => /blog/onion-requests-session-new-message-routing-solution/.
  • To use superscript, subscript, strikethroughs or style text use the Markup content model.

Next.js

  • Try to use the next/image component in place of img tags where possible.
  • If you want to make a link to a location on the website use the next/link component with a relative path. i.e. https://getsession.org/blog -> /blog

TailwindCSS

Class organisation

This helps with readability and is encouraged. Consider it to be a guideline and not a set of rules.

React Component
  <div className={classNames(
    "general classes here - colors, fonts, padding, margin etc",
    "responsive class changes should have it's own string md: lg: etc."
    "placeholder classes",
    "animations, transforms, effect",
    "pseudo classes i.e hover, focus, active, etc.",
    "toggling classes i.e. NavMenu isExpanded"
  )}></div>
Custom CSS Class
.custom-class {
  @apply general classes here - colors, fonts, padding, margin etc;
  @apply responsive class changes should have it's own string md: lg: etc.;
  @apply placeholder classes;
  @apply animations, transforms, effect;
  @apply pseudo classes i.e hover, focus, active, etc.;
  @apply toggling classes i.e. NavMenu isExpanded;
}

Issues with Tailwind

We can't use template literals with classes if we want to purge (shrink) the CSS files at build time.

<div className="hover:bg-black hover:text-${bgColor}"></div> // Won't work in production

Deploying to Production

You can run the project in a production environment by running:

yarn run build && yarn run start

Make sure to do this locally and check for errors before pushing any code changes to your hosted repository

Any changes made on Contentful will be reflected on the production server hourly.

If you want to see your Contentful changes faster while using a production server you can use the Staging Environement.

Staging Environment

You can test the project in a staging environment by running:

yarn run build:staging && yarn run start:staging

Staging environments are password protected using the password you assign to STAGING_SECRET in .env.local.

To unlock the staging environment go to http://localhost:3000/login?secret=YOUR_PASSWORD_HERE

System environment variables and page metadata will also be updated to show it's a staging website.

Any changes made on Contentful will be reflected on the staging server every 30 seconds.

License

Distributed under the GNU GPLv3 License. See LICENSE for more information.

Attributions

Android robot head by Google available at https://commons.wikimedia.org/wiki/File:Android_robot_head.svg under a Creative Commons Attribution Generic 2.5. Full terms at https://creativecommons.org/licenses/by/2.5/deed.en. 'F-Droid Logo by F-Droid available at https://gitlab.com/fdroid/fdroid-website/-/blob/master/assets/fdroid-logo.svg under a Creative Commons Attribution ShareAlike 3.0. Full terms at https://gitlab.com/fdroid/artwork/-/blob/master/LICENSES/CC-BY-SA-3.0.txt.