2022-05-19 10:37:14 +00:00
|
|
|
<!--
|
|
|
|
// 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">
|
2022-09-21 08:08:25 +00:00
|
|
|
import { AttachedData } from '@hcengineering/core'
|
|
|
|
import { DatePopup } from '@hcengineering/ui'
|
|
|
|
import { getClient } from '@hcengineering/presentation'
|
2023-03-24 10:23:44 +00:00
|
|
|
import { Issue, IssueDraft } from '@hcengineering/tracker'
|
2022-05-23 07:24:15 +00:00
|
|
|
import { createEventDispatcher } from 'svelte'
|
2022-05-19 10:37:14 +00:00
|
|
|
|
2023-03-24 10:23:44 +00:00
|
|
|
export let value: Issue | AttachedData<Issue> | Issue[] | IssueDraft
|
2022-05-19 10:37:14 +00:00
|
|
|
export let mondayStart = true
|
|
|
|
export let withTime = false
|
|
|
|
|
|
|
|
const client = getClient()
|
2022-05-23 07:24:15 +00:00
|
|
|
const dispatch = createEventDispatcher()
|
2022-05-19 10:37:14 +00:00
|
|
|
|
2022-05-23 07:24:15 +00:00
|
|
|
async function onUpdate ({ detail }: CustomEvent<Date | null | undefined>) {
|
|
|
|
const newDueDate = detail && detail?.getTime()
|
|
|
|
|
2022-10-28 13:45:47 +00:00
|
|
|
const vv = Array.isArray(value) ? value : [value]
|
|
|
|
for (const docValue of vv) {
|
2023-03-24 10:23:44 +00:00
|
|
|
if ('_class' in docValue && newDueDate !== undefined && newDueDate !== docValue.dueDate) {
|
2022-10-28 13:45:47 +00:00
|
|
|
await client.update(docValue, { dueDate: newDueDate })
|
|
|
|
}
|
2022-05-19 10:37:14 +00:00
|
|
|
}
|
2022-05-23 07:24:15 +00:00
|
|
|
|
|
|
|
dispatch('update', newDueDate)
|
2022-05-19 10:37:14 +00:00
|
|
|
}
|
|
|
|
|
2022-10-28 13:45:47 +00:00
|
|
|
$: currentDate = Array.isArray(value) || value.dueDate === null ? null : new Date(value.dueDate)
|
2022-05-19 10:37:14 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<DatePopup {currentDate} {mondayStart} {withTime} on:close on:update={onUpdate} />
|