Views
In this kata, we’re going to focus solely on creating views
! It’ll be short and sweet and give you the opportunity to play around with view
related concepts.
Pre-requisites
- Make sure your
Development Theatre
is running.
Step 1: Create your skill
Create a new directory for your kata
cd ~/path/to/your/spruce/projects
mkdir katas
Create a new skill
cd katas
spruce create.skill views-kata
Name your skill
Note: Your
skill
name should be unique, so if you did this kata before, you may want to name it something different.
- Name:
Views Kata
- Description:
A kata to practice creating views!
Open your skill
in VS Code
Note: You can follow the instructions printed in the
cli
or use the command below.
cd views-kata && code .
Then, open the terminal in VS Code and run:
spruce setup.vscode
Hit Enter
to accept all setup options.
Then complete the following:
- Open the Command Palette by using
cmd+shift+p
and search type: “Manage” - Select “Tasks: Manage Automatic Tasks”
- Then select “Allow Automatic Tasks”
- Open the Command Palette again type “reload” and select “Reload Window”
The Test Runner should open and begin installing additional requirements.
When it’s done, you should see a message that says Ready and waiting...
Create your first test file
- Hit
ctrl+space
(if you have the shortcuts setup) and hit enter.- If you don’t have the shortcuts setup, you can type
spruce create.test
in your terminal and hitEnter
.
- If you don’t have the shortcuts setup, you can type
- Select “Behavioral”
- For “What are you testing?”, type “Root skill view”
- For “Camel case name”, hit Enter (it should say “rootSkillView”)
- For “Which abstract test class do you want to extend?” select “AbstractSpruceFixtureTest”
- Close the terminal window and get back to the Test Runner.
- There should be one failing test.
- The test will explain that before you can do any tests, you need to run
spruce set.remote
- Hit
ctrl+space
and typeset.remote
and hitEnter
.- You will be prompted for more dependencies to install. Hit
Enter
to accept them all.
- You will be prompted for more dependencies to install. Hit
- For your remote, select “Local”
- Allow the rest of the dependencies to install
- If prompted for remote again, select “Local” again
- Close the terminal window and get back to the Test Runner.
- The test should now be failing beacuse
false
does not equaltrue
.
- The test should now be failing beacuse
- Click on the failing test in the Test Runner and click “Open” to open the test file.
Prep the test file
- Clear out the contents of the first test
- Delete the second test
- Delete
class RootSkillView {}
at the bottom of the test file
Your test should now be passing.
Rendering your RootSkillView
Test 1: Rendering your RootSkillView
In your first test, add the following:
@test()
protected async canCreateRootSkillView() {
this.views.Controller('.root', {})
}
Note: It’s ok to have some type errors here, they’ll go away as you add more code.
Production 1: Creating your RootSkillView
In order for this test to pass, you need to create your first view
, a RootSkillView
.
- Hit
ctrl+space
and typecreate.view
and hitEnter
. - Select “Skill View Controller”
- Let the dependencies install
- When prompted for if you would like to create your root skill view controller, hit
Enter
to accept the default. - Now update your failing test to reference the
RootSkillView
you just created.
@test()
protected async canCreateRootSkillView() {
this.views.Controller('views-kata.root', {})
}
Note: The
views-kata
is thenamespace
of your skill and theroot
is the name of your view. Thenamespace
will match whatever you named your skill, but you can check in yourpackage.json
to see what it is. Check underskill.namespace
.