remove comments
This commit is contained in:
parent
9fc0562b61
commit
76509ea487
@ -36,11 +36,6 @@ export default function FolderTree(props) {
|
||||
defaultExpandIcon={<ChevronRightIcon />}
|
||||
onNodeSelect={(event, nodIds) => {
|
||||
const currentNode = binaryFind(props.flattenNodes, nodIds);
|
||||
// const currentNode = props.flattenNodes.find((aNode) => {
|
||||
// console.log(aNode.id);
|
||||
// return aNode.id === nodIds;
|
||||
// });
|
||||
console.log({ currentNode });
|
||||
if (currentNode != null && currentNode.routePath != null) {
|
||||
router.push(currentNode.routePath);
|
||||
}
|
||||
@ -60,16 +55,8 @@ function binaryFind(sourceList, valToFind) {
|
||||
while (rightIndex >= leftIndex) {
|
||||
middleIndex = leftIndex + Math.floor((rightIndex - leftIndex) / 2);
|
||||
const currentValue = sourceList[middleIndex];
|
||||
console.log(currentValue);
|
||||
// If the element is present at the middle
|
||||
// itself
|
||||
if (currentValue.id == valToFind) return currentValue;
|
||||
|
||||
// If element is smaller than mid, then
|
||||
// it can only be present in left subarray
|
||||
if (currentValue.id > valToFind) rightIndex = middleIndex - 1;
|
||||
// Else the element can only be present
|
||||
// in right subarray
|
||||
else leftIndex = middleIndex + 1;
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
export const siteTitle = 'Digital Backroom - An Internet Archive'
|
||||
export const siteTitle = "Digital Backroom - An Internet Archive";
|
||||
export default function Layout({ children }) {
|
||||
return (
|
||||
<div>
|
||||
<main >
|
||||
{children}
|
||||
</main>
|
||||
<main>{children}</main>
|
||||
</div>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user