From 4e81833af5ab66f747221241b6170542bbee89ea Mon Sep 17 00:00:00 2001 From: talksik Date: Wed, 18 May 2022 18:37:11 -0500 Subject: [PATCH] hiding history for now --- .../protected/terminal/line/LineDetails.tsx | 201 +++++++++--------- 1 file changed, 105 insertions(+), 96 deletions(-) diff --git a/packages/desktop/src/tree/protected/terminal/line/LineDetails.tsx b/packages/desktop/src/tree/protected/terminal/line/LineDetails.tsx index 7e953f1..3e0d374 100644 --- a/packages/desktop/src/tree/protected/terminal/line/LineDetails.tsx +++ b/packages/desktop/src/tree/protected/terminal/line/LineDetails.tsx @@ -149,103 +149,10 @@ export default function LineDetails() { {/* main canvas */}
{/* line timeline */} -
- load more + {/* */} - yesterday - -
- - {selectedLine.otherUserObjects.map((otherUser) => ( - - ))} - - - {selectedLine.otherUserObjects.map((otherUser) => ( - - {`${otherUser.givenName}, `} - - ))} - - {`${ - Math.floor(Math.random() * 10) + 1 - }:${Math.floor(Math.random() * 100) + 10}pm |`} - - {`${ - Math.floor(Math.random() * 60) + 1 - } seconds`} -
- - today - -
- - {selectedLine.otherUserObjects.map((otherUser) => ( - - ))} - - - {selectedLine.otherUserObjects.map((otherUser) => ( - - {`${otherUser.givenName}, `} - - ))} - - {`${ - Math.floor(Math.random() * 10) + 1 - }:${Math.floor(Math.random() * 100) + 10}pm |`} - - {`${ - Math.floor(Math.random() * 60) + 1 - } seconds`} -
- - - - right now - - - {/* live broadcasters */} -
- {selectedLine.otherUserObjects.map((otherUser) => ( -
- - - {otherUser.name} - - -
- ))} -
-
+ {/* live line */} +
{/* canvas action buttons */}
@@ -287,3 +194,105 @@ export default function LineDetails() {
); } + +// function LineHistory() { +// return ( +//
+// load more + +// yesterday + +//
+// +// {selectedLine.otherUserObjects.map((otherUser) => ( +// +// ))} +// + +// {selectedLine.otherUserObjects.map((otherUser) => ( +// +// {`${otherUser.givenName}, `} +// +// ))} + +// {`${Math.floor(Math.random() * 10) + 1}:${ +// Math.floor(Math.random() * 100) + 10 +// }pm |`} + +// {`${ +// Math.floor(Math.random() * 60) + 1 +// } seconds`} +//
+ +// today + +//
+// +// {selectedLine.otherUserObjects.map((otherUser) => ( +// +// ))} +// + +// {selectedLine.otherUserObjects.map((otherUser) => ( +// +// {`${otherUser.givenName}, `} +// +// ))} + +// {`${Math.floor(Math.random() * 10) + 1}:${ +// Math.floor(Math.random() * 100) + 10 +// }pm |`} + +// {`${ +// Math.floor(Math.random() * 60) + 1 +// } seconds`} +//
+ +// +// +// right now +// + +// {/* live broadcasters */} +//
+// {selectedLine.otherUserObjects.map((otherUser) => ( +//
+// + +// {otherUser.name} + +// +//
+// ))} +//
+//
+// ); +// }