mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-23 16:56:07 +00:00
85 lines
2.4 KiB
TypeScript
85 lines
2.4 KiB
TypeScript
import type { WorkSlot, ToDo } from '@hcengineering/time'
|
|
import type { DefSeparators } from '@hcengineering/ui'
|
|
import type { Client, Ref } from '@hcengineering/core'
|
|
import { DAY, HOUR, MINUTE } from '@hcengineering/ui'
|
|
import { translate } from '@hcengineering/platform'
|
|
import timePlugin from './plugin'
|
|
import time from '@hcengineering/time'
|
|
|
|
export * from './types'
|
|
|
|
export function getNearest (events: WorkSlot[]): WorkSlot | undefined {
|
|
const now = Date.now()
|
|
events.sort((a, b) => a.date - b.date)
|
|
return (
|
|
events.find((event) => event.date <= now && event.dueDate >= now) ??
|
|
events.find((event) => event.date >= now) ??
|
|
events[events.length - 1]
|
|
)
|
|
}
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export const timeSeparators: DefSeparators = [
|
|
{ minSize: 18, size: 18, maxSize: 22.5, float: 'navigator' },
|
|
{ minSize: 15, size: 35, maxSize: 45, float: 'planner' },
|
|
null
|
|
]
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export const teamSeparators: DefSeparators = [{ minSize: 12.5, size: 17.5, maxSize: 22.5, float: 'navigator' }, null]
|
|
|
|
export async function ToDoTitleProvider (client: Client, ref: Ref<ToDo>, doc?: ToDo): Promise<string> {
|
|
const object = doc ?? (await client.findOne(time.class.ToDo, { _id: ref }))
|
|
|
|
if (object === undefined) return ''
|
|
|
|
return object.title
|
|
}
|
|
|
|
export function calculateEventsDuration (events: WorkSlot[]): number {
|
|
const points = events.flatMap((event) => [
|
|
{ time: event.date, type: 'start' },
|
|
{ time: event.dueDate, type: 'end' }
|
|
])
|
|
|
|
points.sort((a, b) => a.time - b.time)
|
|
|
|
let activeEvents = 0
|
|
let duration = 0
|
|
let lastTime = 0
|
|
|
|
points.forEach((point) => {
|
|
if (activeEvents > 0) {
|
|
duration += point.time - lastTime
|
|
}
|
|
activeEvents += point.type === 'start' ? 1 : -1
|
|
lastTime = point.time
|
|
})
|
|
|
|
return duration
|
|
}
|
|
|
|
export async function formatEventsDuration (duration: number, language: string): Promise<string> {
|
|
let text = ''
|
|
const days = Math.floor(duration / DAY)
|
|
if (days > 0) {
|
|
text += await translate(timePlugin.string.Days, { days }, language)
|
|
}
|
|
const hours = Math.floor((duration % DAY) / HOUR)
|
|
if (hours > 0) {
|
|
text += ' '
|
|
text += await translate(timePlugin.string.Hours, { hours }, language)
|
|
}
|
|
const minutes = Math.floor((duration % HOUR) / MINUTE)
|
|
if (minutes > 0) {
|
|
text += ' '
|
|
text += await translate(timePlugin.string.Minutes, { minutes }, language)
|
|
}
|
|
text = text.trim()
|
|
return text
|
|
}
|