This commit is contained in:
Vanessa 2022-12-21 18:24:43 +08:00
parent 0603ed3656
commit 6ec2513225
2 changed files with 15 additions and 7 deletions

View file

@ -195,4 +195,11 @@
z-index: 1;
}
}
&__date {
text-align: center;
line-height: 20px;
color: var(--b3-theme-on-surface);
background: var(--b3-theme-background);
}
}

View file

@ -65,6 +65,7 @@ const renderCompare = (element: HTMLElement) => {
}
fetchPost("/api/repo/openRepoSnapshotDoc", {id: element.getAttribute("data-id")}, (response) => {
leftElement.classList.remove("fn__none");
const textElement = (leftElement.firstElementChild.nextElementSibling as HTMLTextAreaElement)
if (response.data.isLargeDoc) {
textElement.value = response.data.content;
@ -135,15 +136,15 @@ export const showDiff = (ids: string) => {
</ul>
</div>
<div class="fn__flex-1 fn__flex">
<div class="fn__flex-1 fn__flex-column">
<div>${dayjs(response.data.left.created).format("YYYY-MM-DD HH:mm")}</div>
<textarea style="height: 100%;width: 100%;" class="history__text fn__none"></textarea>
<div style="min-height: 100%;"></div>
<div class="fn__none fn__flex-1 fn__flex-column">
<div class="history__date">${dayjs(response.data.left.created).format("YYYY-MM-DD HH:mm")}</div>
<textarea class="history__text fn__none fn__flex-1"></textarea>
<div class="fn__flex-1"></div>
</div>
<div class="fn__none fn__flex-1 fn__flex-column" style="border-left: 1px solid var(--b3-border-color);">
<div>${dayjs(response.data.right.created).format("YYYY-MM-DD HH:mm")}</div>
<textarea style="height: 100%;width: 100%;" class="history__text fn__none"></textarea>
<div style="min-height: 100%;"></div>
<div class="history__date">${dayjs(response.data.right.created).format("YYYY-MM-DD HH:mm")}</div>
<textarea class="history__text fn__none fn__flex-1"></textarea>
<div class="fn__flex-1"></div>
</div>
</div>
</div>`,