| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /*
- Copyright (C) 2017 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- import React from 'react'
- import styled from 'styled-components'
- import { observer } from 'mobx-react'
- import MainTemplate from '@src/components/modules/TemplateModule/MainTemplate'
- import Navigation from '@src/components/modules/NavigationModule/Navigation'
- import FilterList from '@src/components/ui/Lists/FilterList'
- import PageHeader from '@src/components/smart/PageHeader'
- import ProjectListItem from '@src/components/modules/ProjectModule/ProjectListItem'
- import type { Project, RoleAssignment } from '@src/@types/Project'
- import projectStore from '@src/stores/ProjectStore'
- import userStore from '@src/stores/UserStore'
- import configLoader from '@src/utils/Config'
- const Wrapper = styled.div<any>``
- type State = {
- modalIsOpen: boolean,
- }
- @observer
- class ProjectsPage extends React.Component<{ history: any }, State> {
- state = {
- modalIsOpen: false,
- }
- pollTimeout: number = 0
- stopPolling: boolean = false
- componentDidMount() {
- document.title = 'Projects'
- this.stopPolling = false
- this.pollData(true)
- }
- componentWillUnmount() {
- clearTimeout(this.pollTimeout)
- this.stopPolling = true
- }
- getMembers(projectId: string): number {
- return projectStore.roleAssignments
- .filter(a => a.scope.project?.id === projectId)
- .reduce((uniqueRoles, role) => {
- if (!uniqueRoles.find(p => p.user.id === role.user.id)) {
- uniqueRoles.push(role)
- }
- return uniqueRoles
- }, [] as RoleAssignment[])
- .length
- }
- isCurrentProject(projectId: string): boolean {
- const project = userStore.loggedUser && userStore.loggedUser.project
- ? userStore.loggedUser.project : null
- return project ? project.id === projectId : false
- }
- handleModalOpen() {
- this.setState({ modalIsOpen: true })
- }
- handleModalClose() {
- this.setState({ modalIsOpen: false }, () => {
- this.pollData()
- })
- }
- handleReloadButtonClick() {
- projectStore.getProjects({ showLoading: true })
- projectStore.getRoleAssignments()
- }
- async handleSwitchProjectClick(projectId: string) {
- await userStore.switchProject(projectId)
- projectStore.getProjects()
- }
- async pollData(showLoading?: boolean) {
- if (this.state.modalIsOpen || this.stopPolling) {
- return
- }
- await Promise.all([
- projectStore.getProjects({ showLoading, skipLog: true }),
- projectStore.getRoleAssignments({ skipLog: true }),
- ])
- this.pollTimeout = window.setTimeout(() => { this.pollData() }, configLoader.config.requestPollTimeout)
- }
- itemFilterFunction(item: Project, _?: string | null, filterText?: string): boolean {
- const usabledFilterText = (filterText && filterText.toLowerCase()) || ''
- return (
- item.name.toLowerCase().indexOf(usabledFilterText) > -1
- || (item.description ? item.description.toLowerCase().indexOf(usabledFilterText) > -1 : false)
- )
- }
- render() {
- return (
- <Wrapper>
- <MainTemplate
- navigationComponent={<Navigation currentPage="projects" />}
- listNoMargin
- listComponent={(
- <FilterList
- filterItems={[{ label: 'All', value: 'all' }]}
- selectionLabel="user"
- loading={projectStore.loading}
- items={projectStore.projects}
- onItemClick={(user: Project) => { this.props.history.push(`/projects/${user.id}`) }}
- onReloadButtonClick={() => { this.handleReloadButtonClick() }}
- itemFilterFunction={(...args) => this.itemFilterFunction(...args)}
- renderItemComponent={component => (
- <ProjectListItem
- {...component}
- getMembers={projectId => this.getMembers(projectId)}
- isCurrentProject={projectId => this.isCurrentProject(projectId)}
- onSwitchProjectClick={projectId => this.handleSwitchProjectClick(projectId)}
- />
- )}
- />
- )}
- headerComponent={(
- <PageHeader
- title="Projects"
- onModalOpen={() => { this.handleModalOpen() }}
- onModalClose={() => { this.handleModalClose() }}
- />
- )}
- />
- </Wrapper>
- )
- }
- }
- export default ProjectsPage
|