This is the code for the new Moving Across Thresholds website. Go to MovingAcrossThresholds.com to see the current live version. Some updates may not yet been published.
For an up-to-date code documentation, install yarn
and elm-doc-preview
, then run yarn doc
and navigate to <dev IP>:8000
The DESIGN and SPECIFICATION documents are out of date.
Since May 2022, all issues are tracked on github issues.
For more concrete discussion of content and structure, check out these collaborative docs:
Sketch of Measures (vertical and horizontal rhythm) and potential Colors, by Flupsi, 22-03-07
Sketch of a Look, as the screen expands, by Flupsi, 22-03-04
Install yarn
and cross-env
to execute the scripts defined in package.json
yarn doc
Install elm-doc-preview and run edp
to launch a local documentation server.
edp --no-browser --port 1234
yarn verify
Run elm-verify-examples
and elm-test
to verify the correctness of the examples given in the documentation.
elm-verify-examples && elm-test
elm-verify-examples --run-tests
yarn local
yarn dev
will run the development version on port 1234 of your development computer
yarn local
will skip the network and only serve on localhost
yarn install -g elm-live
elm-live src/Main.elm -v --host=192.168.178.93 --pushstate --port=8000 -- --output=main.js --debug
Install firebase
and deploy via
yarn clear-build-cache && yarn build && firebase deploy
Elm, scss and js modules are ordered under src in a type-centric order.
Canvas: We leverage the native scroll facilities. Unfortunately, mobile and desktop browsers behave very differently and very, very weirdly.
Which web platform APIs can we safely use?
scrolledToA <id>
.scrolledIntoNowhere
event.Hypertext content: A custom element that connects to a data-node, reading and writing HTML. For editing purposes, we use the squire which relies on browser implementations. To enable global undo, we want to route any change through an ACTION. The costom element node is only renewed when a remote client changes the... QUESTION: Should the custom element connect directly to the firestore, or through elm? We can definitely implement global UNDO through a central registry list of user-initiated actions and stuff. This would make the elm-state orthogonal to each data-state, which is desireable because elm doesn't display the HTML itself.
Dataflows:
Thank you to the creators of these libraries, as well as to the lovely Elm community!