mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 03:20:57 +00:00
79 lines
2.2 KiB
Svelte
79 lines
2.2 KiB
Svelte
|
<!--
|
||
|
//
|
||
|
// Copyright © 2022 Hardcore Engineering Inc.
|
||
|
//
|
||
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License. You may
|
||
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
//
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
//
|
||
|
-->
|
||
|
<script lang="ts">
|
||
|
import { WithLookup } from '@hcengineering/core'
|
||
|
import { Document, DocumentVersion } from '@hcengineering/document'
|
||
|
import { EastSideColor, FernColor, Label, SeaBuckthornColor } from '@hcengineering/ui'
|
||
|
import document from '../plugin'
|
||
|
|
||
|
export let value: WithLookup<Document>
|
||
|
|
||
|
let lastVersion: DocumentVersion | undefined
|
||
|
|
||
|
$: if (value.$lookup?.versions !== undefined) {
|
||
|
let vv = -1
|
||
|
let dv: DocumentVersion | undefined
|
||
|
for (const v of value.$lookup.versions as DocumentVersion[]) {
|
||
|
if (v.version > vv) {
|
||
|
dv = v
|
||
|
vv = v.version
|
||
|
}
|
||
|
}
|
||
|
lastVersion = dv
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
{#if value}
|
||
|
<div class="status-container">
|
||
|
{#if value.versions === 0}
|
||
|
<div class="status p-1" style:background-color={EastSideColor}>
|
||
|
<Label label={document.string.Draft} />
|
||
|
</div>
|
||
|
{/if}
|
||
|
{#if value.editSequence !== lastVersion?.sequenceNumber}
|
||
|
<div class="status p-1" style:background-color={SeaBuckthornColor}>
|
||
|
<Label label={document.string.PendingReview} />
|
||
|
</div>
|
||
|
{/if}
|
||
|
{#if value.editSequence === lastVersion?.sequenceNumber}
|
||
|
<div class="status p-1" style:background-color={FernColor}>
|
||
|
<Label label={document.string.Latest} />
|
||
|
</div>
|
||
|
{/if}
|
||
|
</div>
|
||
|
{/if}
|
||
|
|
||
|
<style lang="scss">
|
||
|
.status-container {
|
||
|
display: flex;
|
||
|
.status {
|
||
|
border-radius: 8px;
|
||
|
margin: 0.1rem;
|
||
|
|
||
|
font-weight: 500;
|
||
|
font-size: 10px;
|
||
|
|
||
|
text-transform: uppercase;
|
||
|
color: #ffffff;
|
||
|
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
}
|
||
|
</style>
|