-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (83 loc) · 3.47 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>iTabNews</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<link rel="apple-touch-icon" href="favicon-114.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" type="text/css" href="./src/css/styles.css">
</head>
<body>
<div id="wrap">
<div id="main">
<div class="header">
<!--<a class="left" href="./login.html">Login</a>-->
<h1 class="title">iTabNews</h1>
<a class="right"href="./recentes.html">Recentes</a>
</div><!--header-->
<div class="content">
<h2 class="title2">Relevantes</h2>
<div class="box-white">
<p id="dados"></p>
</div><!--box-white-->
</div><!--content-->
</div><!--main-->
<div id="sidebar">
<div class="header">
<p class="title">Seções</p>
</div><!--header-->
<div class="content">
<ul class="nav">
<li><a href="./" class="active"><span class="ico msg"></span>Relevantes</a></li>
<li><a href="./recentes.html"><span class="ico msg"></span>Recentes</a></li>
</ul>
<p>iTabNews foi criado pelo <a class="strong" href="https://www.tabnews.com.br/matrixs0beit">Otávio Augusto</a> feito em HTML, JS e CSS.</p>
<p>Feito com <strong>❤️</strong> para a Comunidade</p>
<p><strong><a class="strong" href="https://www.tabnews.com.br/matrixs0beit">Github do Projeto</a></strong></p>
</div><!--content-->
</div><!--sidebar-->
</div><!--wrap-->
<script>
// Verifica se há dados em cache e se ainda são válidos
const cacheData = localStorage.getItem('tabNewsData');
const cacheTime = localStorage.getItem('tabNewsTime');
if (cacheData && cacheTime && Date.now() - cacheTime < 5 * 60 * 1000) {
const users = JSON.parse(cacheData);
populateList(users);
} else {
// Faz a solicitação à API
fetch('https://www.tabnews.com.br/api/v1/contents?page=1&strategy=relevant')
.then(response => response.json())
.then(data => {
// Trata a resposta da API e extrai os dados relevantes
const users = data.map(user => ({
titulo: user.title,
usuario: user.owner_username,
post: user.slug,
numerocomentarios: user.children_deep_count,
coins: user.tabcoins,
publicou: user.published_at
}));
// Armazena os dados em cache
localStorage.setItem('tabNewsData', JSON.stringify(users));
localStorage.setItem('tabNewsTime', Date.now());
// Preenche a lista com os dados
populateList(users);
})
.catch(error => console.error(error));
}
// Função para preencher a lista com os dados
function populateList(users) {
const userList = document.querySelector('#dados');
userList.innerHTML = '';
users.forEach(user => {
const li = document.createElement('p');
li.innerHTML = `<a href="./topico.html?dados=/${user.usuario}/${user.post}"><strong>${user.titulo}</strong><span> Criado por ${user.usuario}</span></a>`;
userList.appendChild(li);
});
}
</script>
</body>
</html>