In order to use the frontend, you either need a deployed or a locally running instance of Edu-Sharing (see https://github.com/edu-sharing/Edu-Sharing/ for further information).
app
api
: Auto-generated API service for REST communication to Edu-Sharing.wlo-search
: Basically the complete application. Everything that does not necessarily have to go to the actual root component. This was meant for including the application as lazy-loaded route into another app, but we don't do that at the moment.core
: The parts of the application that stay alive throughout the application lifetime, including header- and footer components and services.preferences
: User-preferences pages, barely used at the moment.search
: Search- and details pages, the heart of the search application.details-page
search-page
shared
: Shared components of search- and details page.
shared
: Modules, pipes, and directives that are used application-wide.template
: Template components, the heart of the topic pages application.
Check whether the correct node version is installed that is specified in .nvmrc
.
$ node -v
If this is not the case, you might run:
$ nvm install # to install and use the specified node version
$ nvm use # to switch to the specified node version, if it is already installed
or install the specified version manually.
$ git submodule update --init
$ npm install
The dev server will serve the application on http://localhost:4200/ and reload automatically, if you change any of the source files.
Either:
-
start the dev server:
$ npm start
-
or start the dev server with German translations:
$ npm run start-de
http://localhost:4200/ is automatically redirected to http://localhost:4200/search, which serves the search application. If you want to open the topic pages, you have to navigate to http://localhost:4200/template?collectionId={COLLECTION_ID}.
When developing wlo-pages-lib
(the widget project relevant for the topic pages application),
checkout both projects (oeh-search-frontend
and wlo-pages-lib
) in one folder.
Afterward, wlo-pages-lib
should be linked automatically within the projects
folder.
Now, you can either:
-
start the dev server (with hot-reloading of
wlo-pages-lib
):$ npm run start:lib-dev
-
or start the dev server with German translations:
$ npm run start-de:lib-dev
Known errors:
Error: Cannot resolve type entity i1.ActionbarComponent to symbol
-> delete thenode_modules
-folder located inprojects/wlo-pages/lib
, if existing.
For deployment, the application is packaged as Docker image.
To locally build the image and serve it on http://localhost:8080, run:
$ npm run build
$ npm run docker-build
$ npm run docker-run
When pushing to GitHub, a workflow is started (https://github.com/openeduhub/oeh-search-frontend/actions) that builds the image and publishes it.
Local dev configuration is done via the file src/env.js
. Copy src/env.sample.js
for an initial version.
When started as Docker container, the file src/env.js
will be populated with the respective environment variables
The following variables are available:
Variable | Description | Default value (dev) | Default value (prod) |
---|---|---|---|
EDU_SHARING_API_URL | URL of the Edu-Sharing API to connect to. | /edu-sharing-api' |
/edu-sharing-api' |
EDU_SHARING_USERNAME | Username to login during development. | (undefined ) |
(undefined ) |
EDU_SHARING_PASSWORD | Password to login during development. | (undefined ) |
(undefined ) |
WORDPRESS_URL | Base URL of the corresponding WLO Wordpress page. | https://dev.wirlernenonline.de |
https://wirlernenonline.de |
SHOW_EXPERIMENTS | Display a link to experimental-feature toggles in the frontend. | true |
false |
ANALYTICS_URL | URL of the analytics backend to connect to. | (undefined ) |
/analytics' |
For example, to run your locally built Docker image against the staging environment of WirLernenOnline, run
docker run --name oeh-search-frontend --rm -ti -p 8080:80 -e EDU_SHARING_API_URL=https://redaktion-staging.openeduhub.net/edu-sharing/rest openeduhub/oeh-search-frontend:local
Pointing the browser to a different backend as described above might fail due to missing CORS
headers. In order to point a dev environment to a deployed backend, copy .env.sample
to .env
and set the URL there.
Run ng test
to execute the unit tests via Karma.
See https://docs.cypress.io/guides/overview/why-cypress.html.
All of the following commands must be run from e2e-cypress
as working directory:
$ cd e2e-cypress
Install dependencies using
$ npm install
- Install dependencies and submodules and run the dev server using
npm run start-de
(see section Build). - Start the elasticsearch-relay on port 3000 (see https://github.com/openeduhub/oeh-search-elasticsearch-relay).
Single run:
$ npm run cypress:local:run
Open GUI:
$ npm run cypress:local:open
Test https://staging.wirlernenonline.de, single run:
$ npm run cypress:stage:run
Test https://staging.wirlernenonline.de, open GUI:
$ npm run cypress:stage:open
Test https://suche.wirlernenonline.de, single run:
$ npm run cypress:prod:run
Test https://suche.wirlernenonline.de, open GUI:
$ npm run cypress:prod:open
This project uses husky and link-staged for automatic code checking and formatting before commits.
Run npm run format
to format all source files via Prettier.
Run ng lint
to check all source files via ESLint.
Internationalization is provided with i18n.
Localization files are stored in src/locale
.
To create / update translation files, run
npm run extract-i18n
This will generate the source file messages.xlf
in src/locale
.
Copy (or update) missing blocks from messages.xlf
to target translation files in src/locale
and
write missing translations in the target
tags of translation files.
The following files are relevant:
angular.json
nginx.page.conf
To choose a non-default locale, a configuration has to be provided in angular.json
. It can be
activated like this:
ng serve --configuration=de
When built with ng build --localize
, angular creates a directory for each language in dist
. The
Dockerfile
configures an Nginx to serve the browser's preferred language by redirecting into one
of these directories.
Start elasticsearch-relay
as dev server and install apollographql.vscode-apollo
to get IDE
features for GraphQL queries in VSCode.
ext install apollographql.vscode-apollo
Run
npm run build:web-components
and copy all data from the folder dist/web-components/de
in the corresponding wordpress folder (/wp-content/themes/wir-lernen-online/src/assets/js/angular/detail_view
)