...
Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Child pages (Children Display) |
---|
UI Development
Prerequisite software to install
Java (Corretto JDK 11+ recommended)
Maven 3
Docker
Yarn v1
Set up
...
your GitHub fork and a local repository
...
Create a GitHub user account if you don't already have one.
- Contributors should fork the repository and submit GitHub Pull Requests for code inclusion.
Set up your local git environment according to Sage’s GitHub Security guidance
Fork the Sage-Bionetworks SynapseWebClient repository into your own GitHub account: https://help.github.com/articles/fork-a-repo
...
Clone your fork of SynapseWebClient project
...
to your
...
local machine and enter the project root directory
Code Block language bash git clone https://github.com/[YOUR
...
GITHUB NAME]/SynapseWebClient.git
...
cd SynapseWebClient
...
If you didn't set up the global pre-commit hook in step #2, set up a local pre-commit hook to detect secrets (do this for all repos that you clone in the future!):
Code Block git secrets --install
...
git secrets --register-aws
Set up upstream with
...
Code Block git remote add upstream https://github.com/Sage-Bionetworks/SynapseWebClient
Fetch and merge changes from the Sage Bionetworks repo, which was named
...
git fetch upstream
...
This should be the content of this file:
...
language | xml |
---|---|
title | settings.xml |
...
upstream:
Code Block git fetch upstream
Configure or update your Maven configuration
settings.xml
The file needs to placed in
$HOME/.m2/settings.xml
(e.g.jane/.m2/settings.xml
)This should be the content of this file:
settings.xml
Code Block language xml <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
...
xmlns:xsi="http://
...
www.
...
w3.org/
...
2001/
...
XMLSchema-instance"
...
...
...
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
...
...
http://maven.apache.org/xsd/settings-1.0.0.xsd"> <localRepository/> <interactiveMode/>
...
...
<usePluginRegistry/>
...
<offline/
...
> <pluginGroups/>
...
<servers/
...
> <mirrors/> <proxies/>
...
...
<profiles> <profile>
...
<id>dev-environment</id> <activation>
...
...
...
<activeByDefault>true</activeByDefault>
...
...
...
...
</activation>
...
<properties> <org.sagebionetworks.
...
portal.
...
endpoint>http://
...
127.
...
0.
...
0.
...
1:8888/Portal.html</org.sagebionetworks.
...
portal.endpoint>
...
...
Setup with Eclipse
...
- File → Import → Maven → Existing Maven Projects
- Next, in Root Directory enter the local path to your repository clone
- Next, Finish
...
- Right-click on portal (project name) → Build Path → Configure Build Path...
- Remove the "Exclude" filter from the source tab on the src/main/resources and src/test/resources directories.
...
- From the resulting dialog make sure the "Use Google Web Toolkit" check box is selected.
- Also make sure you are using the GWT SDK from your local maven repository (.m2/repository/com/google/gwt)
...
- Right-Click on the project from the package explorer.
- Select Google→GWT Compile...
- Under the "Entry Point Modules" you should see "PortalDebug - org.sagebionetworks.web", if not, then add it with the add button.
- Remove the "Portal - org.sagebionetworks.web" entry.
- The first time you run this you will be asked to select the output directory where GWT will compile the code. You want this to match the Maven WAR output directory, so use "target/portal-<VERSION>-SNAPSHOT"
- If you get compilation errors from the JavaScript validator (i.e. NullPointerException), navigate to the project's properties → JavaScript → Include Path → Source, and exclude all files from the source. If an OutOfMemoryError was thrown while compiling, you can click the "Advanced" tab towards the bottom of the Google → GWT Compile window and add "-Xms512M -Xmx1524M" to the VM arguments to increase heap space.
...
Set the following arguments:
Code Block |
---|
${workspace_loc:/portal/node/yarn/dist/bin/yarn.js}
sass
--no-source-map
--style=compressed
--unicode
--stop-on-error
--update
--load-path=node_modules
src/main/webapp/sass:target/portal-develop-SNAPSHOT/generated |
...
- Open the project properties and navigate to Builders
- Create a new Ant Builder
- Set the Buildfile to ${workspace_loc:/portal/copy_eclipse_deps.xml}
- Set the Base Directory to ${workspace_loc:/portal}
- Go to the Targets tab. For "Auto Build", click "Set Targets" and select copy
...
- Right-Click on the project in the package explorer
- Select: Run As → GWT Development Mode with Jetty, and select Portal.html
- Double-click on the link provided in the Development Mode window to view the portal in your browser.
...
- Right-Click on the project from the package explorer.
- Select: Run As → JUnit Test
Setup with Intellij
...
- If downloading Java for the first time then download Java 8 as well.
...
- It is simply a shortcut a execute the same command executed by the
libsass-maven-plugin
in the rootpom.xml
if using Maven to run GWT. - The alternative is to run this command manually in the command line, whenever the CSS gets messed up.
sass --no-source-map --load-path=node_modules --style=compressed --unicode --stop-on-error --update "./src/main/webapp/sass":"./target/portal-develop-SNAPSHOT"
- This is caused by the GWT runner in IntelliJ sometimes clearing out the
/target
directory when recompiling - Even setting up SASS command in the "before launch" does ensure the CSS is compiled automatically
- The CSS will be compiled immediately before the GWT server runs. The GWT server then clears out the
/target
folder containing the compiled CSS - The only benefit to the set up is that a tab for SASS is created next to the GWT Server's tab, which you can then manually run after the GWT server has started up.
- This is very annoying and any improvements to this workflow would be greatly appreciated.
- The CSS will be compiled immediately before the GWT server runs. The GWT server then clears out the
- This is caused by the GWT runner in IntelliJ sometimes clearing out the
...
- Run 'mvn clean install'
- Run 'mvn gwt:run'
- Not recommended because it currently does not detect changes to the
.ui.xml
files, which forces you to kill, redomvn clean install
, and restart the server. - Running in the IDE will detect
.ui.xml
changes
- Not recommended because it currently does not detect changes to the
...
<org.sagebionetworks.repositoryservice.endpoint>https://repo-prod.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint> <!-- insert properties described below here --> <!-- <org.sagebionetworks.repositoryservice.endpoint>https://repo-staging.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint> --> <!-- Uncomment the property below to limit GWT permutations and speed up build time --> <!-- <gwt.module.suffix>Debug</gwt.module.suffix> --> </properties> </profile> </profiles> <activeProfiles/> </settings>
Verify you can build the project and run the unit tests:
Code Block mvn clean install
Development
You may use an IDE of your choice. Instructions for setting up IntelliJ IDEA and Eclipse can be found below.
To run the app in development mode, run yarn install
then yarn dev
. This will launch three processes:
The GWT Codeserver, which watches for source changes
A file watcher that monitors changes to static assets, and copies them to the deployed web application directory when they change
An Apache Tomcat Docker container that will host the web application
As you make changes to the source code and static assets, changes will be picked up in the app when you refresh the page.
Running the accounts site to enable sign-in
SynapseWebClient delegates authentication and account management to a separate web application. In order to sign in to a local instance of SynapseWebClient, you must also start a local instance of the account management application. Set up the synapse-web-monorepo project and run the following command.
Code Block |
---|
pnpm nx run SageAccountWeb:preview --port=3000 --host |
If your portal instance is configured to use to a different backend stack, you will need to configure SageAccountWeb to also use the same stack.
We have an open ticket to improve this process: SWC-7230
Expand | ||
---|---|---|
| ||
Instead of running |
JavaScript dependency development
If you have made changes to a JavaScript dependency (e.g. synapse-react-client), you can see those changes in your local development environment by “linking” the projects. As an example, we will link the synapse-react-client
project.
In the synapse-react-client directory, run
Code Block yarn link
In the SynapseWebClient directory, run
Code Block yarn link synapse-react-client
This will create a symlink on your machine so the node_modules/synapse-react-client directory points to your local synapse-react-client directory.
Make desired changes in the synapse-react-client project
Rebuild the JavaScript artifacts for synapse-react-client (
pnpm nx run synapse-react-client:build
)If you’re running
yarn dev
, the changed JavaScript file should automatically be picked up. Refresh your browser window to see the changes (you will likely need to open your browser dev tools → Network → Disable Cache, and leave the browser devtools open)
When you want to unlink synapse-react-client, in the SynapseWebClient directory you can run yarn unlink synapse-react-client
and then yarn install --force
.
Known issues:
Running
yarn install
in SynapseWebClient after linkingsynapse-react-client
breaks thepnpm
installation in the synapse-web-monorepo project. To fix this, runpnpm install --force
in the synapse-web-monorepo project.
IDE Setup Instructions
This section contains instructions for setting up various IDEs to develop SynapseWebClient.
Expand | ||
---|---|---|
| ||
Eclipse Workspace Settings verification: Set file encoding to
Troubleshooting
|
...
|
...
|
...
Verify the web app directory is correct. Right-click on the project in the package explorer and select Properties:
If this still doesn't work, or your dev mode is broken for another reason, there are some further steps you can take |
...
. |
...
|
...
Technologies used
There are several technologies that we are currently utilizing in the portal. The following is a list of primers for each:
- Java!
- Google Web Toolkit
- For dependency injection, an example of Inversion of Control (IoC), we are using a combination of GIN and Guice.
- Guice - is the base IoC technology but it is only fully functional in Server-side.
- Gin - provides basic IoC for GWT client-side code.
- Guice Servlet - This is a sub-project of Guice that allows dependency inject into Servelets.
- Http REST calls are currently made using Spring's RestTemplate. http://blog.springsource.com/2009/03/27/rest-in-spring-3-resttemplate/
- To create API REST stub-services we are using a combination of two technologies:
- Jersey - provides a quick and easy method for transforming simple POJO's into RESTful web services using annotations. http://jersey.java.net/nonav/documentation/latest/user-guide.html
- Grizzly - The GrizzlyWebContainerFactory makes it simple to start a local web container. http://blog.msbbc.co.uk/2008/11/java-using-jersey-and-grizzly-to-create.html
- Mockito testing framework - mock dependent classes/interfaces to isolate test. Verify expected interactions (including async calls).
- Bootstrap UI framework (including a number of extras widgets), wrapped for GWT.
- Markdown-it - for markdown processing . Extended the library by adding a number of plugins, available on npm. The Node.js plugin that's used to orchestrate the processing is called markdown-it-synapse
- AWS js sdk - direct browser upload/download from s3-like storage.
- jquery, moment js, font-awesome, mathjax, plot.ly, twitter, nodeca/pica (browser image resize), SparkMD5 (browser side md5 calculation), nchart and jsplumb (Dave's charting libraries for provenance), Google (analytics, search, closure-library, single sign on).
- frontend-maven-plugin to install node and yarn at build-time.
Cross-browser testing
We have a shared account to use BrowserStack to test the website for cross browser compatibility issues.
Alternatively, for testing IE on Mac I use VirtualBox with an image provided by Microsoft from modern.IE. For this to work, in your Windows VM, you will need to map an ip to outer in order to access your local machine (note, Windows UAC requires you to do this as an admin).
How to limit GWT build permutations
To speed up build time, add the following property to your local maven settings.xml file:
<gwt.module.suffix>Debug</gwt.module.suffix>
How to point to the local stack
...
Build and launch a local backend stack. From an up-to-date clone of Synapse-Repository-Services on your local box:
...
Build the local stack by running 'mvn clean install -Dorg.sagebionetworks.database.drop.schema=true'.
...
- cd integration-test
- mvn cargo:run
Verify the services are running correctly by visiting http://localhost:8080/services-repository-develop-SNAPSHOT/repo/v1/version you should see something like this:
Code Block |
---|
{"version":"develop-SNAPSHOT"} |
...
Expand | ||
---|---|---|
| ||
|
Technologies used
There are several technologies that we are currently utilizing in the portal. The following is a list of primers for each:
React and the Synapse React Client
Further reading: How to create and render a React component in SynapseWebClient
For dependency injection, an example of Inversion of Control (IoC), we are using a combination of GIN and Guice.
Guice - is the base IoC technology but it is only fully functional in Server-side.
Gin - provides basic IoC for GWT client-side code.
Guice Servlet - This is a sub-project of Guice that allows dependency inject into servlets.
HTTP REST calls are currently made using Spring's RestTemplate. http://blog.springsource.com/2009/03/27/rest-in-spring-3-resttemplate/
Mockito testing framework - mock dependent classes/interfaces to isolate test. Verify expected interactions (including async calls).
Bootstrap 3 UI framework (including a number of extras widgets), wrapped for GWT (deprecated).
Markdown-it - for markdown processing . Extended the library by adding a number of plugins, available on npm. The Node.js plugin that's used to orchestrate the processing is called markdown-it-synapse. The source code for many of these plugins is in the synapse-web-monorepo project.
AWS js sdk - direct browser upload/download from s3-like storage.
jquery, moment js, font-awesome, mathjax, plot.ly, twitter, nodeca/pica (browser image resize), SparkMD5 (browser side md5 calculation), nchart and jsplumb (Dave's charting libraries for provenance), Google (analytics, search, closure-library, single sign on).
frontend-maven-plugin to install Node and Yarn at build-time, which provides numerous JavaScript dependencies via NPM.
End-to-end testing
Instructions on running end-to-end tests are included in this README.
How to point to a local instance of the Synapse backend
Follow the instructions on the Platform Bootstrap to set up a local backend stack.
Build and launch a local backend stack. From an up-to-date clone of Synapse-Repository-Services on your local box:
Build the local stack by running
mvn clean install -Dorg.sagebionetworks.database.drop.schema=true
.Now launch it:
Code Block cd integration-test mvn cargo:run
Verify the services are running correctly by visiting
http://localhost:8080/services-repository-develop-SNAPSHOT
...
Note that emails will not be sent when pointing to a local repo, the SynapseEmailService will instead write files to the devdata.sagebase.org s3 bucket in format <to_email_address>.json
Restart the Portal app to load these properties from settings.xml.
How to point to a remote stack
...
/repo/v1/version
. You should see something like this:Code Block {"version":"develop-SNAPSHOT"}
In the SWC project root pom.xml, change the synapse.version tag to
develop-SNAPSHOT
, so that Maven utilizes artifacts that were built by running on your local stack.Update the repository endpoint property in your maven settings.xml file
...
To point to staging set:
...
:
Code Block <org.sagebionetworks.repositoryservice.
...
endpoint>http://
...
localhost:8080/services-repository-develop-SNAPSHOT/repo/
...
v1</org.sagebionetworks.repositoryservice.
...
To point to production set:
<org.sagebionetworks.repositoryservice.endpoint>https://repo-prod.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint>
Restart the Portal app to load this property from settings.xml.
Documenting complicated UI in the code
To get the big picture of widget relationships, sometimes it is helpful to have a picture. We are testing the use of tools like http://asciiflow.com/ to help in these situations.
Compile Report
To generate a compile report, set enableClosureCompiler to false in the root pom.xml
A note on IDEs and building
We are currently (Feb 2021) in a situation where the folder served in a local build can be different depending on the IDE and toolchain the individual developer has configured.
The primary issue is that serving through the GWT plugin in Eclipse results in serving the contents of src/main/webapp
, while serving the app through mvn gwt:run
results in serving target/portal-develop-SNAPSHOT
. Recent changes to the build include copying critical resources directly to target/portal-develop-SNAPSHOT
. This is a problem because Eclipse users won't see these resources in their local build.
We would also like to improve the developer experience in IntelliJ IDEA.
...
endpoint>
Restart the Portal app to load these properties from settings.xml.
Emails will not be sent when pointing to a local repo, the SynapseEmailService will instead write files to the devdata.sagebase.org s3 bucket in format <to_email_address>.json
How to point to a remote stack
Set the repository endpoint parameters in your maven settings.xml file.
To point to the development stack set:
Code Block |
---|
<org.sagebionetworks.repositoryservice.endpoint>https://repo-dev.dev.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint> |
To point to staging set:
Code Block |
---|
<org.sagebionetworks.repositoryservice.endpoint>https://repo-staging.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint> |
To point to production set:
Code Block |
---|
<org.sagebionetworks.repositoryservice.endpoint>https://repo-prod.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint> |
Restart the Portal app to load this property from settings.xml.
Documenting complicated UI in the code
To get the big picture of widget relationships, sometimes it is helpful to have a picture. We are testing the use of tools like https://mermaid.js.org/ to help in these situations.
Compile Report
To generate a compile report, set enableClosureCompiler to false in the root pom.xml