frontend/src/pages/CodeEditor.jsx

208 lines
5.7 KiB
React
Raw Normal View History

2025-04-17 10:10:04 -07:00
import { useEffect, useState } from "react";
2025-04-28 12:13:10 -07:00
import EditorPanel from "../components/EditorPanel";
2025-04-17 10:10:04 -07:00
const PageCodeEditor = () => {
2025-04-28 12:13:10 -07:00
const [code, setCode] = useState(`# Write your Battlesnake code here\ndef move(board):\n return { 'move': 'up' }`);
2025-04-17 10:10:04 -07:00
useEffect(() => {
2025-05-02 09:29:18 -07:00
document.title = "Snake Brain Editor";
2025-04-17 10:10:04 -07:00
}, []);
2025-05-02 09:29:18 -07:00
return (
<main className="code-editor-page" style={{ paddingTop: '70px' }}>
<div
className="editor-page-layout"
style={{
display: 'flex',
gap: '2rem',
padding: '2rem',
fontFamily: "'Fira Code', 'Courier New', monospace",
}}
>
{/* python editor */}
<div
className="box-panel"
style={{
flex: 2,
background: 'linear-gradient(145deg, #0d0221, #1a1a1a)',
borderRadius: '12px',
boxShadow: '0 0 15px #05d9e8, 0 0 30px #ff2a6d',
border: '1px solid #ff2a6d',
padding: '1rem',
color: '#eee',
}}
>
<div
style={{
backgroundColor: '#ff2a6d',
height: '6px',
borderRadius: '3px 3px 0 0',
marginBottom: '0.5rem',
}}
2025-04-17 10:10:04 -07:00
/>
2025-05-02 09:29:18 -07:00
<h3
className="panel-heading"
style={{
fontSize: '1.2rem',
color: '#05d9e8',
textShadow: '0 0 5px #05d9e8',
marginBottom: '1rem',
}}
>
🐍 Snake Brain (Python)
</h3>
<EditorPanel code={code} onChange={setCode} />
</div>
2025-04-17 10:10:04 -07:00
2025-05-02 09:29:18 -07:00
{/* live arena */}
<div
className="box-panel"
style={{
flex: 1,
background: '#1a1a1a',
borderRadius: '12px',
boxShadow: '0 0 15px #d300c5, 0 0 25px #ff2a6d',
border: '1px solid #d300c5',
padding: '1rem',
color: '#eee',
}}
>
<div
style={{
backgroundColor: '#d300c5',
height: '6px',
borderRadius: '3px 3px 0 0',
marginBottom: '0.5rem',
}}
/>
<h3
style={{
fontSize: '1.2rem',
color: '#d300c5',
textShadow: '0 0 5px #d300c5',
marginBottom: '1rem',
display: 'flex',
alignItems: 'center',
gap: '0.5rem',
}}
>
🎯 Live Arena Output
</h3>
2025-04-28 12:13:10 -07:00
2025-05-02 09:29:18 -07:00
<h4 style={{ color: '#fff', textAlign: 'center', marginBottom: '1rem' }}>
Battlesnake Preview
</h4>
2025-04-28 12:13:10 -07:00
2025-05-02 09:29:18 -07:00
{/* game url*/}
<div
style={{
background: 'rgba(255,255,255,0.05)',
border: '1px solid #ff2a6d',
borderRadius: '8px',
padding: '1rem',
marginBottom: '1rem',
textAlign: 'center',
}}
2025-04-17 10:10:04 -07:00
>
2025-05-02 09:29:18 -07:00
<input
type="text"
placeholder="Game URL"
style={{
background: 'transparent',
border: 'none',
color: '#fff',
width: '100%',
textAlign: 'center',
fontFamily: "'Fira Code', monospace",
outline: 'none',
}}
/>
<button
style={{
backgroundColor: '#ff2a6d',
color: '#fff',
padding: '0.5rem 1rem',
border: 'none',
borderRadius: '20px',
marginTop: '0.5rem',
cursor: 'pointer',
width: '100%',
fontWeight: 'bold',
}}
>
FETCH BOARD
</button>
</div>
{/* snake api */}
<div
style={{
background: 'rgba(255,255,255,0.05)',
border: '1px solid #ff2a6d',
borderRadius: '8px',
padding: '1rem',
marginBottom: '1rem',
textAlign: 'center',
}}
2025-04-17 10:10:04 -07:00
>
2025-05-02 09:29:18 -07:00
<input
type="text"
placeholder="Your Snake API URL"
style={{
background: 'transparent',
border: 'none',
color: '#fff',
width: '100%',
textAlign: 'center',
fontFamily: "'Fira Code', monospace",
outline: 'none',
}}
/>
<button
style={{
backgroundColor: '#ff2a6d',
color: '#fff',
padding: '0.5rem 1rem',
border: 'none',
borderRadius: '20px',
marginTop: '0.5rem',
cursor: 'pointer',
width: '100%',
fontWeight: 'bold',
}}
>
CONNECT SNAKE API
</button>
</div>
{/* test move button */}
<div
style={{
display: 'flex',
justifyContent: 'center',
marginTop: '2rem',
}}
2025-04-17 10:10:04 -07:00
>
2025-05-02 09:29:18 -07:00
<button
style={{
backgroundColor: '#ff2a6d',
color: '#fff',
padding: '0.5rem 2rem',
border: 'none',
borderRadius: '20px',
fontWeight: 'bold',
cursor: 'pointer',
boxShadow: '0 0 10px #ff2a6d',
}}
>
TEST MOVE
</button>
</div>
2025-04-17 10:10:04 -07:00
</div>
</div>
</main>
);
};
export default PageCodeEditor;