| // Copyright 2019 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import {LitElement, html, css} from 'lit-element'; |
| import {store, connectStore} from 'reducers/base.js'; |
| import {SHARED_STYLES} from 'shared/shared-styles.js'; |
| import 'elements/framework/mr-star/mr-project-star.js'; |
| import 'shared/typedef.js'; |
| import 'elements/chops/chops-chip/chops-chip.js'; |
| |
| import * as projects from 'reducers/projects.js'; |
| import {users} from 'reducers/users.js'; |
| import {stars} from 'reducers/stars.js'; |
| import {computeRoleByProjectName} from './helpers.js'; |
| |
| |
| /** |
| * `<mr-projects-page>` |
| * |
| * Displays list of all projects. |
| * |
| */ |
| export class MrProjectsPage extends connectStore(LitElement) { |
| /** @override */ |
| static get styles() { |
| return [ |
| SHARED_STYLES, |
| css` |
| :host { |
| box-sizing: border-box; |
| display: block; |
| padding: 1em 8px; |
| padding-left: 40px; /** 32px + 8px */ |
| margin: auto; |
| max-width: 1280px; |
| width: 100%; |
| } |
| h2 { |
| font-size: 20px; |
| letter-spacing: 0.1px; |
| font-weight: 500; |
| margin-top: 1em; |
| } |
| .project-header { |
| display: flex; |
| align-items: flex-start; |
| flex-direction: row; |
| justify-content: space-between; |
| font-size: 16px; |
| line-height: 24px; |
| margin: 0; |
| margin-bottom: 16px; |
| padding-top: 0.1em; |
| padding-bottom: 16px; |
| letter-spacing: 0.1px; |
| font-weight: 500; |
| width: 100%; |
| border-bottom: var(--chops-normal-border); |
| border-color: var(--chops-gray-400); |
| } |
| .project-title { |
| display: flex; |
| flex-direction: column; |
| } |
| h3 { |
| margin: 0; |
| padding: 0; |
| font-weight: inherit; |
| font-size: inherit; |
| transition: color var(--chops-transition-time) ease-in-out; |
| } |
| h3:hover { |
| color: var(--chops-link-color); |
| } |
| .subtitle { |
| color: var(--chops-gray-700); |
| font-size: var(--chops-main-font-size); |
| line-height: 100%; |
| font-weight: normal; |
| } |
| .project-container { |
| display: flex; |
| align-items: stretch; |
| flex-wrap: wrap; |
| width: 100%; |
| padding: 0.5em 0; |
| margin-bottom: 3em; |
| } |
| .project { |
| background: var(--chops-white); |
| width: 220px; |
| margin-right: 32px; |
| margin-bottom: 32px; |
| display: flex; |
| flex-direction: column; |
| align-items: flex-start; |
| justify-content: flex-start; |
| border-radius: 4px; |
| border: var(--chops-normal-border); |
| padding: 16px; |
| color: var(--chops-primary-font-color); |
| font-weight: normal; |
| line-height: 16px; |
| transition: all var(--chops-transition-time) ease-in-out; |
| } |
| .project:hover { |
| text-decoration: none; |
| cursor: pointer; |
| box-shadow: 0 2px 6px hsla(0,0%,0%,0.12), |
| 0 1px 3px hsla(0,0%,0%,0.24); |
| } |
| .project > p { |
| margin: 0; |
| margin-bottom: 32px; |
| flex-grow: 1; |
| } |
| .view-project-link { |
| text-transform: uppercase; |
| margin: 0; |
| font-weight: 600; |
| flex-grow: 0; |
| } |
| .view-project-link:hover { |
| text-decoration: underline; |
| } |
| `, |
| ]; |
| } |
| |
| /** @override */ |
| render() { |
| const myProjects = this.myProjects; |
| const otherProjects = this.otherProjects; |
| const noProjects = !myProjects.length && !otherProjects.length; |
| |
| if (this._isFetchingProjects && noProjects) { |
| return html`Loading...`; |
| } |
| |
| if (noProjects) { |
| return html`No projects found.`; |
| } |
| |
| if (!myProjects.length) { |
| // Skip sorting projects into different sections if the user |
| // has no projects. |
| return html` |
| <h2>All projects</h2> |
| <div class="project-container all-projects"> |
| ${otherProjects.map((project) => this._renderProject(project))} |
| </div> |
| `; |
| } |
| |
| const myProjectsTemplate = myProjects.map((project) => this._renderProject( |
| project, this._roleByProjectName[project.name])); |
| |
| return html` |
| <h2>My projects</h2> |
| <div class="project-container my-projects"> |
| ${myProjectsTemplate} |
| </div> |
| |
| <h2>Other projects</h2> |
| <div class="project-container other-projects"> |
| ${otherProjects.map((project) => this._renderProject(project))} |
| </div> |
| `; |
| } |
| |
| /** @override */ |
| static get properties() { |
| return { |
| _projects: {type: Array}, |
| _isFetchingProjects: {type: Boolean}, |
| _currentUser: {type: String}, |
| _roleByProjectName: {type: Array}, |
| }; |
| } |
| |
| /** @override */ |
| constructor() { |
| super(); |
| /** |
| * @type {Array<Project>} |
| */ |
| this._projects = []; |
| /** |
| * @type {boolean} |
| */ |
| this._isFetchingProjects = false; |
| /** |
| * @type {string} |
| */ |
| this._currentUser = undefined; |
| /** |
| * @type {Object<ProjectName, string>} |
| */ |
| this._roleByProjectName = {}; |
| } |
| |
| /** @override */ |
| connectedCallback() { |
| super.connectedCallback(); |
| store.dispatch(projects.list()); |
| } |
| |
| /** @override */ |
| updated(changedProperties) { |
| if (changedProperties.has('_currentUser') && this._currentUser) { |
| const userName = this._currentUser; |
| store.dispatch(users.gatherProjectMemberships(userName)); |
| store.dispatch(stars.listProjects(userName)); |
| } |
| } |
| |
| /** @override */ |
| stateChanged(state) { |
| this._projects = projects.all(state); |
| this._isFetchingProjects = projects.requests(state).list.requesting; |
| this._currentUser = users.currentUserName(state); |
| const allProjectMemberships = users.projectMemberships(state); |
| this._roleByProjectName = computeRoleByProjectName( |
| allProjectMemberships[this._currentUser]); |
| } |
| |
| /** |
| * @param {Project} project |
| * @param {string=} role |
| * @return {TemplateResult} |
| */ |
| _renderProject(project, role) { |
| return html` |
| <a href="/p/${project.displayName}/issues/list" class="project"> |
| <div class="project-header"> |
| <span class="project-title"> |
| <h3>${project.displayName}</h3> |
| <span class="subtitle" ?hidden=${!role} title="My role: ${role}"> |
| Role: ${role} |
| </span> |
| </span> |
| |
| <mr-project-star .name=${project.name}></mr-project-star> |
| </div> |
| <p> |
| ${project.summary} |
| </p> |
| <button class="view-project-link linkify"> |
| View project |
| </button> |
| </a> |
| `; |
| } |
| |
| /** |
| * Projects the currently logged in user is a member of. |
| * @return {Array<Project>} |
| */ |
| get myProjects() { |
| return this._projects.filter( |
| ({name}) => this._userIsMemberOfProject(name)); |
| } |
| |
| /** |
| * Projects the currently logged in user is not a member of. |
| * @return {Array<Project>} |
| */ |
| get otherProjects() { |
| return this._projects.filter( |
| ({name}) => !this._userIsMemberOfProject(name)); |
| } |
| |
| /** |
| * Helper to check if a user is a member of a project. |
| * @param {ProjectName} project Resource name of a project. |
| * @return {boolean} Whether the user a member of the given project. |
| */ |
| _userIsMemberOfProject(project) { |
| return project in this._roleByProjectName; |
| } |
| } |
| customElements.define('mr-projects-page', MrProjectsPage); |