2024-08-12 14:53:19 +12:00
|
|
|
<script>
|
|
|
|
export let data;
|
|
|
|
const { webservices } = data;
|
|
|
|
//console.log(webservices);
|
|
|
|
|
|
|
|
|
|
|
|
function processData(webservices) {
|
|
|
|
let instances = 0;
|
|
|
|
let current = {};
|
2024-08-15 09:49:01 +12:00
|
|
|
let current_status = [];
|
2024-08-12 14:53:19 +12:00
|
|
|
let future = {};
|
2024-08-16 17:01:16 +12:00
|
|
|
// properties of technologies
|
|
|
|
let categories = [];
|
|
|
|
let analogues = [];
|
|
|
|
let licenses = [];
|
|
|
|
// properties of instances
|
|
|
|
let statuses = [];
|
2024-08-15 09:49:01 +12:00
|
|
|
let affiliates = [];
|
2024-08-16 17:01:16 +12:00
|
|
|
let hosts = [];
|
2024-08-12 14:53:19 +12:00
|
|
|
//
|
|
|
|
// just a trivial reassignment
|
2024-08-16 17:01:16 +12:00
|
|
|
//let hosts = webservices.hosts;
|
2024-08-12 14:53:19 +12:00
|
|
|
//
|
|
|
|
// pull out relevant info in useful chunks.
|
|
|
|
webservices.technologies.forEach(function(tech, i) {
|
2024-08-16 17:01:16 +12:00
|
|
|
if (tech.hasOwnProperty('categories') && tech.categories.constructor === Array ) {
|
|
|
|
tech.categories.forEach(function(category, index) {
|
|
|
|
if (categories.hasOwnProperty(category)) categories[category]++;
|
|
|
|
else categories[category] = 1;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (tech.hasOwnProperty('analogues') && tech.analogues.constructor === Array ) {
|
|
|
|
tech.analogues.forEach(function(analogue, index) {
|
|
|
|
if (analogues.hasOwnProperty(analogue)) analogues[analogue]++;
|
|
|
|
else analogues[analogue] = 1;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (tech.hasOwnProperty('license')) {
|
|
|
|
let license = tech.license;
|
|
|
|
if (licenses.hasOwnProperty(license)) licenses[license]++;
|
|
|
|
else licenses[license] = 1;
|
|
|
|
}
|
|
|
|
|
2024-08-12 14:53:19 +12:00
|
|
|
if (hasInstances(tech)) {
|
|
|
|
console.log(tech.name + ': ' + tech.instances.length + ' instances...');
|
2024-08-15 09:49:01 +12:00
|
|
|
tech.instances.forEach(function(instance, i) {
|
2024-08-17 10:55:55 +12:00
|
|
|
instances++;
|
2024-08-16 17:01:16 +12:00
|
|
|
if (instance.hasOwnProperty('status')) {
|
|
|
|
let tag = instance.status;
|
|
|
|
if (statuses.hasOwnProperty(tag)) statuses[tag]++;
|
|
|
|
else statuses[tag] = 1;
|
|
|
|
}
|
|
|
|
if (instance.hasOwnProperty('affiliation')) {
|
2024-08-15 09:49:01 +12:00
|
|
|
let tag = instance.affiliation;
|
2024-08-16 17:01:16 +12:00
|
|
|
if (affiliates.hasOwnProperty(tag)) affiliates[tag]++;
|
|
|
|
else affiliates[tag] = 1;
|
|
|
|
}
|
|
|
|
if (instance.hasOwnProperty('host')) {
|
|
|
|
let tag = instance.host;
|
|
|
|
if (hosts.hasOwnProperty(tag)) hosts[tag]++;
|
|
|
|
else hosts[tag] = 1;
|
2024-08-15 09:49:01 +12:00
|
|
|
}
|
|
|
|
});
|
2024-08-12 14:53:19 +12:00
|
|
|
}
|
2024-08-16 17:01:16 +12:00
|
|
|
|
2024-08-15 09:49:01 +12:00
|
|
|
});
|
2024-08-17 10:55:55 +12:00
|
|
|
/*console.log('categories: ', categories);
|
2024-08-16 17:01:16 +12:00
|
|
|
console.log('analogues: ', analogues);
|
|
|
|
console.log('licenses: ', licenses);
|
|
|
|
console.log('statuses: ', statuses);
|
2024-08-15 09:49:01 +12:00
|
|
|
console.log('affiliates: ', affiliates);
|
2024-08-17 10:55:55 +12:00
|
|
|
console.log('hosts: ', hosts); */
|
2024-08-12 14:53:19 +12:00
|
|
|
|
|
|
|
return {
|
|
|
|
total_instances: instances,
|
|
|
|
active_services: current,
|
|
|
|
candidate_services: future,
|
2024-08-16 17:01:16 +12:00
|
|
|
tech_tags: {
|
|
|
|
categories: categories,
|
|
|
|
analogues: analogues,
|
|
|
|
licenses: licenses
|
|
|
|
},
|
|
|
|
instance_tags: {
|
|
|
|
statuses: statuses,
|
|
|
|
affiliates: affiliates,
|
|
|
|
hosts: hosts
|
|
|
|
}
|
2024-08-12 14:53:19 +12:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// console.log(technologies);
|
|
|
|
function hasInstances(tech) {
|
2024-08-15 09:49:01 +12:00
|
|
|
if (tech.hasOwnProperty('instances') && tech.instances.constructor === Array) return true;
|
|
|
|
return false;
|
|
|
|
}
|
2024-08-12 14:53:19 +12:00
|
|
|
|
2024-08-16 17:01:16 +12:00
|
|
|
const results = processData(webservices);
|
|
|
|
console.log('stats = ' + results.total_instances);
|
2024-08-17 10:55:55 +12:00
|
|
|
console.log('tech_tags: ', results.tech_tags);
|
|
|
|
console.log('instance_tags: ', results.instance_tags);
|
2024-08-12 14:53:19 +12:00
|
|
|
|
|
|
|
const technologies = webservices.technologies;
|
|
|
|
const hosts = webservices.hosts;
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="webservices">
|
2024-08-16 17:01:16 +12:00
|
|
|
<h1>Web Services</h1>
|
2024-08-12 14:53:19 +12:00
|
|
|
|
2024-08-16 17:01:16 +12:00
|
|
|
<div class="summary">
|
2024-08-15 09:49:01 +12:00
|
|
|
<ul>
|
2024-08-16 17:01:16 +12:00
|
|
|
<li>Total number of services: {results.total_instances}</li>
|
2024-08-15 09:49:01 +12:00
|
|
|
</ul>
|
2024-08-12 14:53:19 +12:00
|
|
|
</div>
|
2024-08-16 17:01:16 +12:00
|
|
|
<div class="filters">
|
|
|
|
<div class="tags tech">
|
|
|
|
<div class="tags tech catergories">
|
|
|
|
{#each results.tech_tags.categories as category}
|
|
|
|
<span>{category}</span>
|
2024-08-15 09:49:01 +12:00
|
|
|
{/each}
|
2024-08-16 17:01:16 +12:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="tags instance">
|
|
|
|
<div class="tags instance statuses">
|
|
|
|
{#each results.instance_tags.statuses as status}
|
|
|
|
<span>{status}</span>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
<div class="tags instance affiliates">
|
|
|
|
{#each results.instance_tags.affiliates as affiliate}
|
|
|
|
<span>{affiliate}</span>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
<div class="tags instance hosts">
|
|
|
|
{#each results.instance_tags.hosts as host}
|
|
|
|
<span>{host}</span>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-08-12 14:53:19 +12:00
|
|
|
</div>
|
2024-08-16 17:01:16 +12:00
|
|
|
<div class="tiles">
|
|
|
|
{#each technologies as technology}
|
|
|
|
<div class="tile technology">
|
|
|
|
<h2><a href="{technology.website}">{technology.name}</a></h2>
|
|
|
|
<!--<p>{technology.description}</p>-->
|
|
|
|
{#if hasInstances(technology)}
|
|
|
|
<div class="instances">
|
|
|
|
<ul class="instances">
|
|
|
|
{#each technology.instances as instance}
|
|
|
|
<li><a href="https://{instance.domain}">{instance.domain}</a> <span class="affiliation {instance.affiliation}">{instance.affiliation}</span></li>
|
|
|
|
{/each}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{:else}
|
|
|
|
<div class="instances cell">
|
|
|
|
<ul class="instances">
|
|
|
|
<li>Nothing here yet...</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
{/each}
|
2024-08-15 09:49:01 +12:00
|
|
|
</div>
|
2024-08-12 14:53:19 +12:00
|
|
|
</div>
|
|
|
|
|
2024-08-16 17:01:16 +12:00
|
|
|
<style>
|
2024-08-15 09:49:01 +12:00
|
|
|
.webservices {
|
2024-08-16 17:01:16 +12:00
|
|
|
display: grid;
|
|
|
|
width: 90%;
|
2024-08-15 09:49:01 +12:00
|
|
|
margin: 0 auto 3em auto;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2024-08-16 17:01:16 +12:00
|
|
|
.summary {
|
|
|
|
}
|
|
|
|
.filters {
|
|
|
|
}
|
|
|
|
.tiles {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 15px;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
|
|
}
|
|
|
|
.tile {
|
2024-08-15 09:49:01 +12:00
|
|
|
box-sizing: border-box;
|
2024-08-16 17:01:16 +12:00
|
|
|
box-shadow: 5px 5px 3px #71ba71;
|
|
|
|
min-width: 250px;
|
|
|
|
max-width: 400px;
|
2024-08-15 09:49:01 +12:00
|
|
|
padding: 0.8em 1.2em;
|
|
|
|
overflow: hidden;
|
2024-08-16 17:01:16 +12:00
|
|
|
border: solid 3px #1e6831;
|
|
|
|
background-color: #fff;
|
2024-08-15 09:49:01 +12:00
|
|
|
}
|
2024-08-16 17:01:16 +12:00
|
|
|
/* .technology {
|
|
|
|
background-color: #fff;
|
2024-08-15 09:49:01 +12:00
|
|
|
}
|
|
|
|
.instances {
|
2024-08-16 17:01:16 +12:00
|
|
|
background-color: #ddd;
|
|
|
|
} */
|
2024-08-15 09:49:01 +12:00
|
|
|
.webservices li { list-style-type: none; }
|
|
|
|
/*
|
|
|
|
* Breakpoints
|
|
|
|
*/
|
|
|
|
@media all and (max-width: 500px) {
|
|
|
|
.collapse { display: block; }
|
|
|
|
.collapse > .cell { width: 100% !important; }
|
|
|
|
}
|
2024-08-16 17:01:16 +12:00
|
|
|
/* .no-flexbox .webservices {
|
2024-08-15 09:49:01 +12:00
|
|
|
display: block;
|
|
|
|
.no-flexbox .webservices > cell { width: 100%; }
|
2024-08-16 09:21:40 +12:00
|
|
|
}
|
|
|
|
div {
|
|
|
|
h2 {
|
|
|
|
color: green;
|
|
|
|
}
|
2024-08-16 17:01:16 +12:00
|
|
|
}*/
|
2024-08-15 09:49:01 +12:00
|
|
|
|
2024-08-12 14:53:19 +12:00
|
|
|
</style>
|