gerrit/polygerrit-ui/app/elements/gr-account-dropdown.html
Andrew Bonventre b07c0d2d6d Add an account dropdown menu
So that the user can see which account they're using, switch
accounts, and logout.

Feature: Issue 3693

Change-Id: I08ff42653f78c4a2c496d1a329d3eb26318ca32d
2015-12-02 16:44:42 -05:00

99 lines
2.4 KiB
HTML

<!--
Copyright (C) 2015 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-dropdown/iron-dropdown.html">
<dom-module id="gr-account-dropdown">
<style>
:host {
display: inline-block;
}
.dropdown-trigger {
color: #00e;
cursor: pointer;
}
.dropdown-content {
background-color: #fff;
box-shadow: 0 1px 5px rgba(0, 0, 0, .3);
}
button {
background: none;
border: none;
font: inherit;
padding: .3em 0;
}
ul {
list-style: none;
}
ul .accountName {
font-weight: bold;
}
li .accountInfo,
li a {
display: block;
padding: .85em 1em;
}
li a:link,
li a:visited {
color: #00e;
text-decoration: none;
}
li a:hover {
background-color: #6B82D6;
color: #fff;
}
</style>
<template>
<button class="dropdown-trigger" id="trigger"
on-tap="_showDropdownTapHandler">[[account.name]]</button>
<iron-dropdown id="dropdown"
vertical-align="top"
vertical-offset="25"
horizontal-align="right">
<div class="dropdown-content">
<ul>
<li>
<div class="accountInfo">
<div class="accountName">[[account.name]]</div>
<div>[[account.email]]</div>
</div>
</li>
<li><a href="/switch-account">Switch account</a></li>
<li><a href="/logout">Logout</a></li>
</ul>
</div>
</iron-dropdown>
</template>
<script>
(function() {
'use strict';
Polymer({
is: 'gr-account-dropdown',
properties: {
account: Object,
},
_showDropdownTapHandler: function(e) {
this.$.dropdown.open();
},
});
})();
</script>
</dom-module>