This repository contains the editor package of Manuscripts app to be used in a react application.
Manuscripts is highly modular: it is composed out of a series of NPM published modules following a few different themes.
- @manuscripts/manuscripts-json-schema (source code at gitlab.com/mpapp-public/manuscripts-json-schema): a JSON schema describing the application's data model used in this and other manuscripts.io based applications, plus browser, Node.js and Couchbase Sync Gateway executable validator functions.
- @manuscripts/manuscripts-json-schema-utils (source at gitlab.com/mpapp-public/manuscripts-json-schema-utils/): a set of utility functions for working with Manuscripts JSON schema formatted data.
- @manuscripts/manuscripts-sync (source at gitlab.com/mpapp-public/manuscripts-sync/): this repository contains a build script, a Dockerfile, and a sync function definition and associated tests for a Couchbase Sync Gateway instance configured to act as a realtime synchronisation backend, from the frontend application interacted with using RxDB / PouchDB. The Sync Gateway used is currently a mildly forked version tracking the stable versions of Sync Gateway.
- @manuscripts/sync-client (source at gitlab.com/mpapp-public/manuscripts-sync-client): client-side business logic for merging Manuscripts data model revisions: implementations of conflict detection and merging strategies relevant for different model types in the schema.
- @manuscripts/manuscript-editor (source at gitlab.com/mpapp-public/manuscripts-manuscript-editor): the article body editor as a React component – this is where the great majority of this frontend application's logic is actually found from.
- @manuscripts/title-editor (source at gitlab.com/mpapp-public/manuscripts-title-editor: a React editor component for headings, titles and other title-like short stretches of text. In practice, the title editor component is mostly a ProseMirror schema.
- @manuscripts/abstract-editor (source at gitlab.com/mpapp-public/manuscripts-abstract-editor): a React editor component for editing and viewing abstracts. Like the title editor component, the abstract editor is mostly a wrapper for a ProseMirror schema.
ProseMirror specifics
- @manuscripts/prosemirror-recreate-steps (source at gitlab.com/mpapp-public/prosemirror-recreate-steps): an extension to the ProseMirror word processing library that the Manuscripts editor is based on, used to find and merge changes between two documents without access to the precise history of steps.
- @manuscripts/manuscript-transform (source at gitlab.com/mpapp-public/manuscripts-manuscript-transform: the definition of the ProseMirror schema used by
@manuscripts/manuscript-editor, plus modules for converting to and from the Manuscripts data model and exporting to HTML or JATS XML.
- @manuscripts/sachs (source at gitlab.com/mpapp-public/sachs): command-line utility for Manuscripts format conversion, used by the Pressroom web service, in particular at the time of writing, JATS XML conversions. A thin wrapper for the actual conversion code in
@manuscripts/manuscript-transform. - Pressroom: a web service for importing and exporting Manuscripts formatted data, wrapping
sachsand other open source document transformation tools and libraries into a REST web service. Source at gitlab.com/mpapp-public/pressroom, documentation at pressroom.manuscripts.io/v1/docs?html.
- @manuscripts/style-guide (source at gitlab.com/mpapp-public/manuscripts-style-guide): a set of reusable UI controls and theme definitions used by this application and other Manuscripts based applications.
- @manuscripts/resizer (source at gitlab.com/mpapp-public/manuscripts-resizer): a React component providing a resize handle for panels, based on an AtlasKit component.
- @manuscripts/assets (source at gitlab.com/mpapp-private/manuscripts-gfx-assets/): shared graphical assets used across Manuscripts projects in bitmap image, SVG and PDF vector form as well as React components built into the NPM package, based on Sketch originals.
- @manuscripts/examples (source at gitlab.com/mpapp-public/manuscripts-examples): example Manuscripts documents for reference and test purposes.
- @manuscripts/eslint-config (source at gitlab.com/mpapp-public/manuscripts-eslint-config): as the name suggests, the ESLint configuration used by other Manuscripts TypeScript repositories.
- @manuscripts/publish (source at gitlab.com/mpapp-public/manuscripts-publish): a command-line utility to assist publishing other Manuscripts NPM packages to an NPM registry (publishes a package if the current version hasn't already been published).
Run yarn install @manuscripts/article-editor in your application.
The variables listed in .env.example must all be defined as environment variables in your project.
Run yarn build to build the app to the dist folder.
Deploy the files to S3 with scripts/deploy.sh.
cp .env.example .env. The variables listed in.env.examplehave appropriate default values for running in a mode where the backend API server is running locally (this is optional, and you can complete local development tasks in the absence of the backend services). See steps below under "Running the backend API in Docker" for steps to launch the API server locally.- Run
docker volume create --name=yarn-cacheto create a yarn cache for the backend services that you will launch in the next step. This step is only needed once. docker-compose up jupyterto start the services needed for development.yarn startto start the app in development mode (usingwebpack-dev-server).- To avoid signing up an account, open
http://localhost:8080/developerto create a dummy user profile. Now you're good to go.
- Add any environment variables needed for the API server in
docker/server/.env. docker login registry.gitlab.comto log in to GitLab’s Container Registry using your GitLab username and password (or a deploy token for read-only access to the registry images).- Run
docker-compose pullto pull the latest server Docker images. - [first run] Initialize the backend services:
scripts/api/initialize.sh. If running on Windows or MacOS, it may be necessary to increase the RAM allocated to Docker. (This can be done through Docker Desktop > Preferences > Resources > Advanced > Memory.) - [subsequent runs] Start the backend services:
docker-compose up api - Run
docker-compose up jupyterto start the additional services. - Open chrome://flags/#cookies-without-same-site-must-be-secure and set to Disabled.
- Run
yarn startto start the frontend. - Open Chrome, and enter
http://localhost:8080/signupto create a user account. Confirmation emails generally won't be sent from a locally-running API, but you can ignore that message (see APP_SKIP_ACCOUNT_VERIFICATION indocker/server/defaults.env) - To stop the service, run
docker-compose down. Add an optional-vflag to delete the data volumes.
- Make sure
kubectlis using the appropriate context:- Run
kubectl config current-contextto show the current context. - Run
kubectl config get-contextsto list the available contexts. - Run
kubectl config set-context docker-desktopto set the context.
- Run
- To build the client image, run
docker-compose build client - To start the services, run
docker stack deploy --compose-file <(docker-compose config) manuscripts - To stop the services, run
docker stack rm manuscripts
Run yarn test to run the unit tests in Jest.
- Run
yarn run cypress:opento launch the Cypress runner. - From the Cypress runner, select an individual test to run or select
Run all specs
See the manuscripts-frontend wiki for more information.
- If needed, initialize the backend services:
scripts/api/initialize.sh - Start the other backend services in Docker:
docker-compose up sync-gateway jupyter - Start the API:
scripts/api/start-local.sh
- Clone
@manuscripts/style-guideto a folder alongside this one, runyarn installto install its dependencies, runyarn linkto make it available as a local dependency, then runyarn devin that folder to start building it. - In this folder, run
yarn link @manuscripts/style-guideto use the linked module as a local dependency.
Run yarn stats to generate a stats.json file, then yarn analyze to open webpack-bundle-analyzer's visualization of the webpack bundle.