-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex5.html
152 lines (132 loc) · 4.72 KB
/
index5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Summaries</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
width: 90%;
max-width: 600px;
}
.card {
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
overflow: hidden;
border-radius: 8px;
transition: transform 0.3s ease-in-out;
}
.card:hover {
transform: scale(1.03);
}
.thumbnail-container {
height: 200px;
overflow: hidden;
}
.thumbnail-container img {
width: 100%;
height: auto;
}
.content {
padding: 20px;
}
h2 {
margin-top: 0;
font-size: 1.4em;
}
p {
font-size: 1em;
color: #555;
}
</style>
</head>
<body>
<div class="container">
<div id="videoCard" class="card">
<div class="thumbnail-container">
<img id="thumbnail" src="" alt="Video Thumbnail">
</div>
<div class="content">
<h2 id="title"></h2>
<p id="summary"></p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
let currentIndex = 0;
let maxResults = 5; // Adjust this according to your backend pagination logic
function fetchNextSummary() {
axios.get(`http://localhost:5007/summary/`)
.then(response => {
const data = response.data;
const videoId = Object.keys(data)[0]; // Assuming only one video summary is fetched at a time
if (data[videoId]) {
const { title, summary, thumbnail_url } = data[videoId];
displayVideoSummary(title, summary, thumbnail_url);
} else {
console.log('No more video summaries available.');
}
})
.catch(error => {
console.error('Error fetching video summary:', error);
});
}
function displayVideoSummary(title, summary, thumbnailUrl) {
const titleElement = document.getElementById('title');
const summaryElement = document.getElementById('summary');
const thumbnailElement = document.getElementById('thumbnail');
titleElement.textContent = title;
summaryElement.textContent = summary;
thumbnailElement.src = thumbnailUrl;
}
fetchNextSummary();
// Swipe functionality
let touchstartY = 0;
let touchendY = 0;
const card = document.getElementById('videoCard');
card.addEventListener('touchstart', function(event) {
touchstartY = event.changedTouches[0].screenY;
}, false);
card.addEventListener('touchend', function(event) {
touchendY = event.changedTouches[0].screenY;
handleGesture();
}, false);
function handleGesture() {
if (touchendY < touchstartY) {
// Swipe up detected
currentIndex++;
fetchNextSummary();
} else if (touchendY > touchstartY) {
// Swipe down detected (if needed)
// Example: go to previous item
// if (currentIndex > 0) {
// currentIndex--;
// fetchNextSummary();
// }
}
}
// Scroll event for continuous loading (if needed)
window.addEventListener('scroll', () => {
const scrollable = document.documentElement.scrollHeight - window.innerHeight;
const scrolled = window.scrollY;
if (scrolled === scrollable && currentIndex < maxResults - 1) {
currentIndex++;
fetchNextSummary();
}
});
});
</script>
</body>
</html>