This project is now discontinued as the corresponding data is now in the main UniProt website
See internal front-end-deploy repository for details.
To install JavaScript dependencies, first make sure you are in the root directory of your uniprot-website
project -- this directory should contain a file named package.json
, then type yarn
in the command-line and press return. This should download and install the required JavaScript packages -- this may take a few minutes to finish.
Run yarn run start
Our preferred coding-style conventions are the Airbnb's JavaScript, React and CSS+Sass style guides.
You don't need to read or memorise all the styling rules; Write your code exactly the same way you always do, but when you are finished with editing a file or a even better, after modifying a few lines, go ahead and run the relevant linter in your terminal and the result of linter should be clear and self-explanatory enough for you to easily modify your changes to satisfy the linters.
Simply execute yarn lint
.
Currently all tests are written on top of Facebook's Jest Framework. Running existing tests would be as easy as executing yarn test
in the root directory of the project, in the command-line.
As mentioned above, tests are written on top of Jest. If you aren't familiar with either Jest or Unit Testing in general, the best place to start would be Jest's Getting Started page.
Once you have got yourself familiar with Jest, then start looking at the __tests__
directory in the root of code-base. You should be able to find a few existing tests there which might be a good template for your first tests here.
Before you start writing your tests, make sure they are in the write place:
- All tests should be placed in the
__tests__
directory, in the root of code-base. - The
__tests__
directory mimics the exact structure of thesrc
directory. The only exceptions are non-JavaScript files and folders e.g.styles
. You would need to follow this carefully as they are not automatically enforced by linters.
Jest has a rather unique feature called Snapshot Testing. If you are not familiar with that, have a look at Jest's official documentation. You must be able to find a few examples of the snapshot testing in the __tests__
directory as well.
Here there are two points to keep in mind:
- Jest will automatically create a directory called
__snapshots__
, where ever it can find a snapshot test! All of your compiled snapshots will be stored in that directory and they need to be committed to the repository as well, as they are part of your tests. - After updating a component which has snapshots tests already, you would need to run the following command to update your snapshots with the latest changes from your component:
yarn update-snapshots
. Jest's documentation has a section for updating, as well as resolving failing snapshot tests.
Service workers shouldn't be registered on a live-reload development
environment. To be able to have them running, you need to generate a build,
preferably a dev build through yarn run build:dev
to have an easier time
debugging. Serve the compiled website through any static asset server (e.g.
running npx serve build
) and you can have a look at the website where the
service worker should be registered and functioning.
Something's gone wrong with caching on a deployed build? In the entry point use
the unregister
function instead of the register
function.