-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
423 lines (369 loc) · 15.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<!DOCTYPE html>
<html>
<head>
<title>Interactive Story Generator</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.21.1/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/plotly.js/2.24.2/plotly.min.js"></script>
<style>
:root {
--primary-bg: #121927; /* Dark background color for the overall app */
--secondary-bg: #1d2d44; /* Slightly lighter dark background for content areas */
--accent-primary: #3b82f6; /* Vivid blue for accents (buttons, links, highlights) */
--accent-secondary: #60a5fa; /* Softer blue for secondary highlights or hover effects */
--text-primary: #e0e8f0; /* Light text color for high contrast and readability */
--text-secondary: #9ca3af; /* Lighter gray text for less prominent content */
--success: #22c55e; /* Green color for success messages or notifications */
--border-radius: 10px; /* Slightly rounded corners for inputs, buttons, and content blocks */
--transition: all 0.3s ease; /* Smooth transitions for interactive elements */
--box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Google sans', Google sans, Google sans, 'Google sans', Google sans, Google sans;
background-color: var(--primary-bg);
color: var(--text-primary);
line-height: 1.6;
}
.container {
display: flex;
height: 100vh;
width: 100%;
position: fixed;
}
.main-content {
flex: 1;
padding: 2rem;
overflow-y: auto;
max-width: 1000px;
}
.sidebar {
width: 500px; /* Set a reasonable width */
height: 100%; /* Make the sidebar take the full height of the page */
position: fixed; /* Fix the sidebar to the left */
top: 0;
right: 0;
background-color: var(--secondary-bg); /* Use your existing background color */
padding: 2rem;
overflow-y: auto; /* Allow vertical scrolling if content overflows */
border-right: 1px solid rgba(255, 255, 255, 0.1); /* Border on the right to separate from content */
box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1); /* Subtle shadow on the right side */
z-index: 1000; /* Make sure it stays on top of other content */
}
.card {
background-color: var(--secondary-bg);
border-radius: var(--border-radius);
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.welcome-card {
text-align: center;
padding: 2rem;
background: linear-gradient(135deg, var(--secondary-bg), #2d3748);
}
.welcome-card h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.situation-card {
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 1.5rem;
margin: 1rem 0;
border-radius: var(--border-radius);
cursor: pointer;
transition: var(--transition);
background-color: rgba(255, 255, 255, 0.05);
position: relative;
overflow: hidden;
}
.situation-card:hover {
transform: translateY(-2px);
background-color: rgba(59, 130, 246, 0.1);
border-color: var(--accent-primary);
}
.situation-card p {
margin-bottom: 0.75rem;
font-size: 1.1rem;
}
.weight-indicator {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 20px;
background-color: var(--accent-primary);
font-size: 0.875rem;
font-weight: 500;
}
textarea {
width: 100%;
min-height: px;
padding: 1rem;
border-radius: var(--border-radius);
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
color: var(--text-primary);
font-size: 1rem;
resize: vertical;
margin-bottom: 1rem;
transition: var(--transition);
}
textarea:focus {
outline: none;
border-color: var(--accent-primary);
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
select {
width: 100%;
padding: 0.75rem 1rem;
border-radius: var(--border-radius);
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: rgba(255, 255, 255, 0.05);
color: var(--text-primary);
font-size: 1rem;
margin-bottom: 1rem;
cursor: pointer;
transition: var(--transition);
}
select:focus {
outline: none;
border-color: var(--accent-primary);
}
button {
width: 100%;
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
border: none;
background-color: var(--accent-primary);
color: white;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
text-transform: uppercase;
letter-spacing: 0.5px;
}
button:hover {
background-color: var(--accent-secondary);
transform: translateY(-1px);
}
.regenerate-btn {
background-color: var(--success);
margin-top: 1rem;
}
.regenerate-btn:hover {
background-color: #16a34a;
}
.genre-controls {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
align-items: center;
}
.genre-controls select {
margin-bottom: 0;
}
h2, h3 {
color: var(--accent-secondary);
margin-bottom: 1.5rem;
font-weight: 600;
}
.plot-container {
margin-bottom: 2rem;
background-color: rgba(255, 255, 255, 0.05);
border-radius: var(--border-radius);
padding: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.selected-situations {
margin-top: 2rem;
}
.selected-situation-card {
background-color: rgba(59, 130, 246, 0.1);
padding: 1rem;
margin: 0.75rem 0;
border-radius: var(--border-radius);
border: 1px solid rgba(59, 130, 246, 0.2);
}
.story-options {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (max-width: 1200px) {
.container {
flex-direction: column;
}
.sidebar {
width: 100%;
border-left: none;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.main-content {
max-width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="main-content">
<div id="start-form" class="card welcome-card">
<h1>Interactive Story Generator</h1>
<p style="margin-bottom: 10px">Begin your journey by setting up your story's initial situation and genre</p>
<textarea id="initial-situation" placeholder="Enter your initial story situation..."></textarea>
<select id="genre">
<option value="fantasy">Fantasy</option>
<option value="scifi">Science Fiction</option>
<option value="romance">Romance</option>
<option value="mystery">Mystery</option>
<option value="horror">Horror</option>
<option value="adventure">Adventure</option>
<option value="historical">Historical Fiction</option>
<option value="thriller">Thriller</option>
</select>
<button onclick="startStory()">Begin Your Journey</button>
</div>
<div id="story-progress" style="display: none;">
<div class="genre-controls">
<select id="current-genre" onchange="updateGenre()">
<option value="fantasy">Fantasy</option>
<option value="scifi">Science Fiction</option>
<option value="romance">Romance</option>
<option value="mystery">Mystery</option>
<option value="horror">Horror</option>
<option value="adventure">Adventure</option>
<option value="historical">Historical Fiction</option>
<option value="thriller">Thriller</option>
</select>
<button onclick="regenerateOptions()" class="regenerate-btn">Generate New Options</button>
</div>
<div class="card">
<h3>Choose Your Next Story Path</h3>
<div id="next-situations" class="story-options"></div>
</div>
</div>
</div>
<div class="sidebar">
<h2>Story Progress</h2>
<div id="analytics-container">
<div id="progress-plot" class="plot-container"></div>
<div id="genre-plot" class="plot-container"></div>
<div id="path-plot" class="plot-container"></div>
<div class="selected-situations">
<h3>Your Story Path</h3>
<div id="selected-situations-list"></div>
</div>
</div>
</div>
</div>
<script>
let currentNodeId = null;
let currentGenre = null;
let selectedSituations = [];
async function startStory() {
const situation = document.getElementById('initial-situation').value;
const genre = document.getElementById('genre').value;
currentGenre = genre;
const response = await axios.post('/start_story', {
situation: situation,
genre: genre
});
currentNodeId = response.data.current_node;
displayNextSituations(response.data.next_situations);
document.getElementById('start-form').style.display = 'none';
document.getElementById('story-progress').style.display = 'block';
document.getElementById('current-genre').value = genre;
selectedSituations = [{content: situation, weight: response.data.initial_weight}];
updateSelectedSituations();
updateAnalytics();
}
// Handle story path choices
function displayNextSituations(situations) {
const container = document.getElementById('next-situations');
container.innerHTML = '';
situations.forEach(situation => {
const card = document.createElement('div');
card.classList.add('situation-card');
card.onclick = () => handleStoryChoice(situation);
card.innerHTML = `
<p>${situation.text}</p>
<span class="weight-indicator">${situation.weight}</span>
`;
container.appendChild(card);
});
}
// Handle user choice and update the story
async function handleStoryChoice(situation) {
selectedSituations.push(situation);
updateStoryPath();
// Call backend to update the story state
const response = await axios.post('/choose_path', {
currentNodeId: currentNodeId,
chosenPath: situation.id
});
currentNodeId = response.data.next_node;
displayNextSituations(response.data.next_situations);
}
// Update the sidebar to reflect the current path
function updateStoryPath() {
const list = document.getElementById('selected-situations-list');
list.innerHTML = '';
selectedSituations.forEach(situation => {
const item = document.createElement('div');
item.classList.add('selected-situation-card');
item.innerHTML = `<p>${situation.text}</p>`;
list.appendChild(item);
});
generateAnalytics();
}
// Update genre and generate new path options
function regenerateOptions() {
const response = axios.post('/regenerate_options', {
genre: currentGenre
});
displayNextSituations(response.data.next_situations);
}
// Handle genre changes
function updateGenre() {
const newGenre = document.getElementById('current-genre').value;
if (newGenre !== currentGenre) {
currentGenre = newGenre;
regenerateOptions();
}
}
// Example analytics generation (this could be more sophisticated with real data)
function generateAnalytics() {
// Simulating a simple plot for story progression
const x = Array.from({ length: selectedSituations.length }, (_, i) => i + 1);
const y = selectedSituations.map(s => s.weight);
const trace = {
x: x,
y: y,
type: 'scatter',
mode: 'lines+markers',
name: 'Story Progress'
};
Plotly.newPlot('progress-plot', [trace]);
// Generate genre-related plot (just an example)
const genreCount = selectedSituations.reduce((acc, s) => {
acc[s.genre] = (acc[s.genre] || 0) + 1;
return acc;
}, {});
const genreTrace = {
x: Object.keys(genreCount),
y: Object.values(genreCount),
type: 'bar',
name: 'Genre Distribution'
};
Plotly.newPlot('genre-plot', [genreTrace]);
}
</script>
</body>
</html>