Find summer camps in the metro area.
Note, this repo was re-used for the 2019 Summer Camp guide due to time constraints.
This project is meant to live within the Star Tribune CMS. Overall, this means that the markup and content are stored within the CMS, while the styling and javascript is created and managed here.
It is necessary to have news-platform running locally as this will create a connection to the CMS data. It is also important to have it configured with the ASSETS_STATIC_URL
environment variable set to http://localhost:3000/
so that news-platform can find the files in this project.
Once a CMS article has been created and the template is set up, make sure to include the article ID in config.json
.
In the Twig template for the article(s), use something like the following to get the assets created in this project.
{% block styles %}
{{ parent() }}
<link rel="stylesheet" href="{{ static_asset('news/projects/all/2018-summer-camp-guide/style.bundle.css') }}">
{% endblock %}
{% block scripts %}
{{ parent() }}
<script type="text/javascript" src="{{ static_asset('news/projects/all/2018-summer-camp-guide/app.bundle.js') }}"></script>
{% endblock %}
The following are global prerequisites and may already be installed.
- (on Mac) Install homebrew.
- Install Node.js.
- (on Mac)
brew install node
- (on Mac)
- Install Gulp:
npm install gulp -g
The following should be performed for initial and each code update:
- Install Node dependencies:
npm install
To run a local web server that will auto-reload with Browsersync, watch for file changes and re-build: gulp develop
For the mobile version of the site, use gulp develop --mobile
. If your project has multiple pages, you can target a specific article ID with gulp develop --cms-id=123456
. You can combine both of these and run multiple versions in different terminal tab.
config.json
: Non-content config for application.- Use this to add non-local JS or CSS assets, such as from a CDN.
- This can be overridden with a
config.custom.json
if there is a need to add configuration that should not be put into revision history.
content.json
: See Content and copy. This file is used to hold content values. If the project is hooked up to a Google Spreadsheet, you should not manually edit this file.pages/
: Holds HTML-like templates. Any files in here will get run through EJS templating and passed values fromconfig.json
,content.json
, andpackage.json
.pages/index.ejs.html
: The default page for the application.pages/_*.ejs.html
: Includes for other templates.pages/*.ejs.html
: Any templates without a_
prefix will be rendered into an full HTML page.
styles/
: Styles in SASS syntax.styles/index.scss
: Main point of entry for styles.styles/_*.scss
: Any includes should be prefixed with an underscore.
app/
: Where JS logic goes. This supports ES6+ JS syntax with Babel and gets compiled with Webpack.app/index.js
: Main entry point of application.
assets/
: Various media files. This gets copied directly to build.sources/
: Directory is for all non-data source material, such as wireframes or original images. Note that if there are materials that should not be made public, consider using Dropbox and make a note in this file about how to access.lib/
: Modules used in building or other non-data tasks.tests/
: Tests for app; see Testing section below.- The rest of the files are for building or meta-information about the project.
Depending on what libraries or dependencies you need to include there are a few different ways to get those into the project.
- JS
- Include it with
npm
.- For instance:
npm install --save awesome-lib
- This can then be included in the application, with something like:
import awesome from "awesome-lib"; awesome.radical();
- For instance:
- In the template, you can include libraries from a CDN. Consider using the StribLab static libs CDN.
- In your application, make sure to add a comment like the following so that linters will know that the dependency is already loaded.
/* global Pym */
- IMPORTANT Make sure to always use a specific version from a CDN; do not use latest or something similar.
- For testing, these need to be available and should be added to
tests/global.js
- In your application, make sure to add a comment like the following so that linters will know that the dependency is already loaded.
- For local modules that you have written yourself, you can use the ES6 module syntax.
- For instance, say you have created a
utils.js
module file, just use a relative path to include it:import utilsFn from "./utils.js"; let utils = utilsFn({});
- For instance, say you have created a
- Include it with
- CSS
- Include it with
npm
.- For instance:
npm install --save normalize-scss
- This can then be included in the application, with something like:
@import "normalize-scss/sass/_normalize.scss";
- For instance:
- In the template, you can include libraries from a CDN. Consider using the StribLab static libs CDN.
- IMPORTANT Make sure to always use a specific version from a CDN; do not use latest or something similar.
- Include it with
Testing is run via Jest. Fast, unit and higher level testing will happen on build. You can run these test manually with gulp js:test
or npm test
.
Acceptance testing (i.e. high level quality assurance) is done separately as running headless Chrome takes more than a couple seconds. You will need a new version of Chrome or Chrome Canary installed, then run js:test:acceptance
.
NOTE: Acceptance test will fail until this fix is published.
TODO: Some basic automated, cross-browser testing would be very beneficial. Unfortunately things like Browserstack are very expensive, and managing our own servers to do this would be very expensive time-wise as well.
A manual test page is provided for looking at the piece embeded in another page.
- Assumes you are running the development server with
gulp develop
- Run a local server for the test directory, such as
cd tests && python -m SimpleHTTPServer
orhttp-server ./tests/
- In a browser, go to http://localhost:8080/manual/embed.html.
All parts are compiled into the build/
folder. The default complete build can be done with gulp
or gulp build
Deployment is setup for AWS S3. Set the following environment variables; they can be set in a .env file as well. For further reading on setting up access, see Configureing the JS-SDK.
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
- OR
AWS_DEFAULT_PROFILE
- OR
AWS_CONFIG_FILE
To deploy, run gulp deploy
. This will build and publish to the location configured as default
(see Configuration below).
To deploy to the production
location, for instance, simply use that flag like: gulp deploy --production
A handy command is to use gulp publish:open
to open the URL to that project.
The HTML content needs to be manually put into the CMS. This lives in an LCD (see id in config.json
). There is a content
field. The contents of the build/page-components.html
should be copied in there with a minor update; replace this:
<div class="sharing-wrapper"></div>
With:
<div class="sharing-wrapper">
<!-- share -->
</div>
Publishing is configured in the config.json
file. The publish
property can have the following keys: default
, testing
, staging
, and production
. It is suggested to use default in place of the staging
as the default gets used when no flag is specified (see below). Each key should correspond to an object with bucket
, path
, and url
. IMPORTANT: The url
should be a fully qualified URL that ends with a /
. This URL will get inserted into some meta tags on the page by default. For example:
{
"publish": {
"default": {
"bucket": "static.startribune.com",
"path": "news/projects-staging/all/2018-summer-camp-guide/",
"url": "http://static.startribune.com/news/projects-staging/all/2018-summer-camp-guide/"
},
"production": {
"bucket": "static.startribune.com",
"path": "news/projects/all/2018-summer-camp-guide/",
"url": "http://static.startribune.com/news/projects/all/2018-summer-camp-guide/"
}
}
}
Using the flags --testing
, --staging
, or --production
will switch context for any relevant publish
or deploy
commands. Note that if the flag is not configured, the default
will be used.
The publishing function, uses a token that helps ensure a name collision with another project doesn't overwrite files unwittingly. The publishToken
in config.json
is used as an identifier. This gets deployed to S3 and then checked whenever publishing happens again. The gulp publish
(run via gulp deploy
) will automatically create this token if it doesn't exist.
If you see an error message that states that the tokens do not match, make sure that the location you are publishing to doesn't have a different project at it, or converse with teammates or administrators about the issue.
Having a consistent style for code and similar aspects makes collaboration easier. Though there is nothing that enforces these things, intentionally so, spending some time to adhere to these styles will be beneficial in the long run.
- JS: Javascript is linted with ESLint and defined in
.eslintrc
.- The defined style extends from eslint:recommended but is more focal about single quotes for strings and using semicolons.
- Install the following ESLint plugins for Atom, Sublime Text, or others.
- Styles: SASS (and CSS) is linted with stylelint and defined in
.styleintrc
.- The defined style extends from stylelint-config-standard with a couple additions to how colors are defined.
- Install the following stylelint plugins for Atom, Sublime Text, or others.
Other good practices that are not encompassed with linters.
- General
- Comment as much as possible without being overly redundant.
- JS
- Use small modules as much as possible.
- Styles
- Use
class
es instead ofid
s for HTML elements, specifically for styling and JS. - Use relative units such as
rem
,em
,vh
,vw
, or%
, instead of absolute values such aspx
. This helps accessibility as well as designing for different screen sizes.- Overall, use
rem
for "component" level styling, such as a form, and then useem
for styling inside components.
- Overall, use
- Use
Code is licensed under the MIT license included here. Content (such as images, video, audio, copy) can only be reused with express permission by Star Tribune.
Generated by Star Tribune StribLab generator.