|
|
|
|
@@ -1,5 +1,5 @@
|
|
|
|
|
<script setup>
|
|
|
|
|
import { computed, onMounted, reactive, ref, watch, nextTick } from 'vue'
|
|
|
|
|
import { computed, nextTick, onBeforeUnmount, onMounted, reactive, ref, watch } from 'vue'
|
|
|
|
|
import AuthDialog from './components/AuthDialog.vue'
|
|
|
|
|
import GoalsDashboard from './components/GoalsDashboard.vue'
|
|
|
|
|
import MiniCalendar from './components/MiniCalendar.vue'
|
|
|
|
|
@@ -45,6 +45,8 @@ const syncMessage = ref('')
|
|
|
|
|
const syncToastVisible = ref(false)
|
|
|
|
|
const selectedDate = ref(new Date())
|
|
|
|
|
const calendarViewDate = ref(new Date(selectedDate.value))
|
|
|
|
|
const windowWidth = ref(typeof window === 'undefined' ? 1920 : window.innerWidth)
|
|
|
|
|
const rightPanelOpen = ref(false)
|
|
|
|
|
const statsRangeStart = ref(toKey(new Date(new Date().setDate(new Date().getDate() - 6))))
|
|
|
|
|
const statsRangeEnd = ref(toKey(new Date()))
|
|
|
|
|
const authForm = reactive({
|
|
|
|
|
@@ -687,6 +689,50 @@ const readNextItems = computed(() => {
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const isWideFocusSidebar = computed(() => windowWidth.value >= 1620)
|
|
|
|
|
const isOverlayFocusSidebar = computed(() => windowWidth.value < 1280)
|
|
|
|
|
const showInlineFocusSidebar = computed(() => !isOverlayFocusSidebar.value)
|
|
|
|
|
const focusSidebarOuterClass = computed(() =>
|
|
|
|
|
showInlineFocusSidebar.value
|
|
|
|
|
? isWideFocusSidebar.value
|
|
|
|
|
? 'xl:w-[640px]'
|
|
|
|
|
: 'xl:w-full xl:max-w-[360px]'
|
|
|
|
|
: '',
|
|
|
|
|
)
|
|
|
|
|
const focusSidebarGridClass = computed(() =>
|
|
|
|
|
isWideFocusSidebar.value
|
|
|
|
|
? '2xl:grid-cols-[280px_minmax(0,1fr)] 2xl:items-start'
|
|
|
|
|
: 'grid-cols-1',
|
|
|
|
|
)
|
|
|
|
|
const spreadScale = computed(() => {
|
|
|
|
|
const reservedWidth = windowWidth.value >= 1280 ? 410 : 96
|
|
|
|
|
const availableWidth = Math.max(windowWidth.value - reservedWidth, 980)
|
|
|
|
|
const baseWidth = 1548
|
|
|
|
|
const nextScale = Math.min(1, availableWidth / baseWidth)
|
|
|
|
|
|
|
|
|
|
return Number(Math.max(nextScale, 0.86).toFixed(3))
|
|
|
|
|
})
|
|
|
|
|
const spreadCanvasStyle = computed(() => {
|
|
|
|
|
const scale = spreadScale.value
|
|
|
|
|
return {
|
|
|
|
|
width: `${1548 * scale}px`,
|
|
|
|
|
minWidth: `${1548 * scale}px`,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
const spreadPageFrameStyle = computed(() => {
|
|
|
|
|
const scale = spreadScale.value
|
|
|
|
|
return {
|
|
|
|
|
width: `${762 * scale}px`,
|
|
|
|
|
height: `${1118 * scale}px`,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
const spreadPageStyle = computed(() => ({
|
|
|
|
|
width: '762px',
|
|
|
|
|
maxWidth: 'none',
|
|
|
|
|
transform: `scale(${spreadScale.value})`,
|
|
|
|
|
transformOrigin: 'top left',
|
|
|
|
|
}))
|
|
|
|
|
|
|
|
|
|
watch(
|
|
|
|
|
[plannerRecords, selectedDate, calendarViewDate, statsRangeStart, statsRangeEnd],
|
|
|
|
|
() => {
|
|
|
|
|
@@ -733,6 +779,22 @@ function areTaskLabelsNumbered(record) {
|
|
|
|
|
return record.tasks.every((task, index) => task.label === createTaskLabel(index))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updateWindowWidth() {
|
|
|
|
|
windowWidth.value = window.innerWidth
|
|
|
|
|
|
|
|
|
|
if (windowWidth.value >= 1280) {
|
|
|
|
|
rightPanelOpen.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openRightPanel() {
|
|
|
|
|
rightPanelOpen.value = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function closeRightPanel() {
|
|
|
|
|
rightPanelOpen.value = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setSyncFeedback(status, message, options = {}) {
|
|
|
|
|
const {
|
|
|
|
|
visible = true,
|
|
|
|
|
@@ -1294,8 +1356,14 @@ onMounted(() => {
|
|
|
|
|
setSyncFeedback('local', '로그인 후 클라우드 저장을 사용할 수 있습니다.', {
|
|
|
|
|
visible: false,
|
|
|
|
|
})
|
|
|
|
|
updateWindowWidth()
|
|
|
|
|
window.addEventListener('resize', updateWindowWidth)
|
|
|
|
|
restoreAuthSession()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
|
window.removeEventListener('resize', updateWindowWidth)
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
@@ -1522,9 +1590,25 @@ onMounted(() => {
|
|
|
|
|
|
|
|
|
|
<section
|
|
|
|
|
v-else-if="screenMode === 'planner' && viewMode === 'focus'"
|
|
|
|
|
class="print-hidden grid gap-6 xl:h-full xl:min-h-0 xl:grid-cols-[minmax(0,1fr)_460px] 2xl:grid-cols-[minmax(0,1fr)_640px]"
|
|
|
|
|
class="print-hidden relative grid gap-6 xl:h-full xl:min-h-0"
|
|
|
|
|
:class="showInlineFocusSidebar ? 'xl:grid-cols-[minmax(0,1fr)_minmax(0,360px)] 2xl:grid-cols-[minmax(0,1fr)_640px]' : ''"
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
v-if="isOverlayFocusSidebar && rightPanelOpen"
|
|
|
|
|
class="fixed inset-0 z-30 bg-stone-900/18 backdrop-blur-[2px]"
|
|
|
|
|
@click="closeRightPanel"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<div class="scrollbar-hide print-target rounded-[28px] border border-white/60 bg-white/45 p-4 shadow-[0_18px_60px_rgba(28,25,23,0.06)] xl:h-full xl:min-h-0 xl:overflow-y-auto xl:pr-3">
|
|
|
|
|
<div v-if="isOverlayFocusSidebar" class="mb-4 flex justify-end">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
class="rounded-full border border-stone-200 bg-white px-4 py-2 text-[11px] font-bold tracking-[0.16em] text-stone-700 transition hover:border-stone-400 hover:text-ink"
|
|
|
|
|
@click="openRightPanel"
|
|
|
|
|
>
|
|
|
|
|
OPEN SIDE PANEL
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<PlannerPage
|
|
|
|
|
:date-main="selectedDateDisplay.main"
|
|
|
|
|
:date-weekday="selectedDateDisplay.weekday"
|
|
|
|
|
@@ -1547,9 +1631,29 @@ onMounted(() => {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<aside class="scrollbar-hide print-hidden rounded-[28px] border border-white/60 bg-white/50 p-3 shadow-[0_18px_60px_rgba(28,25,23,0.06)] xl:h-full xl:min-h-0 xl:overflow-y-auto">
|
|
|
|
|
<div class="grid gap-4 rounded-[22px] p-2 2xl:grid-cols-[280px_minmax(0,1fr)] 2xl:items-start">
|
|
|
|
|
<div class="grid gap-4">
|
|
|
|
|
<aside
|
|
|
|
|
v-if="showInlineFocusSidebar || rightPanelOpen"
|
|
|
|
|
class="scrollbar-hide print-hidden rounded-[28px] border border-white/60 bg-[#f7f2ea]/95 p-3 shadow-[0_18px_60px_rgba(28,25,23,0.12)]"
|
|
|
|
|
:class="[
|
|
|
|
|
focusSidebarOuterClass,
|
|
|
|
|
showInlineFocusSidebar
|
|
|
|
|
? 'xl:h-full xl:min-h-0 xl:overflow-y-auto'
|
|
|
|
|
: 'fixed inset-y-4 right-4 z-40 w-[min(360px,calc(100vw-2rem))] overflow-y-auto',
|
|
|
|
|
]"
|
|
|
|
|
>
|
|
|
|
|
<div v-if="!showInlineFocusSidebar" class="mb-3 flex items-center justify-between rounded-[18px] border border-stone-200 bg-white/90 px-4 py-3">
|
|
|
|
|
<p class="text-[11px] font-bold tracking-[0.18em] text-ink">SIDE PANEL</p>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
class="rounded-full border border-stone-200 px-3 py-1 text-[10px] font-bold tracking-[0.14em] text-stone-600 transition hover:border-stone-400 hover:text-ink"
|
|
|
|
|
@click="closeRightPanel"
|
|
|
|
|
>
|
|
|
|
|
CLOSE
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="grid gap-4 rounded-[22px] p-2" :class="focusSidebarGridClass">
|
|
|
|
|
<div class="grid gap-4" :class="isWideFocusSidebar ? '' : 'max-w-[360px]'">
|
|
|
|
|
<section class="2xl:w-[280px]">
|
|
|
|
|
<MiniCalendar
|
|
|
|
|
:month-label="monthLabel"
|
|
|
|
|
@@ -1632,7 +1736,7 @@ onMounted(() => {
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="grid gap-4">
|
|
|
|
|
<div class="grid gap-4" :class="isWideFocusSidebar ? '' : 'max-w-[360px]'">
|
|
|
|
|
<section class="rounded-[24px] border border-stone-200 bg-white/82 p-5 shadow-[0_12px_36px_rgba(28,25,23,0.05)]">
|
|
|
|
|
<article>
|
|
|
|
|
<p class="text-[11px] font-bold tracking-[0.22em] text-ink">STATS</p>
|
|
|
|
|
@@ -1665,9 +1769,9 @@ onMounted(() => {
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<section class="rounded-[24px] border border-stone-200 bg-white/82 p-5 shadow-[0_12px_36px_rgba(28,25,23,0.05)] 2xl:col-span-2">
|
|
|
|
|
<section class="rounded-[24px] border border-stone-200 bg-white/82 p-5 shadow-[0_12px_36px_rgba(28,25,23,0.05)]" :class="isWideFocusSidebar ? '2xl:col-span-2' : ''">
|
|
|
|
|
<p class="mb-4 text-[11px] font-bold tracking-[0.22em] text-ink">READ NEXT</p>
|
|
|
|
|
<div class="grid gap-3 sm:grid-cols-3 2xl:grid-cols-3">
|
|
|
|
|
<div class="grid gap-3" :class="isWideFocusSidebar ? 'sm:grid-cols-3 2xl:grid-cols-3' : 'grid-cols-1'">
|
|
|
|
|
<p
|
|
|
|
|
v-for="item in readNextItems"
|
|
|
|
|
:key="item"
|
|
|
|
|
@@ -1678,9 +1782,9 @@ onMounted(() => {
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section class="rounded-[24px] border border-stone-200 bg-white/82 p-5 shadow-[0_12px_36px_rgba(28,25,23,0.05)] 2xl:col-span-2">
|
|
|
|
|
<section class="rounded-[24px] border border-stone-200 bg-white/82 p-5 shadow-[0_12px_36px_rgba(28,25,23,0.05)]" :class="isWideFocusSidebar ? '2xl:col-span-2' : ''">
|
|
|
|
|
<p class="mb-4 text-[11px] font-bold tracking-[0.22em] text-ink">PREV SNAPSHOT</p>
|
|
|
|
|
<div class="grid gap-3 sm:grid-cols-3 2xl:grid-cols-3">
|
|
|
|
|
<div class="grid gap-3" :class="isWideFocusSidebar ? 'sm:grid-cols-3 2xl:grid-cols-3' : 'grid-cols-1'">
|
|
|
|
|
<p
|
|
|
|
|
v-for="item in prevSnapshotItems"
|
|
|
|
|
:key="item"
|
|
|
|
|
@@ -1698,9 +1802,10 @@ onMounted(() => {
|
|
|
|
|
v-else-if="screenMode === 'planner'"
|
|
|
|
|
class="scrollbar-hide print-hidden overflow-x-auto rounded-[28px] border border-white/60 bg-white/45 p-4 shadow-[0_18px_60px_rgba(28,25,23,0.06)] sm:p-6 xl:h-full xl:overflow-y-auto"
|
|
|
|
|
>
|
|
|
|
|
<div class="flex min-w-[1260px] gap-6">
|
|
|
|
|
<div class="print-target">
|
|
|
|
|
<div class="mx-auto flex gap-6" :style="spreadCanvasStyle">
|
|
|
|
|
<div class="print-target overflow-hidden" :style="spreadPageFrameStyle">
|
|
|
|
|
<PlannerPage
|
|
|
|
|
:style="spreadPageStyle"
|
|
|
|
|
:date-main="selectedDateDisplay.main"
|
|
|
|
|
:date-weekday="selectedDateDisplay.weekday"
|
|
|
|
|
:date-weekday-tone="selectedDateDisplay.weekdayTone"
|
|
|
|
|
@@ -1721,8 +1826,9 @@ onMounted(() => {
|
|
|
|
|
@update:timetable="updateTimetable(planner, $event)"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="print-hidden">
|
|
|
|
|
<div class="print-hidden overflow-hidden" :style="spreadPageFrameStyle">
|
|
|
|
|
<PlannerPage
|
|
|
|
|
:style="spreadPageStyle"
|
|
|
|
|
:date-main="secondaryDateDisplay.main"
|
|
|
|
|
:date-weekday="secondaryDateDisplay.weekday"
|
|
|
|
|
:date-weekday-tone="secondaryDateDisplay.weekdayTone"
|
|
|
|
|
|