We welcome feedback and help on this work. By participating in this project, you agree to abide by the code of conduct. Please take a moment to read it.
We are particularly looking for help with our open issues. We appreciate all forms of contribution - not just code - that can include documentation, clarifications, typo corrections and much more.
Please familiarise yourself with our:
- Code of conduct
- Code Standards
- Contributing guidelines (you are here)
- Github Project Board Guide
- Primary README
Before starting a pull request, firstly search through existing issues. Please also ensure to branch from latest, we only review PRs that are as small as they can be; which we do to maximise productivity.
If the work you want to carry out is not captured in an issue, please open one. Otherwise you risk spending a lot of time working on something that the project's developers might not want to merge into the project.
There are issue templates available for bug fix and feature requests, so you know what details to include.
Once you find an issue you would like to work on, please see this guide about our project board workflow
If you never created a pull request before, here is a great tutorial on how to send a PR.
Fork the project, clone your fork, configure the remotes and install the dependencies:
# Clone your fork of the repo into the current directory
git clone https://github.com/<YOUR ACCOUNT>/simorgh.git
# Navigate to the newly cloned directory
cd simorgh
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/bbc/simorgh
# Use recommended version of node for the project, listed in `.nvmrc`
nvm use
# Install latest version of npm
npm install --global npm@latest
# Install the project dependencies
npm install
If it has been a while since you've cloned the repo, pull from the latest
branch
git checkout latest
git pull upstream latest
Create a new topic branch (off the main project latest
branch) that will contain your feature, change, or fix:
git checkout -b <topic-branch-name>
When committing, please use these commit guidelines:
If you have a breaking change in a commit, prefix the commit message with BREAKING CHANGE:
- Component and Container directories should be capitalised as per the React convention, e.g.
/Headline/
- Test files should follow the dot notation as per the Jest convention, e.g.
index.test.jsx
- Stories should follow the dot notation as per the Storybook convention, e.g.
index.stories.jsx
- Files and directories should be camelCase, e.g.
storyBody.jsx
- The main entry file in a directory should be named
index.[extension]
e.g.Headline/index.jsx
andserver/index.js
- Static assets e.g.
icon-128x128.png
do not need to be camelCased.
All pull requests need to have linting, unit tests and integration tests passing. For new features, you should add appropriate tests in your PR.
Instructions for how to run tests are here in the Readme.
For new components, we write Jest Snapshot tests, with a deep render, using the shouldMatchSnapshot
test utility function.
For new containers, we write Jest Snapshot tests with a shallow render, using the shouldShallowMatchSnapshot
test utility function. We also write assertion-based enzyme tests to capture variations in prop values. See the Article getInitialProps
tests here as an example.
We use Travis CI as our continuous integration tool. It runs our linting, unit tests and integration tests on each commit and each Pull Request. PRs from your fork to the bbc/simorgh repo will be run by our TravisCI setup with no changes needed on your fork.
To run these on your forked version follow these steps.
- Follow the steps in Project Setup
- Visit travis-ci.org
- Log in with your Github account where you've forked this repo to
- Go to https://travis-ci.org/YourGithubUsername/simorgh
- Go to your Travis CI profile page and turn 'on' the toggle for the repository https://travis-ci.org/profile/YourGithubUsername. You can also change the settings on your repo at will.
- Now go to your Readme and update line 3 - to instead of using
bbc/simorgh
to useYourGithubUsername/simorgh
- this will mean that Travis will look at your fork of Simorgh and run the tests against that. - Now create a branch and start committing and pushing to it!
- You should see Travis CI and codecoverage now running against your branch and PRs within your fork. ✅
Note: The code coverage, CC_TEST_REPORTER_ID, is defined in .travis.yml. As such, you don't need to obtain the CC_TEST_REPORTER_ID from CodeClimate and configure it in the repository settings in Travis CI. This is because, the .travis.yml takes precedence over the value configured in repository settings. See the Travis CI public variables guide for more details.
We have a lot of sample data feeds. These are categorised in directories under this primary directory. Finding useful examples within these folder can be done by searching for the asset (page type) and block types (e.g. paragraph, media etc.) you're looking for.
Pick a JSON file under data/news/articles/[id].json
, and:
- add an example of your block somewhere in the
content.model.blocks
array. - add your new component to the
blockTypes
array.
Run npm run dev
and you should see your component at your article of choice, eg http://localhost.bbc.com:7080/news/articles/c0000000001o
data/schema.yaml describes the Article API definition for web. We need to make it aware of our new component.
Your component is more than likely a new 'block' in the data feed, so you'll need to add it to the array of which blocks the application should validate:
blocks:
type: object
items:
oneOf:
- $ref: '#/components/schemas/altText'
... etc ...
- $ref: '#/components/schemas/[your component name]'
minItems: 2
You'll also need to define the block subtype itself:
blockquote:
type: object
required:
- model
- type
properties:
model:
properties:
blocks:
$ref: '#/components/schemas/blocks'
type: object
type:
enum:
- blockquote
type: string
The schema check currently only happens on local data.
We've added our component, which should be kept as simple as possible. Now we need to create our container, which contains the business logic for mapping Optimo block data to the React parameters our component needs.
Add a new folder under src/app/containers/[Component Name]/
. You will need:
- index.jsx - describes the mapping of Optimo block data to React parameters
- index.test.jsx - creates "snapshots" of the component with the various different rendered outputs for the business logic in the container
This step is quite complicated, so copy and paste from a similar example and tweak the code to your requirements.
There is a guide for BBC staff which documents the manual process that should be followed before merging a PR. Please note: The guide links through to our CI endpoints and therefore is hosted in a private repository.
As part of our deployment & pipeline work, we have created a handy script to copy only the production files to a separate directory. The script /script/jenkinsProductionFiles.sh
will delete node_modules, create a pack
directory and copy all relevant configuration files and the necessary directories. Adding files to the /src
or /cypress
directory will not be an issue, when the code is deployed.
If on the other hand you are adding new files to the root directory of simorgh, and these files are necessary for production, you have to manually add the copy commands for the relevant files to the /script/jenkinsProductionFiles.sh
.
The .env
file should not be commited as it is often overwritten by the values in envConfig/
at build time. There is a postshrinkwrap
command which runs after an npm install
so should be run during setup of the application.
If the .env
file is appearing in your git status
it means it is now longer being assumed as unchanged, to fix this run:
git update-index --assume-unchanged .env