Gerrit FE Dev helper is a Chrome extension that will focus on helping frontend developers on Gerrit development.
As mentioned in readme from polygerrit-ui, we already support to start your local host for developing / debugging / testing, but it has quite a few restrictions:
- No auth support
- Restart needed to switch hosts
- Not easy to test plugins
To solve these pain points, Tao Zhou created this Chrome extension. It proxies all assets requests or any requests to a local HTTP server, and has the ability to inject any plugins exposed by the local HTTP server.
See in release notes and Features below.
The easiest is to install from the Chrome web store here: https://chrome.google.com/webstore/detail/gerrit-fe-dev-helper/jimgomcnodkialnpmienbomamgomglkd.
After you have installed and enabled the extension, you should see something similar to demo.png.
To build from source:
npm install
npm run build
Then you should have gerrit_fe_dev_helper.zip
that you can test with.
- For Gerrit core development, start the local Gerrit dev server to host app code locally
yarn start
Or if you are developing a plugin, serve your plugin via a local HTTP server via any means.
Example:
npx http-server -c-1 --cors
- Go to any Gerrit sites, enable the extension by clicking the icon
- You should see a red notice show up in the bottom right of the page:
Gerrit dev helper is enabled
, and now your Gerrit assets should be loaded from your local HTTP server - Change files locally and refresh the page, you should have the changes immediately
The extension comes with a set of default rules, but you can change the rules by clicking the extension icon again.
The extension supports different type of rules:
- block: block a certain request
- redirect: redirect a url to another url
- injectHtmlCode: inject a piece of html code to the page
- addReqHeader: to add arbitrary header when you send a request
- addRespHeader: to add arbitrary header when you receive a request
- rRespHeader: to remove arbitrary header on any response
For existing plugins just redirect
from the where the plugin is normally loaded from to
http://localhost:8081/plugins/my-plugin.js
and put your local plugin file into the
polygerrit-ui/app/plugins
folder.
For new plugins you also have to use a redirect
rule, because the Chrome extension is not allowed
to inject JavaScript from arbitrary source by Content Security Policy. The easiest option is to
pick the most simple or irrelevant plugin that your Gerrit server has, and redirect from that.
- Execute
npm run build
. - Go to chrome://extensions/.
- Turn on
Developer Mode
. - Click
Load Unpacked
. - Choose the
dist
directory.
As a Google developer you will have to add a key
to the manifest.json
in the dist/
directory
as documented here: http://go/extension-identification#i%E2%80%99m-developing-a-chrome-extension-on-my-computer
This section is for members of Google's developer team only.
- Make sure that you are a member of the group g/gerrit-fe-dev-helper.
- Go to https://chrome.google.com/webstore/devconsole/d2ee4af0-3e6f-489c-97c9-fa14d84e2ffa/jimgomcnodkialnpmienbomamgomglkd/edit/package
- Make sure that you have updated the version in
manifest.json
andpackage.json
. - Produce a zip bundle of the extension by executing
npm run build
. - Upload the bundle using the
Upload dogfood version
button. - Submit the dogfood draft for review.
- Wait ~24h for the dogfood draft to be published.
- Upload the bundle using the
Upload new package
button. - Submit the main draft for review.
- Wait ~24h for the main draft to be published.
Please don't hesitate to contact [email protected] for support on this extension.