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

Mon, 30 Oct 2023 10:06:22 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 30 Oct 2023 10:06:22 +0100
changeset 291
bcf05cccac6f
parent 231
dcb1d5a7ea3a
permissions
-rw-r--r--

replace Enum.values() with Enum.entries

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@184 28 import de.uapcore.lightpit.entities.Issue
universe@184 29 import de.uapcore.lightpit.entities.Version
universe@184 30 import de.uapcore.lightpit.types.VersionStatus
universe@184 31
universe@184 32 class VersionInfo(
universe@184 33 val version: Version,
universe@184 34 val issues: List<Issue>
universe@184 35 ) {
universe@184 36 val reportedTotal = IssueSummary()
universe@184 37 val resolvedTotal = IssueSummary()
universe@184 38 val reported: List<Issue>
universe@184 39 val resolved: List<Issue>
universe@184 40
universe@184 41 init {
universe@184 42 val reported = mutableListOf<Issue>()
universe@184 43 val resolved = mutableListOf<Issue>()
universe@184 44 for (issue in issues) {
universe@231 45 if (issue.affected == version) {
universe@184 46 reportedTotal.add(issue)
universe@184 47 reported.add(issue)
universe@184 48 }
universe@231 49 if (issue.resolved == version) {
universe@184 50 resolvedTotal.add(issue)
universe@184 51 resolved.add(issue)
universe@184 52 }
universe@184 53 }
universe@184 54 this.reported = reported
universe@184 55 this.resolved = resolved
universe@184 56 }
universe@184 57 }
universe@184 58
universe@184 59 class VersionSummary(
universe@184 60 val version: Version
universe@184 61 ) {
universe@184 62 val reportedTotal = IssueSummary()
universe@184 63 val resolvedTotal = IssueSummary()
universe@184 64 }
universe@184 65
universe@184 66 class VersionsView(
universe@184 67 val projectInfo: ProjectInfo,
universe@184 68 val versionInfos: List<VersionSummary>
universe@184 69 ) : View()
universe@184 70
universe@184 71 class VersionEditView(
universe@184 72 val projectInfo: ProjectInfo,
universe@184 73 val version: Version
universe@184 74 ) : EditView() {
universe@291 75 val versionStatus = VersionStatus.entries
universe@184 76 }

mercurial