anvil/striker-ui
2023-11-17 16:09:55 -05:00
..
.husky chore: commit husky changes to .gitignore file 2021-06-09 10:33:46 -04:00
components fix(striker-ui): handle unchecked/empty file location 2023-11-17 16:09:55 -05:00
hooks fix(striker-ui): add fetch hook 2023-09-21 03:41:15 -04:00
lib fix(striker-ui): add servers to subnodes, revise node summary layout 2023-10-03 02:56:36 -04:00
out build(striker-ui): rebuild 2023-10-04 19:06:23 -04:00
pages fix(striker-ui): clean up old file manager 2023-11-17 16:09:54 -05:00
public
styles
theme fix(striker-ui): add font source code pro to theme 2022-03-18 22:50:41 -04:00
types fix(striker-ui): clean up old file manager 2023-11-17 16:09:54 -05:00
.env fix(striker-ui): migrate /cgi-bin->/api 2023-07-03 04:46:06 -04:00
.eslintignore build(striker-ui): ignore out/ when linting 2021-08-25 11:43:53 -04:00
.eslintrc.json chore(striker-ui): allow skip props in object destructure 2022-11-28 14:37:19 -05:00
.gitignore chore: rebuild web UI 2022-03-18 22:50:41 -04:00
.lintstagedrc.json chore(striker-ui): revise scripts for lint and quick-fix 2022-03-18 22:50:41 -04:00
.prettierrc.json
commitlint.config.js
lsxdist build(striker-ui): revise Makefile.am to include new pages and src files 2022-11-28 14:37:22 -05:00
Makefile.am build(striker-ui): remove unused, add new pages to Makefile 2023-07-03 04:46:06 -04:00
next-env.d.ts chore(striker-ui): regenerate next-env.d.ts 2022-02-24 00:04:04 -05:00
next.config.js fix(front-end): remove trailing slash setting 2021-08-10 17:07:10 -04:00
package-lock.json build(deps): bump @babel/traverse from 7.17.3 to 7.23.2 in /striker-ui 2023-10-20 15:16:19 +02:00
package.json build(deps): bump postcss and next in /striker-ui 2023-10-08 06:21:10 +00:00
README.md docs(striker-ui): add minimal README to web UI 2023-10-10 22:32:53 -04:00
tsconfig.json chore(striker-ui): enable 'incremental' in tsconfig 2022-02-23 17:42:21 -05:00

Anvil system striker web interface

Notes

  • All NPM commands must be executed at the root folder of this UI module, where the package.json is located.
  • For those unfamiliar with git and/or the web technologies involved, it's highly recommended to clone a fresh repo as a test workspace.

Development prerequisites

  • NodeJS LTS is recommended, version >= 14 is required.
  • NPM latest is recommended, version >= 6 is required.

"required" means this project was started with roughly the specified version; earlier version may work.

For Fedora, NPM is included as a dependency of NodeJS; running sudo dnf install nodejs should be enough.

Installation

Run npm install to download all production and development dependencies. The NPM packages will be collectively placed into a folder named node_modules in the root of this project.

Live development

Run npm run dev to start a local development server that listens on port 3000. Any source code changes after the dev server has started will trigger a quick partial rebuild, the changes will be reflected shortly in the browser.

However, it's highly recommended to perform a clear-cache reload, which is usually CTRL + F5, because changes may not always reflect correctly.

Production build

Run rm -rf out && npm run build to remove the existing build output and generate a new one. It's highly recommended to remove the old build before building a new one because the some of the generated files won't replace the old files, thus old files will remain when the whole output directory gets committed/copied.

The build is expected to be placed into the /var/www/html/ directory on a striker.

At the time of writing, the build is committed to the repository to keep the whole project's building process offline. NPM requires network to fetch dependencies before building. Ideally, the build shouldn't be included, but we cannot remove the it from repo until there's a reliable way to separate the download and build tasks.

Logs

At the time of writing, no logging library has been added due to other priorities. The recommended debug logging is to temporarily add any appropriate console functions to suspicious areas, i.e. before and after the location where an exception was thrown.

Test with striker API

Most of the API requires authentication to access. At the time of writing, the striker API can only produce cookies with its domain (including port) after successfully authenticating a user. Therefore, the striker UI must be accessed from the same location to allow the browser to read the session cookies.

There are 2 tested methods to achive same-domain:

  1. Make changes to the source and produce a production build. Copy the new build to the striker and access the UI by connecting to the striker.
  2. Install a proxy/load balance server, forward <domain>/ (root) to the server hosting the web UI, and forward <domain>/api/ to the API. When accessing the UI, the browser only accesses the proxy and will consider the two locations to be under the same domain. thus it will see the cookies produced by authentication. A recommended server with easy-to-understand configuration is nginx; it's available via dnf.