84 lines
No EOL
3 KiB
JavaScript
84 lines
No EOL
3 KiB
JavaScript
$(document).ready(function() {
|
|
// chat
|
|
$.getJSON("data/chat.json", function(data) {
|
|
$(".chat .total .crapauds").text(data.crapauds.total);
|
|
$(".chat .total .canaux").text(data.canaux.total);
|
|
$(".chat .total .messages").text(data.messages.total);
|
|
$(".chat .recent .crapauds").text(data.crapauds.recent);
|
|
$(".chat .recent .canaux").text(data.canaux.recent);
|
|
$(".chat .recent .messages").text(data.messages.recent);
|
|
$(".chat ul").text("");
|
|
$.each(data.canaux.liste, function(i, canal) {
|
|
var link = $("<a>")
|
|
.attr("href", "https://coa.crapaud-fou.org/channel/" + canal)
|
|
.attr("class", "list-item")
|
|
.text(canal);
|
|
var li = $("<li>").append(link);
|
|
$(".chat ul").append(li);
|
|
});
|
|
$.each(data.cohortes, function(i, canal) {
|
|
var links = $("<a>")
|
|
.attr("href", "https://coa.crapaud-fou.org/channel/cohorte-" + canal)
|
|
.attr("class", "badge badge-success mr-1")
|
|
.text(canal);
|
|
$(".cohortes").append(links);
|
|
});
|
|
});
|
|
|
|
// idees
|
|
$.getJSON("data/idees.json", function(data) {
|
|
$(".idees .total .crapauds").text(data.crapauds.total);
|
|
$(".idees .total .idees").text(data.idees.total);
|
|
$(".idees .total .commentaires").text(data.commentaires.total);
|
|
$(".idees .recent .crapauds").text(data.crapauds.recent);
|
|
$(".idees .recent .idees").text(data.idees.recent);
|
|
$(".idees .recent .commentaires").text(data.commentaires.recent);
|
|
$(".idees ul").text("");
|
|
$.each(data.idees.liste, function(index, idee) {
|
|
var link = $("<a>")
|
|
.attr("href", "https://idees.crapaud-fou.org/" + index)
|
|
.attr("class", "list-item")
|
|
.attr("title", idee)
|
|
.text(idee);
|
|
var li = $("<li>").append(link);
|
|
$(".idees ul").append(li);
|
|
});
|
|
});
|
|
|
|
// tiki
|
|
$.getJSON("data/wiki.json", function(data) {
|
|
$(".wiki .total .crapauds").text(data.crapauds.total);
|
|
$(".wiki .total .pages").text(data.pages.total);
|
|
$(".wiki .total .photos").text(data.photos.total);
|
|
$(".wiki .recent .crapauds").text(data.crapauds.recent);
|
|
$(".wiki .recent .pages").text(data.pages.recent);
|
|
$(".wiki .recent .photos").text(data.photos.recent);
|
|
$(".wiki ul").text("");
|
|
$.each(data.pages.liste, function(index, page) {
|
|
var link = $("<a>")
|
|
.attr("href", "https://wiki.crapaud-fou.org/" + index)
|
|
.attr("class", "list-item")
|
|
.attr("title", page)
|
|
.text(page);
|
|
var li = $("<li>").append(link);
|
|
$(".wiki ul").append(li);
|
|
});
|
|
});
|
|
|
|
// cratube
|
|
$.getJSON("data/tube.json", function(data) {
|
|
$.each(data.items.slice(0, 10), function(index, video) {
|
|
var link = $("<a>")
|
|
.attr("href", video.url)
|
|
.attr("class", "list-item")
|
|
.attr("title", video.title)
|
|
.text(video.title);
|
|
var li = $("<li>").append(link);
|
|
$(".tube ul").append(li);
|
|
$(".lastvideo")
|
|
.attr("src", data.items[0].url.replace("watch", "embed"))
|
|
.attr("title", data.items[0].title);
|
|
});
|
|
});
|
|
|
|
}); |