joinpeertube/themes/hugo-bootstrap-premium/static/js/instances.js

84 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-03-15 15:12:18 +00:00
$(function () {
const instancesApi = 'https://instances.peertu.be/api/v1/instances'
const data = {
start: 0,
count: 100,
signup: true,
healthy: true
}
2018-03-15 15:36:41 +00:00
const instancesListElement = $('#instances-list')
2018-03-15 15:12:18 +00:00
2018-03-15 15:36:41 +00:00
$.get(instancesApi, data)
.done(function (res) {
const instances = res.data
2018-03-15 15:12:18 +00:00
2018-03-15 15:36:41 +00:00
const lis = []
instances.forEach(function (instance) {
2018-03-16 10:32:58 +00:00
const el = createInstanceElement(instance)
2018-03-15 15:36:41 +00:00
lis.push(el)
})
2018-03-15 15:12:18 +00:00
2018-03-15 15:36:41 +00:00
instancesListElement.append(lis)
})
2018-03-16 10:32:58 +00:00
.fail(function () {
2018-03-15 15:36:41 +00:00
$('#instances-list-error').css('display', 'block')
})
2018-03-15 15:12:18 +00:00
2018-03-16 10:32:58 +00:00
function createInstanceElement (instance) {
2018-03-15 15:12:18 +00:00
const a = $('<a>', {
class: 'list-group-item',
2018-03-16 10:32:58 +00:00
href: 'https://' + instance.host,
2018-03-15 15:12:18 +00:00
target: '_blank',
2018-03-16 10:32:58 +00:00
title: instance.host
})
const leftDiv = $('<div>', {
class: 'left-div'
})
const rightDiv = $('<div>', {
class: 'right-div'
2018-03-15 15:12:18 +00:00
})
const h4 = $('<h4>', {
2018-03-16 10:32:58 +00:00
class: 'list-group-item-heading'
})
const spanName = $('<span>', {
text: instance.name,
class: 'instance-name'
2018-03-15 15:12:18 +00:00
})
2018-03-16 10:32:58 +00:00
const spanHost = $('<small>', {
text: instance.host,
class: 'instance-host'
})
h4.append(spanName, spanHost)
leftDiv.append(h4)
2018-03-15 15:12:18 +00:00
2018-03-16 10:32:58 +00:00
if (instance.shortDescription) {
2018-03-15 15:12:18 +00:00
const p = $('<p>', {
class: 'list-group-item-text',
2018-03-16 10:32:58 +00:00
text: instance.shortDescription
2018-03-15 15:12:18 +00:00
})
2018-03-16 10:32:58 +00:00
leftDiv.append(p)
2018-03-15 15:12:18 +00:00
}
2018-03-16 10:32:58 +00:00
if (instance.totalInstanceFollowers) {
const li = $('<li>', {
text: instance.totalInstanceFollowers + ' followers'
})
rightDiv.append(li)
}
if (instance.totalInstanceFollowing) {
const li = $('<li>', {
text: 'Follows ' + instance.totalInstanceFollowing + ' instances'
})
rightDiv.append(li)
}
a.append(leftDiv, rightDiv)
2018-03-15 15:12:18 +00:00
return a
}
})