From 0bc6b4495ae63b652877a8145d0acca9213fa348 Mon Sep 17 00:00:00 2001 From: crupest Date: Wed, 4 Nov 2020 12:01:50 +0800 Subject: feat: Enhance design. --- .../app/views/timeline-common/TimelinePageTemplateUI.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx') diff --git a/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx b/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx index 35c1a65d..036577b1 100644 --- a/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx +++ b/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx @@ -47,13 +47,10 @@ export default function TimelinePageTemplateUI( const { t } = useTranslation(); - const bottomSpaceRef = React.useRef(null); + const [bottomSpaceHeight, setBottomSpaceHeight] = React.useState(0); const onPostEditHeightChange = React.useCallback((height: number): void => { - const { current: bottomSpaceDiv } = bottomSpaceRef; - if (bottomSpaceDiv != null) { - bottomSpaceDiv.style.height = `${height}px`; - } + setBottomSpaceHeight(height); if (height === 0) { const alertHost = getAlertHost(); if (alertHost != null) { @@ -177,6 +174,9 @@ export default function TimelinePageTemplateUI( timelineBody = ( ( timelineBody = ( <> {timelineBody} -
+