src/main/kotlin/de/uapcore/lightpit/viewmodel/Projects.kt

Tue, 30 Jul 2024 18:53:39 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 30 Jul 2024 18:53:39 +0200
changeset 307
23fe9f174d2d
parent 292
703591e739f4
child 311
bf67e0ff7131
permissions
-rw-r--r--

add filter for assignee - fixes #403

/*
 * Copyright 2021 Mike Becker. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package de.uapcore.lightpit.viewmodel

import de.uapcore.lightpit.OptionalPathInfo
import de.uapcore.lightpit.entities.*

class ProjectInfo(
    val project: Project,
    /**
     * List of versions, sorted by status descending.
     */
    var versions: List<Version>,
    var components: List<Component>,
    var issueSummary: IssueSummary
) {
    val latestVersion = versions.firstOrNull { it.status.isReleased }
    val nextVersion = versions.findLast { !it.status.isReleased }
}

class ProjectsView(
    val projects: List<ProjectInfo>
) : View()

class ProjectDetails(
    val pathInfos: PathInfos,
    val issues: List<Issue>,
    val filter: IssueFilter,
    val users: List<User>
) : View() {
    val projectInfo = pathInfos.projectInfo
    val issueSummary = IssueSummary()
    val versionInfo: VersionInfo?
    val componentDetails: Component?

    init {
        issues.forEach(issueSummary::add)
        versionInfo = when (val vinfo = pathInfos.versionInfo){
            is OptionalPathInfo.Specific -> VersionInfo(vinfo.elem, issues)
            else -> null
        }
        componentDetails = when (val cinfo = pathInfos.componentInfo){
            is OptionalPathInfo.Specific -> cinfo.elem
            else -> null
        }
    }
}

class ProjectEditView(
    val project: Project,
    val users: List<User>
) : EditView()

mercurial