Session Recording #
Stern Stuff #
-
…Landing Pages?
Catching up, here—we were quite disappointed by how few (less than half ) of you made some progress on your landing pages for last week.
We don’t want you working on these at the expense of your final projects—but that means you have more work to do on these in the final two weeks of the course. They remain due at the end of the semester.
-
…Too-Brief Problems!
In the same vein, many of your problem proposal docs were… pretty flimsy. (Not everyone; you know who you are!) If your boss asks for 150–200 words and you turn in less than 100—it’s hard to look great.
Length here is just a proxy for consideration, and we want to see more of that from folks. We wouldn’t ask for it if we didn’t expect to see it.
Project Check-Ins #
We’ll be in our same groups from last week again, today:
Group 1
Mia, Amy, Hye Lynn, Jonathan, Shambhavi, Yuting, Bhakti
Group 2
Mika, Inji, Vee, Devansh, Jenny, Ziwei, Jolyn
Group 3
Rice, Rayana, Nadia, Huijie, Hannah, Irene, Jennifer
Group 4
Amely, Yaxuan, Ishani, Emma, Opal, Iris, Bee
- You’ll each see one of us, today—just a few minutes each
- Have your filled-in roadmaps up to take us through
- Everyone should open up each other’s FigJams that we’re looking at—feedback for one is feedback for all!
- And then tell us where you are at!
- We want to make sure you are “unblocked” on your project: do you know what you are doing overall, and then for next week?
- And think about what you want to get most
from us— is it conceptual, technical, or visual feedback? - When we are not with your group, we want you to look through each other’s roadmaps—do they make sense to you?
- Leave comments in your groupmates FigJams—noting something you might think is missing or has not been accounted for!
What We’re Seeing So Far #
-
This is not, primarily, a content project—if you are burning your time here, we want you to refocus on the function !
-
Differentiating between assets and content—you might think of an illustration or icon as an asset. This also not primarily an asset project, but leave some time (towards the end) for these.
-
People should be in code! Focusing again, on the core functionality of it—don’t overindex on how it looks, right now—in fact, maybe don’t write any styles this week (nor any Figma).
-
Model the data you will need—starting with local data (“hardcoded,” below) before moving to an API!
-
Don’t check any API keys into your repositories! They shouldn’t be
public
. If you have an API that needs these, talk to us. -
As you get into the technical aspects of your MVP, ruthlessly trim your scope! As we said last week, “all things equal, a thoroughly working project is worth more than any particular taste/design.”
A Couple Examples #
We’ve put together a couple example/demo repos that can help with some functional (and conceptual) aspects of your projects.
Working With Data #
This is similar to what we did with Are.na—but now working with a JSON file within your project. You could use this as a model for an “API” of your own data:
-
Remember JSON (JavaScript Object Notation)?
- Before we asked Are.na for data, but you can also include it yourself
- You can always write/edit your own JSON files by hand, though the syntax is pretty easy to mess up!
- Instead you could start your data from Google Sheets, and use an extension to export or convert it from CSV
- There is also a better add-on, but New School IT doesn’t want us to have nice things—use a personal account to try this out!
-
Just like with our Are.na projects, we can generate DOM from this data!
- IRL, you’d probably have some kind of templating framework
or library— but you can use vanilla JS for repetitive/data-derived DOM - We’ll again use a
forEach
loop to go through our array of data - For now, we can use the same template literals/strings, in our JS file
- Using
if
/else
conditional logic to apply a class - This still uses the
fetch
API to get the data—but now from a local file!
- IRL, you’d probably have some kind of templating framework
Keeping Track of State #
And an example of saving state. This is a little more advanced, but it shows some ways you might retain a user’s preferences/selections within your project (within what our free GitHub hosting allows):
-
Briefly, static vs. dynamic websites (in a build/hosting context)
- We have been writing static sites—meaning that only you can change your pages, in code
- GitHub Pages (our hosting) does not allow server-side languages (PHP, Ruby, Go, Next.JS, etc.) nor databases (My SQL, Postgres, etc.)
- These are how most sites are made dynamic—constructing pages, storing information, responding to user requests, allowing sign-in
- But we can approximate/suggest some dynamic behavior with JS!
-
Then onto
form
,input
, andselect
elements (commenting out theform-state.js
to start)<form>
/<input>
/<select>
/button
are semantic indicators of interactivity- The
type=
attribute is used for different (user-agent) controls required
makes them… required<label>
elements are connected byfor=
,id=
,name=
attributes- You can (and should) style them from these defaults
-
Onto search (aka: query strings) and URL params (for parameters)
- By default, forms add their query string to the URL on
submit
- This is a way for your request to the server to be more specific
- We’re going to use these to track our state—what the user has done
- Using URLs also makes these shareable—you could bookmark/QR to different states
- Let’s comment
form-state.js
back in and go through preventDefault
stops the form from submitting/refreshing- Instead, here we update the current URL on the
input
event (meaning any change to the form)
- By default, forms add their query string to the URL on
-
Finally web storage!
- This API persists data across reloads/browser
sessions— but it is still limited to a single device - Cookies (cross domain, visible to server) vs.
sessionStorage
/localStorage
—are all just ways to keep track of things - These are visible/editable in a DevTools panel: Application Storage Local Storage
- This API persists data across reloads/browser
For Next Week #
-
Finish leaving your comments in your group’s roadmaps, if you didn’t during class today. Weigh in on each of your tablemates FigJams!
-
We’ll likely have absolutely breezed through our demos today, so glance through each of them and think about how they might inform your own project:
-
local-json
A.k.a. working with data. -
forms-params-storage
A.k.a. keeping track of state.
-
-
You’ll be continuing on to the next milestone of your project, identifying and beginning to implement the primary features of your concept:
-
Keep us updated with your links and progress: