chore: fix timestamps

This commit is contained in:
Aman Harwara
2023-10-23 19:37:45 +05:30
parent a850d3c989
commit 29f2f366ee
2 changed files with 8 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ export const ConflictListItem = ({
note: SNNote
}) => {
const application = useApplication()
const { words, characters, paragraphs, dateLastModified, dateCreated, format } = useNoteAttributes(application, note)
const { words, characters, paragraphs, serverUpdatedAt, dateCreated, format } = useNoteAttributes(application, note)
return (
<button
@@ -49,7 +49,7 @@ export const ConflictListItem = ({
<Icon type="restore" size="medium" />
</div>
</StyledTooltip>
<VisuallyHidden>Last modified</VisuallyHidden> {dateLastModified}
<VisuallyHidden>Last modified</VisuallyHidden> {serverUpdatedAt}
</div>
<div className="mb-1.5 flex items-center gap-2">
<StyledTooltip gutter={8} label="Created" className="!z-modal">

View File

@@ -10,7 +10,8 @@ export const useNoteAttributes = (application: WebApplicationInterface, note: SN
const readTime = useMemo(() => (typeof words === 'number' ? calculateReadTime(words) : 'N/A'), [words])
const dateLastModified = useMemo(() => formatDateForContextMenu(note.userModifiedDate), [note.userModifiedDate])
const userModifiedDate = useMemo(() => formatDateForContextMenu(note.userModifiedDate), [note.userModifiedDate])
const serverUpdatedAt = useMemo(() => formatDateForContextMenu(note.serverUpdatedAt), [note.serverUpdatedAt])
const dateCreated = useMemo(() => formatDateForContextMenu(note.created_at), [note.created_at])
@@ -22,7 +23,8 @@ export const useNoteAttributes = (application: WebApplicationInterface, note: SN
characters,
paragraphs,
readTime,
dateLastModified,
userModifiedDate,
serverUpdatedAt,
dateCreated,
format,
}
@@ -33,7 +35,7 @@ export const NoteAttributes: FunctionComponent<{
note: SNNote
className?: string
}> = ({ application, note, className }) => {
const { words, characters, paragraphs, readTime, dateLastModified, dateCreated, format } = useNoteAttributes(
const { words, characters, paragraphs, readTime, userModifiedDate, dateCreated, format } = useNoteAttributes(
application,
note,
)
@@ -51,7 +53,7 @@ export const NoteAttributes: FunctionComponent<{
</>
) : null}
<div className="mb-1">
<span className="font-semibold">Last modified:</span> {dateLastModified}
<span className="font-semibold">Last modified:</span> {userModifiedDate}
</div>
<div className="mb-1">
<span className="font-semibold">Created:</span> {dateCreated}