Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add editor tour #1051

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions docs/tours/editor-tour.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Editor Tour
* title: Editor tour
* description: This tour shows the user around the LEGO MINDSTORMS EV3 editor, pointing out the toolbox, workspace, simulator, share button, and download button.

## Welcome
* title: Welcome!
* description: New here? Take a tour of the editor!
* highlight: nothing
* location: center

## EV3 Simulator
* title: EV3 Simulator
* description: See what your code looks like running on the simulator!
* highlight: simulator
* location: right

## Toolbox
* title: Toolbox
* description: Drag out blocks of code from the Toolbox categories into the Workspace.
* highlight: toolbox
* location: right

## Toolbox
* title: Toolbox
* description: Drag out snippets of code from the Toolbox categories into the Workspace.
* highlight: monaco toolbox
* location: right

## Workspace
* title: Workspace
* description: Snap blocks of code together to build your program.
* highlight: workspace
* location: center

## Workspace
* title: Workspace
* description: Write code to build your program.
* highlight: monaco workspace
* location: center

## Share
* title: Share
* description: Create a link to your project to share with others.
* highlight: share
* location: below

## Download
* title: Download
* description: Download your program onto your Arcade device.
* highlight: download
* location: above

## Congrats
* title: Congratulations!
* description: You've completed the editor tour! 🤩🏆🤩 Happy coding!
* highlight: everything
* location: center
5 changes: 4 additions & 1 deletion pxtarget.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,10 @@
"githubEditor": true,
"chooseLanguageRestrictionOnNewProject": true,
"openProjectNewTab": true,
"python": true
"python": true,
"tours": {
"editor": "/tours/editor-tour"
}
},
"ignoreDocsErrors": true,
"uploadDocs": true
Expand Down
10 changes: 9 additions & 1 deletion theme/site/globals/site.variables
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,12 @@
Extensions
--------------------*/

@extensionsHeaderBackground: @darkGrey;
@extensionsHeaderBackground: @darkGrey;

/*---------------------------
Teaching Bubble
----------------------------*/

@teachingBubbleBackgroundColor: @teal;
@teachingBubbleTextColor: @white;
@teachingBubbleStepsColor: @lightNougat;