platform/packages/ui/src/components/calendar/WeekCalendar.svelte
Anna No 075e1678df
UI: Refactor (#2127)
Signed-off-by: Anna No <anna.no@xored.com>
2022-06-22 20:27:10 +07:00

106 lines
3.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 type="ts">
import { createEventDispatcher } from 'svelte'
import ui from '../../plugin'
import Label from '../Label.svelte'
import { addZero, areDatesEqual, day as getDay, getMonday, getWeekDayName } from './internal/DateUtils'
export let mondayStart = true
export let cellHeight: string | undefined = undefined
export let selectedDate: Date = new Date()
export let currentDate: Date = selectedDate
export let displayedDaysCount = 7
export let displayedHours = 24
export let startFromWeekStart = true
// export let startHour = 0
const dispatch = createEventDispatcher()
const todayDate = new Date()
$: weekMonday = startFromWeekStart
? getMonday(currentDate, mondayStart)
: new Date(new Date(currentDate).setHours(0, 0, 0, 0))
</script>
<table class="antiTable">
<thead class="scroller-thead">
<tr class="scroller-thead__tr">
<th><Label label={ui.string.HoursLabel} /></th>
{#each [...Array(displayedDaysCount).keys()] as dayOfWeek}
{@const day = getDay(weekMonday, dayOfWeek)}
<th>
<div
class="antiTable-cells cursor-pointer uppercase flex-col-center"
class:today={areDatesEqual(todayDate, day)}
on:click={() => {
dispatch('select', day)
}}
>
<div class="flex-center">{getWeekDayName(day, 'short')}</div>
<div class="flex-center">{day.getDate()}</div>
</div>
</th>
{/each}
</tr>
</thead>
<tbody>
{#if $$slots.cell}
<slot name="header" date={getDay(weekMonday, 0)} days={displayedDaysCount} />
{/if}
{#each [...Array(displayedHours).keys()] as hourOfDay}
<tr class="antiTable-body__row">
<td style="width: 50px;" class="calendar-td">
<div class="antiTable-cells__firstCell">
{addZero(hourOfDay)}:00
</div>
</td>
{#each [...Array(displayedDaysCount).keys()] as dayIndex}
<td class="antiTable-body__border calendar-td cell" style={`height: ${cellHeight};`}>
{#if $$slots.cell}
<slot name="cell" date={getDay(weekMonday, dayIndex, hourOfDay * 60)} />
{/if}
</td>
{/each}
</tr>
{/each}
</tbody>
</table>
<style lang="scss">
table {
table-layout: fixed;
}
table tr th:nth-child(1) {
width: 5rem;
}
.today {
color: var(--caption-color);
}
.calendar-td {
padding: 0;
margin: 0;
}
.cell {
overflow: hidden;
width: calc(calc(100% - 50px) / 7);
}
.cell:hover:not(.wrongMonth) {
background-color: var(--toggle-bg-hover);
color: var(--primary-button-color);
}
</style>