-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
473 lines (434 loc) · 15 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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Un site où vous pouvez consulter et ajouter des films hébergés sur YouTube.">
<title>Cinétube</title>
<style>
/* Responsivité pour les appareils mobiles */
@media (max-width: 768px) {
header ul {
flex-direction: column;
align-items: center;
}
header li {
padding: 10px 0;
}
.movie-grid {
grid-template-columns: 1fr;
}
.movie iframe {
height: 150px;
}
}
/* Responsivité pour les petits appareils (téléphones) */
@media (max-width: 480px) {
header #branding h1 {
font-size: 1.5rem;
}
.container {
padding: 10px;
}
.movie h3 {
font-size: 1.2rem;
}
form input[type="submit"], .button {
padding: 8px 12px;
}
}
/* Effets de survol */
.movie:hover {
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.category-button:hover {
background-color: #e74c3c;
color: white;
}
/* Effet de transition pour les boutons */
form input[type="submit"], .button {
transition: background-color 0.3s ease, transform 0.2s ease;
}
form input[type="submit"]:hover, .button:hover {
transform: scale(1.05);
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #1a1a1a;
color: #e0e0e0;
}
.container {
width: 90%;
max-width: 1200px;
margin: auto;
overflow: hidden;
padding: 20px;
}
header {
background: #2c3e50;
color: white;
padding: 1rem 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
header a {
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
display: flex;
justify-content: space-around;
}
header li {
padding: 0 15px;
}
header #branding {
text-align: center;
margin-bottom: 10px;
}
header #branding h1 {
margin: 0;
font-size: 2rem;
}
.movie-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
padding: 20px 0;
}
.movie {
background: #2c3e50;
padding: 15px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.movie:hover {
transform: translateY(-5px);
}
.movie h3 {
margin-top: 0;
color: #ecf0f1;
}
.movie .category {
font-style: italic;
color: #bdc3c7;
}
.movie iframe {
width: 100%;
height: 200px;
border: none;
border-radius: 4px;
margin-bottom: 10px;
}
form {
background: #34495e;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
form input[type="text"], form textarea, form select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #7f8c8d;
border-radius: 4px;
background-color: #2c3e50;
color: #ecf0f1;
}
form input[type="submit"], .button {
background: #e74c3c;
color: #fff;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
form input[type="submit"]:hover, .button:hover {
background: #c0392b;
}
.button {
display: inline-block;
text-decoration: none;
margin-top: 10px;
}
#message {
padding: 10px;
margin-top: 10px;
background-color: #27ae60;
color: white;
display: none;
border-radius: 4px;
}
#category-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}
.category-button {
background: #34495e;
color: white;
border: none;
padding: 5px 10px;
border-radius: 3px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.category-button.active {
background: #e74c3c;
}
</style>
<script type="module">
// Import the functions you need from the SDKs you need
import {
initializeApp
} from "https://www.gstatic.com/firebasejs/10.13.1/firebase-app.js";
import {
getFirestore,
collection,
addDoc,
getDocs
} from "https://www.gstatic.com/firebasejs/10.13.1/firebase-firestore.js";
// Your web app's Firebase configuration
const firebaseConfig = {
apiKey: "AIzaSyAWZg09J3DF8-vYjUEMOo_kDANNDwqzWGw",
authDomain: "film2bsk.firebaseapp.com",
projectId: "film2bsk",
storageBucket: "film2bsk.appspot.com",
messagingSenderId: "738505652788",
appId: "1:738505652788:web:181e77e3ec21167274a861",
measurementId: "G-SMW65VQX9G"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const db = getFirestore(app);
let movies = [];
// Fonction pour ajouter un film
async function addMovie(title, category, link, description) {
if (!getYouTubeId(link)) {
showMessage("Lien YouTube invalide", "error");
return;
}
try {
await addDoc(collection(db, "films"), {
title,
category,
link,
description
});
movies.push({
title, category, link, description
});
displayMovies();
updateCategories();
showMessage("Film ajouté avec succès!");
navigateTo('home');
} catch (error) {
showMessage("Une erreur s'est produite lors de l'ajout du film", "error");
console.error("Erreur lors de l'ajout du film :", error);
}
}
// Fonction pour récupérer les films depuis Firestore
async function fetchMovies() {
try {
const snapshot = await getDocs(collection(db, "films"));
movies = snapshot.docs.map(doc => doc.data());
displayMovies();
updateCategories();
} catch (error) {
console.error("Erreur lors de la récupération des films :", error);
}
}
// Fonction pour afficher les films
function displayMovies(category = null) {
const movieList = document.getElementById(category ? 'category-movies': 'movie-list');
movieList.innerHTML = '';
movies.forEach(movie => {
if (!category || movie.category === category) {
const movieElement = document.createElement('div');
movieElement.className = 'movie';
movieElement.innerHTML = `
<h3>${movie.title}</h3>
<p class="category">Catégorie: ${movie.category}</p>
<iframe sandbox="allow-scripts allow-same-origin" width="100%" height="200" src="https://www.youtube.com/embed/${getYouTubeId(movie.link)}" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<p>${movie.description}</p>
`;
movieList.appendChild(movieElement);
}
});
}
// Fonction pour mettre à jour les catégories
function updateCategories() {
const categoryList = document.getElementById('category-list');
const categories = [...new Set(movies.map(movie => movie.category))];
categoryList.innerHTML = '';
categories.forEach(category => {
const button = document.createElement('button');
button.className = 'category-button';
button.textContent = category;
button.addEventListener('click', () => {
document.querySelectorAll('.category-button').forEach(btn => btn.classList.remove('active'));
button.classList.add('active');
displayMovies(category);
});
categoryList.appendChild(button);
});
}
// Fonction pour extraire l'ID YouTube d'un lien
function getYouTubeId(url) {
const regExp = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|\&v=)([^#\&\?]*).*/;
const match = url.match(regExp);
return (match && match[2].length === 11) ? match[2]: null;
}
// Fonction pour afficher un message
function showMessage(msg, type = "success") {
const messageDiv = document.getElementById('message');
messageDiv.textContent = msg;
messageDiv.style.display = 'block';
messageDiv.style.backgroundColor = type === "success" ? "#27ae60": "#c0392b";
setTimeout(() => {
messageDiv.style.display = 'none';
},
3000);
}
// Fonction pour naviguer entre les pages
function navigateTo(pageId) {
document.querySelectorAll('.container').forEach(container => {
container.style.display = 'none';
});
document.getElementById(pageId).style.display = 'block';
}
// Gestion du formulaire d'ajout de film
document.getElementById('add-movie-form').addEventListener('submit', function(e) {
e.preventDefault();
const title = document.getElementById('movie-title').value;
const category = document.getElementById('movie-category').value;
const link = document.getElementById('movie-link').value;
const description = document.getElementById('movie-description').value;
addMovie(title, category, link, description);
this.reset();
});
// Navigation
document.querySelectorAll('header a').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
navigateTo(this.getAttribute('href').substr(1));
});
});
// Initialisation
fetchMovies();
</script>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Cinétube</h1>
</div>
<nav>
<ul>
<li><a href="#home">Accueil</a></li>
<li><a href="#categories">Catégories</a></li>
<li><a href="#add-movie">Ajouter un film</a></li>
<li><a href="#about">À propos</a></li>
</ul>
</nav>
</div>
</header>
<div style="background-color: #f9f9f9; padding: 20px; border-radius: 10px; text-align: center; max-width: 600px; margin: auto;">
<p style="font-size: 16px; color: #333;">
Bonjour et bienvenue ! Si vous appréciez cette application et souhaitez contribuer à son développement, rejoignez-nous et soutenez la croissance de notre projet. Pour plus d'informations ou pour nous aider, contactez-moi via WhatsApp.
</p>
<a href="https://chat.whatsapp.com/JP2Rqf472ZO0bRBfZsHMKG"
style="background-color: #25D366; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: bold;">
Rejoindre le groupe WhatsApp
</a>
<p style="margin-top: 10px; font-size: 14px; color: #777;">ou contactez directement au +242 06 58 35 337</p>
</div>
<div class="container" id="home">
<h2>Catalogue de Films</h2>
<div id="movie-list" class="movie-grid">
<!-- Les films seront ajoutés ici dynamiquement -->
</div>
</div>
<div class="container" id="categories" style="display: none;">
<nav>
<ul>
<li><a href="index.html">Accueil</a></li>
</ul>
</nav>
<h2>Catégories</h2>
<div id="category-list">
<!-- Les catégories seront ajoutées ici dynamiquement -->
</div>
<div id="category-movies" class="movie-grid">
<!-- Les films de la catégorie sélectionnée seront affichés ici -->
</div>
</div>
<div class="container" id="add-movie" style="display: none;">
<nav>
<ul>
<li><a href="index.html">Accueil</a></li>
</ul>
</nav>
<h2>Ajouter un nouveau film</h2>
<form id="add-movie-form">
<input type="text" id="movie-title" aria-label="Titre du film" placeholder="Titre du film" required>
<input type="text" id="movie-category" aria-label="Catégorie du film" placeholder="Catégorie du film" required>
<input type="text" id="movie-link" aria-label="Lien YouTube" placeholder="Lien YouTube" required>
<textarea id="movie-description" aria-label="Description du film" placeholder="Description du film" required></textarea>
<input type="submit" value="Ajouter le film">
</form>
<div id="message"></div>
</div>
<div class="container" id="about" style="display: none;">
<h2 style="text-align: center; font-family: 'Arial', sans-serif;">À propos de Cinétube</h2>
<nav style="text-align: center; margin-bottom: 20px;">
<ul style="list-style: none; padding: 0;">
<li style="display: inline-block; margin-right: 10px;">
<a href="index.html" style="text-decoration: none; font-weight: bold; color: #000;">Accueil</a>
</li>
</ul>
</nav>
<div style="background-color: #f1f1f1; padding: 20px; border-radius: 10px; max-width: 800px; margin: auto; font-family: Arial, sans-serif; text-align: left;">
<p style="font-size: 16px; color: #333;">
Bienvenue dans l'univers de <strong>Cinétube</strong>, une plateforme née de la passion pour le partage de films et de contenus vidéo avec une communauté grandissante.
Notre objectif est de créer un espace unique où chacun peut non seulement profiter des contenus, mais aussi contribuer à l'enrichissement de la plateforme.
</p>
<p style="font-size: 16px; color: #333;">
Avec Cinétube, vous pouvez explorer une vaste collection de films, documentaires, et vidéos issus de YouTube. Que vous soyez amateur de films classiques, de cinéma indépendant ou des dernières sorties, notre plateforme est là pour répondre à vos besoins.
</p>
<p style="font-size: 16px; color: #333;">
Mais ce n'est qu'un début ! Vos suggestions et retours sont essentiels pour améliorer et développer de nouvelles fonctionnalités. Ensemble, nous pouvons faire évoluer cette plateforme pour mieux vous servir.
</p>
<p style="font-size: 16px; color: #333;">
Pour nous soutenir dans cette aventure et partager vos idées, vous pouvez nous rejoindre sur notre groupe WhatsApp. Ensemble, faisons de Cinétube une plateforme encore plus riche et complète.
</p>
<a href="https://chat.whatsapp.com/JP2Rqf472ZO0bRBfZsHMKG"
style="background-color: #25D366; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; text-align: center;">
Rejoindre le groupe WhatsApp
</a>
<p style="margin-top: 10px; font-size: 14px; color: #777; text-align: center;">
ou contactez-moi directement au +242 06 58 35 337
</p>
</div>
<ul style="list-style-type: disc; margin: 20px auto; max-width: 800px; padding-left: 20px; font-family: Arial, sans-serif;">
<li style="font-size: 16px; color: #333;">Consulter une variété de films dans différentes catégories</li>
<li style="font-size: 16px; color: #333;">Ajouter vos propres films à notre collection</li>
<li style="font-size: 16px; color: #333;">Explorer les films par catégorie</li>
</ul>
<p style="text-align: center; font-size: 16px; color: #333;">
Nous espérons que vous apprécierez votre expérience sur Cinétube !
</p>
</div>
</body>
</html>