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

Mon, 30 Oct 2023 14:44:36 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 30 Oct 2023 14:44:36 +0100
changeset 292
703591e739f4
parent 268
ca5501d851fa
permissions
-rw-r--r--

add possibility to show issues w/o version or component - fixes #335

universe@184 1 /*
universe@184 2 * Copyright 2021 Mike Becker. All rights reserved.
universe@184 3 *
universe@184 4 * Redistribution and use in source and binary forms, with or without
universe@184 5 * modification, are permitted provided that the following conditions are met:
universe@184 6 *
universe@184 7 * 1. Redistributions of source code must retain the above copyright
universe@184 8 * notice, this list of conditions and the following disclaimer.
universe@184 9 *
universe@184 10 * 2. Redistributions in binary form must reproduce the above copyright
universe@184 11 * notice, this list of conditions and the following disclaimer in the
universe@184 12 * documentation and/or other materials provided with the distribution.
universe@184 13 *
universe@184 14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@184 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@184 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@184 17 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@184 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@184 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@184 20 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@184 21 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@184 22 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@184 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@184 24 */
universe@184 25
universe@184 26 package de.uapcore.lightpit.viewmodel
universe@184 27
universe@292 28 import de.uapcore.lightpit.OptionalPathInfo
universe@184 29 import de.uapcore.lightpit.entities.*
universe@184 30
universe@184 31 class ProjectInfo(
universe@184 32 val project: Project,
universe@184 33 /**
universe@184 34 * List of versions, sorted by status descending.
universe@184 35 */
universe@184 36 var versions: List<Version>,
universe@184 37 var components: List<Component>,
universe@184 38 var issueSummary: IssueSummary
universe@184 39 ) {
universe@201 40 val latestVersion = versions.firstOrNull { it.status.isReleased }
universe@184 41 val nextVersion = versions.findLast { !it.status.isReleased }
universe@184 42 }
universe@184 43
universe@184 44 class ProjectsView(
universe@184 45 val projects: List<ProjectInfo>
universe@184 46 ) : View()
universe@184 47
universe@184 48 class ProjectDetails(
universe@292 49 val pathInfos: PathInfos,
universe@184 50 val issues: List<Issue>,
universe@268 51 val filter: IssueFilter,
universe@184 52 ) : View() {
universe@292 53 val projectInfo = pathInfos.projectInfo
universe@184 54 val issueSummary = IssueSummary()
universe@184 55 val versionInfo: VersionInfo?
universe@292 56 val componentDetails: Component?
universe@184 57
universe@184 58 init {
universe@184 59 issues.forEach(issueSummary::add)
universe@292 60 versionInfo = when (val vinfo = pathInfos.versionInfo){
universe@292 61 is OptionalPathInfo.Specific -> VersionInfo(vinfo.elem, issues)
universe@292 62 else -> null
universe@292 63 }
universe@292 64 componentDetails = when (val cinfo = pathInfos.componentInfo){
universe@292 65 is OptionalPathInfo.Specific -> cinfo.elem
universe@292 66 else -> null
universe@292 67 }
universe@184 68 }
universe@184 69 }
universe@184 70
universe@184 71 class ProjectEditView(
universe@184 72 val project: Project,
universe@184 73 val users: List<User>
universe@184 74 ) : EditView()

mercurial