-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
import React, { useState } from 'react' | ||
import React from 'react' | ||
import ICodeState from './ICodeState' | ||
|
||
|
||
export default function CodeRenderer({codeState} : {codeState: ICodeState}) : React.ReactNode { | ||
|
||
//const [currentRenderIdx, setCurrentRenderIdx] = useState(codeState.currentIndex) | ||
const renders = [ | ||
( <></>), | ||
( | ||
<div><span className='text-gray-800 dark:text-gray-200'>Hello World</span></div> | ||
), | ||
|
||
( | ||
<div className='flex h-full flex-col justify-center'> | ||
<div className='w-full flex flex-row justify-center'> | ||
<span className='text-gray-800 dark:text-gray-200'>Hello World</span> | ||
</div> | ||
let rendererIdx = codeState.canRender ? codeState.currentIndex + 1 : codeState.currentIndex | ||
|
||
switch(rendererIdx) { | ||
case 0: return ( | ||
<></> | ||
) | ||
case 1: return ( | ||
<div> | ||
<span className='text-gray-800 dark:text-gray-200'> | ||
Hello World | ||
</span> | ||
</div> | ||
) | ||
] | ||
let rendererIdx = codeState.canRender ? codeState.currentIndex + 1 : codeState.currentIndex | ||
|
||
return renders[rendererIdx] | ||
default: return ( | ||
<div key={2} className='flex h-full flex-col justify-center'> | ||
<div className='w-full flex flex-row justify-center'> | ||
<span className='text-gray-800 dark:text-gray-200'>Hello World</span> | ||
</div> | ||
</div> | ||
) | ||
} | ||
} |