wallet-core/packages/merchant-backoffice-ui
Stefan Kügel d5af97dd21
Translated using Weblate (Spanish)
Currently translated at 55.9% (282 of 504 strings)

Translation: GNU Taler/Merchant Backoffice
Translate-URL: https://weblate.taler.net/projects/gnu-taler/merchant-backoffice/es/
2023-04-24 08:43:50 +02:00
..
contrib repo: integrate packages from former merchant-backoffice.git 2022-10-24 10:46:14 +02:00
src Translated using Weblate (Spanish) 2023-04-24 08:43:50 +02:00
.gitignore repo: integrate packages from former merchant-backoffice.git 2022-10-24 10:46:14 +02:00
build.mjs use translation context from web-utils, don't use match react-router since is broken 2022-12-20 17:45:24 -03:00
copyleft-header.js update copy header 2022-12-16 16:59:37 -03:00
DESIGN.md bring documentation from old repo and fix Makefile to copy all content of dist folder 2023-01-21 20:20:42 -03:00
dev.mjs remove webui from login url, ad qr for template, fix navbar size, 2023-03-10 01:25:22 -03:00
Makefile bring documentation from old repo and fix Makefile to copy all content of dist folder 2023-01-21 20:20:42 -03:00
package.json use better testing api 2023-04-21 10:44:33 -03:00
preact.config.js update copy header 2022-12-16 16:59:37 -03:00
preact.single-config.js update copy header 2022-12-16 16:59:37 -03:00
README.md bring documentation from old repo and fix Makefile to copy all content of dist folder 2023-01-21 20:20:42 -03:00
remove-link-stylesheet.sh repo: integrate packages from former merchant-backoffice.git 2022-10-24 10:46:14 +02:00
tsconfig.json module resolution = node16 2023-02-16 12:13:31 -03:00

Merchant Admin Frontend

Merchant Admin Frontend is a Single Page Application (SPA) that connects with a running Merchant Backend and lets you manage instances, orders, products and tipping.

System requirements

  • Node: v16.15.0
  • pnpm: 7.14.2
  • make

Compiling from source

Run pnpm install --frozen-lockfile --filter @gnu-taler/merchant-backoffice... to install all the nodejs dependencies.

Then the command pnpm build create the distribution in the dist folder.

By default the installation prefix will be /usr/local/share/taler/merchant-backoffice/ but it can be overridden by --prefix in the configuration process:

./configure --prefix=/another/directory

To install run make install

Running develop

To run a development server run:

./dev.mjs

This should start a watch process that will reload the server every time that a file is saved.

The application need to connect to a merchant-backend properly configured to run.

Building for deploy

To build and deploy the SPA in your local server run the install script:

make install

Runtime dependencies

  • preact: Fast 3kB alternative to React with the same modern API

  • preact-router: URL component router for Preact

  • SWR: React Hooks library for data fetching (stale-while-revalidate)

  • Yup: schema builder for value parsing and validation (to be deprecated)

  • Date-fns: library for manipulating javascript date

  • qrcode-generator: simplest qr implementation based on JIS X 0510:1999

  • @gnu-taler/taler-util: types and tooling

  • history: manage the history stack, navigate, and persist state between sessions

  • jed: gettext like library for internationalization