This is a Next.js project bootstrapped with create-next-app
.
- Install Node
- Install Yarn
- Install Git LFS
- Install an MDX syntax highlighting plugin for your code editor
- If installing Git LFS for the first time on your user account, run
git lfs install
- Run
yarn dev
- Open http://localhost:3000 to see the site
What you need to know if you're just authoring lessons or otherwise editing .mdx
files:
What you also need to know if you're editing the website more in depth:
Guidelines to ensure consistency and quality of contributions are listed in .github/pull_request_template.md
.
Some items may refer back to this readme for longer lists or documentation.
Components (or "widgets") are building blocks for visual and interactive elements that go beyond basic Markdown.
You can use components in your .mdx
files and pass them options/parameters called "props".
The basic syntax is:
<SomeComponent someString="some string" someNumber={42} someFlag={true} />
Or for some components that may need longer-form inputs:
<SomeComponent>Lorem ipsum dolor</SomeComponent>
The inner contents are referred to as the children
prop below.
This section only covers the components and props meant to be used in lessons. For documentation of other components and props, look in the components folder.
- 📚 = prop accepts markdown and math
- 🚨 = prop is required for component to render
An expandable/collapsible section.
title
🚨 - Text to show in clickable button that expands/collapses more content beneath.children
🚨📚 - Content to show under title button when expanded.
Centers a group of arbitrary elements. You shouldn't need to use this in lessons much, if ever. Most components align themselves as stylistically appropriate.
children
🚨 - Arbitrary content.
A button is an element that does something on the current page. A link is an element that goes somewhere. This component is a big clickable that combines the two for stylistic consistency, hence the generic name "clickable".
Normal in-text links can still be made with regular Markdown syntax. This component is used outside of lessons, but in lessons you should only use this component for important links you want to emphasize.
link
🚨 - Location to go to when link is clicked.icon
- Font Awesome class of icon to show next to text.text
- Text to show.design
- Style of the clickable.rounded
for rounded. Default""
for square.
Also required: icon
or text
A component to show image and/or video and caption, with controls to switch between them.
id
- A page-unique identifier likesome-figure
to attach to the figure so you can link to it like[Some Figure](#some-figure)
.image
🚨 - Path to image file.video
🚨 - Path to video file.show
- Whether to show image or video by default. One of"image"
or"video"
.caption
📚 - Caption for both image and video.imageCaption
📚 - Caption just for image.videoCaption
📚 - Caption just for video.width
- Manually set width like300px
. Displayed width will never go beyond screen.height
- Manually set height like300px
.loop
- Whether to loop video,true
orfalse
.
For image
and video
, if you provide a relative url, links to that path in the Linode bucket.
Omit width
and height
whenever possible to let the figure auto-size based on the aspect ratio of the image/video.
Dynamically imports another react component and displays it in a frame.
filename
🚨 - Name of a.js
file (without the extension) in the same folder as the lesson.children
- A function that takes the component loaded fromfilename
and returns what to render (allows passing props to the loaded component).aspectRatio
- A number representing the width / height of the box in which the interactive lives. (Default: 16 / 9)allowFullscreen
- A boolean indicating whether to show a full screen button in the top right (defaults tofalse
)
Example of children
: <Interactive>{(MyComponent) => <MyComponent someProp="some value" />}</Interactive>
.
An in-text link to another lesson that shows a preview of the lesson in a tooltip on hover/focus.
id
🚨 - Identifier slug for lesson, likequick-eigen
.children
- Link text.
A pi creature with a chosen emotion and optional speech/thought bubble text.
emotion
- Filename of emotion in /pi-creatures folder. Defaulthooray
.text
📚 - Text to show in bubble. Omit to not show any bubble.thought
- Whether bubble is thought (true
) or speech (false
). Defaultfalse
.placement
- How to place the pi.side
puts the pi to the right of the main page column (with its bottom aligned with the bottom of the previous element, which can be a paragraph, figure, etc.), and hides the pi completely when the screen isn't wide enough.inline
puts inside the main page column as if it were its own paragraph.auto
puts the pi to the side when the screen is wide enough, and inline when it isn't. Defaultauto
.flip
- Iftrue
, puts the pi to the left instead of the right.
Interactive multiple-choice question with explanation.
question
🚨📚 - Text of the questionchoice1
throughchoice6
🚨📚 - Possible choices.answer
- Which choice number is the correct one, e.g.answer={3}
.explanation
📚 - Explanation of answer once reader gets it correct.
Sections are the alternating white/off-white backgrounds that span the entire width of the page. Use these sparingly to divide your lesson into big groups.
children
📚 - Arbitrary content.
Example:
... previous section of content
</Section><Section>
... next section of content
"Redacted" text that reveals itself on hover/focus, similar to spoilers on Reddit and other forums.
children
📚 - Arbitrary content.
Component to embed a tweet (and possibly other Twitter things in the future?).
tweet
🚨 - Id of tweet.