Files
gerrit/polygerrit-ui/app/samples/repo-command.html
Tao Zhou ab57ce3744 Add more jsdoc for closure checks
1. add `@extends` for all polymer elements
2. add `@override` for all lifecycle methods
3. fix a wrong type in gr-auth

Change-Id: Id9dea76b169197084d2e0b5f267459cdc4aaec3e
2020-01-12 16:06:58 +01:00

46 lines
1.1 KiB
HTML

<dom-module id="sample-repo-command">
<script>
Gerrit.install(plugin => {
// High-level API
plugin.project()
.createCommand('Bork', (repoName, projectConfig) => {
if (repoName !== 'All-Projects') {
return false;
}
})
.onTap(() => {
alert('Bork, bork!');
});
// Low-level API
plugin.registerCustomComponent(
'repo-command', 'repo-command-low');
});
</script>
</dom-module>
<!-- Low-level custom component for repo command. -->
<dom-module id="repo-command-low">
<template>
<gr-repo-command
title="Low-level bork"
on-command-tap="_handleCommandTap">
</gr-repo-command>
</template>
<script>
Polymer({
is: 'repo-command-low',
/** @override */
attached() {
console.log(this.repoName);
console.log(this.config);
this.hidden = this.repoName !== 'All-Projects';
},
_handleCommandTap() {
alert('(softly) bork, bork.');
},
});
</script>
</dom-module>