Compare commits
No commits in common. "d46d7e28b7d4558924db7650e53921724cdc4966" and "1d745745ff9087411d5059ffce4633f49c0b188f" have entirely different histories.
d46d7e28b7
...
1d745745ff
|
@ -48,11 +48,8 @@ export class Base extends Component {
|
||||||
|
|
||||||
styleEchoBack={'fullInherit'}
|
styleEchoBack={'fullInherit'}
|
||||||
noDefaults
|
noDefaults
|
||||||
|
noAutoScroll
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.terminal.current.focusTerminal();
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -24,7 +24,7 @@ const commands = (terminal) => {
|
||||||
clear: {
|
clear: {
|
||||||
description: 'Clear the terminal.',
|
description: 'Clear the terminal.',
|
||||||
fn: () => {
|
fn: () => {
|
||||||
terminal.current.clearStdout();
|
terminal.current.setState({stdout: []});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -51,9 +51,9 @@ const commands = (terminal) => {
|
||||||
Object.keys(commands).map((cmd, i) => {
|
Object.keys(commands).map((cmd, i) => {
|
||||||
if (commands[cmd].unlisted) return;
|
if (commands[cmd].unlisted) return;
|
||||||
return <tr key={i}>
|
return <tr key={i}>
|
||||||
<td style={{color: 'aquamarine'}}>{cmd}</td>
|
<td style={{color: 'violet'}}>{cmd}</td>
|
||||||
<td style={{padding: '0 8px'}}> : </td>
|
<td style={{padding: '0 8px'}}> : </td>
|
||||||
<td style={{color: 'white'}}>{commands[cmd].description}</td>
|
<td>{commands[cmd].description}</td>
|
||||||
</tr>
|
</tr>
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset='utf-8'/>
|
<meta charset='utf-8'/>
|
||||||
<title>Resume debug mode</title>
|
<title>Resume debug mode</title>
|
||||||
<script type="module" src='resume.js'></script>
|
<script type="module" src='app.js'></script>
|
||||||
<link rel="stylesheet" href='styles.css'/>
|
<link rel="stylesheet" href='styles.css'/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
import { createRoot } from "react-dom/client";
|
import { createRoot } from "react-dom/client";
|
||||||
import { Base } from './Base';
|
import { Base } from './Base';
|
||||||
|
|
||||||
setTimeout(() => {
|
document.getElementById('resume_js_app').innerHTML = '';
|
||||||
document.getElementById('resume_js_app').innerHTML = '';
|
const container = document.getElementById("resume_js_app");
|
||||||
const container = document.getElementById("resume_js_app");
|
const root = createRoot(container)
|
||||||
const root = createRoot(container)
|
root.render(<Base />);
|
||||||
root.render(<Base />);
|
|
||||||
}, (Math.random() * 200) + 500)
|
|
|
@ -18,3 +18,8 @@ th {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding-right: 16px !important;
|
padding-right: 16px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.console {
|
||||||
|
font-family: 'Source Code Pro'/*, monospace*/ !important;
|
||||||
|
height: 100%
|
||||||
|
}
|
|
@ -2,8 +2,6 @@ extends ../layout/main.pug
|
||||||
block root
|
block root
|
||||||
- var title = 'Resume'
|
- var title = 'Resume'
|
||||||
link(rel='stylesheet' href='/static/ui/resume.css')
|
link(rel='stylesheet' href='/static/ui/resume.css')
|
||||||
if (process.env.APP_DEBUG == 'true')
|
|
||||||
script(src='http://localhost:1234/resume.js' defer='')
|
|
||||||
|
|
||||||
block content
|
block content
|
||||||
h2 My online resume
|
h2 My online resume
|
||||||
|
@ -22,3 +20,5 @@ block content
|
||||||
| Please, enable it in order to run the app.
|
| Please, enable it in order to run the app.
|
||||||
if (process.env.APP_DEBUG != 'true')
|
if (process.env.APP_DEBUG != 'true')
|
||||||
script(src='/static/dist/resume.js')
|
script(src='/static/dist/resume.js')
|
||||||
|
else
|
||||||
|
script(src='http://localhost:1234/resume.js' type='module')
|
Loading…
Reference in New Issue