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

Sat, 05 Jun 2021 09:08:29 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 05 Jun 2021 09:08:29 +0200
changeset 201
73c632c1c7e5
parent 184
e8eecee6aadf
child 268
ca5501d851fa
permissions
-rw-r--r--

fixes latest version not including all releases

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.*
universe@184 29
universe@184 30 class ProjectInfo(
universe@184 31 val project: Project,
universe@184 32 /**
universe@184 33 * List of versions, sorted by status descending.
universe@184 34 */
universe@184 35 var versions: List<Version>,
universe@184 36 var components: List<Component>,
universe@184 37 var issueSummary: IssueSummary
universe@184 38 ) {
universe@201 39 val latestVersion = versions.firstOrNull { it.status.isReleased }
universe@184 40 val nextVersion = versions.findLast { !it.status.isReleased }
universe@184 41 }
universe@184 42
universe@184 43 class ProjectsView(
universe@184 44 val projects: List<ProjectInfo>
universe@184 45 ) : View()
universe@184 46
universe@184 47 class ProjectDetails(
universe@184 48 val projectInfo: ProjectInfo,
universe@184 49 val issues: List<Issue>,
universe@184 50 val version: Version? = null,
universe@184 51 val component: Component? = null
universe@184 52 ) : View() {
universe@184 53 val issueSummary = IssueSummary()
universe@184 54 val versionInfo: VersionInfo?
universe@184 55
universe@184 56 init {
universe@184 57 issues.forEach(issueSummary::add)
universe@184 58 versionInfo = version?.let { VersionInfo(it, issues) }
universe@184 59 }
universe@184 60 }
universe@184 61
universe@184 62 class ProjectEditView(
universe@184 63 val project: Project,
universe@184 64 val users: List<User>
universe@184 65 ) : EditView()

mercurial