Files
gerrit/polygerrit-ui/app/elements/shared/gr-autocomplete/gr-autocomplete.html
Wyatt Allen bd47217b1b Adds "Watched Projects"/Notifications section to PolyGerrit settings
Gives the PolyGerrit settings view a new section for Notifications which
replicates the "Watched Projects" screen in the GWT settings UI. Users
can add, remove and update which projects they receive email
notifications for.

Introduces the gr-watched-projects-editor element, which is given the
user's watched projects data and is able to display and modify the info.
In the same way that the GWT UI includes an autocomplete input for adding
new projects to watch, this implementation uses gr-autocomplete.

The gr-watched-projects-editor is added to the gr-settings-view, which
manages the loading, saving and deleting of the user's watched-project
data.

Other changes:

- Tidies the layout of gr-settings-view to permit larger tables such as
  gr-watched-projects-editor without disrupting the look.

- Tweaks functionality of gr-autocomplete use in the watched projects
  editor. Specifically, it does not take on a value until the user
  "commits" to a suggestion, and it does not clear the input when
  committed unless a flag is enabled. Also now supports placeholder
  text.

- Fixes some gr-settings-view unit-test failures in Safari.

- Fixes the markup of some table headers and footers.

- Lots of new unit tests.

Bug: Issue 3911
Change-Id: I4667c29aa3addcd9b6676bc8763d8e3deb327539
2016-06-13 20:40:07 -07:00

70 lines
2.0 KiB
HTML

<!--
Copyright (C) 2016 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<link rel="import" href="../../../bower_components/polymer/polymer.html">
<link rel="import" href="../../../bower_components/iron-input/iron-input.html">
<link rel="import" href="../../shared/gr-cursor-manager/gr-cursor-manager.html">
<dom-module id="gr-autocomplete">
<template>
<style>
input {
font-size: 1em;
}
#suggestions {
background-color: #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
position: absolute;
z-index: 10;
}
ul {
list-style: none;
}
li {
cursor: pointer;
padding: .5em .75em;
}
li.selected {
background-color: #eee;
}
</style>
<input
id="input"
is="iron-input"
disabled$="[[disabled]]"
bind-value="{{text}}"
placeholder="[[placeholder]]"
on-keydown="_handleInputKeydown"
on-focus="_updateSuggestions" />
<div
id="suggestions"
hidden$="[[_computeSuggestionsHidden(_suggestions)]]">
<ul>
<template is="dom-repeat" items="[[_suggestions]]">
<li
data-index$="[[index]]"
on-tap="_handleSuggestionTap">[[item.name]]</li>
</template>
</ul>
</div>
<gr-cursor-manager
id="cursor"
index="{{_index}}"
cursor-target-class="selected"
stops="[[_getSuggestionElems(_suggestions)]]"></gr-cursor-manager>
</template>
<script src="gr-autocomplete.js"></script>
</dom-module>