Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GP: Community integrations #703

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 57 additions & 3 deletions src/views/pages/globalping/integrations.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,23 @@ <h1 class="p-globalping-integrations_header_title">
</h1>

<h2 class="p-globalping-integrations_header_descr">
A fully-featured REST API for your own app, easy-to-use CLI for scripting, or a no-code chatbot – we have it all
A fully-featured REST API for your own app, easy-to-use CLI for scripting, or a no-code chatbot – we have it all. Integrate Globalping into anything!
</h2>
</div>

<c-tiles tilesData="{{tilesData}}"></c-tiles>
<c-tiles tilesData="{{gpTiles}}"></c-tiles>

<div class="p-globalping-integrations_header">
<h1 class="p-globalping-integrations_header_title">
Comunity Integrations
</h1>

<h2 class="p-globalping-integrations_header_descr">
Unofficial integrations built and supported by the amazing Globalping community!
</h2>
</div>

<c-tiles tilesData="{{communityTiles}}"></c-tiles>
</div>

<c-gp-footer></c-gp-footer>
Expand All @@ -32,7 +44,7 @@ <h2 class="p-globalping-integrations_header_descr">
return {
title: 'Globalping Integrations - Power up your tools and apps by giving them access to Globalping',
description: 'Learn how to interact with our global network of probes and add network testing functionality to your tools and apps.',
tilesData: [
gpTiles: [
{
header: 'REST API',
descr: 'Build your own free and commercial tools and services using our flexible and powerful API.',
Expand Down Expand Up @@ -126,6 +138,48 @@ <h2 class="p-globalping-integrations_header_descr">
status: 'Coming soon',
},
],
communityTiles: [
{
header: 'Home Assistant Addon',
descr: 'Run a Globalping probe with Home Assistant',
href: 'https://github.com/erwin-willems/hassio-addons',
baseImgSrc: '/img/globalping/integrations',
imgName: '/community/home-assistant',
imgExt: '.jpeg',
imgClass: 'img-rounded',
externalLink: true,
},
{
header: 'Globalping TS/JS Library',
descr: 'Typescript and JavaScript API wrapper',
href: 'https://github.com/eyepokes/globalping-ts',
baseImgSrc: '/img/globalping/integrations',
imgName: '/community/globalping-ts',
imgExt: '.jpeg',
imgClass: 'img-rounded',
externalLink: true,
},
{
header: 'Globalping Java Client Library',
descr: 'Java library with Maven and Gradle',
href: 'https://github.com/nick9822/globalping-java',
baseImgSrc: '/img/globalping/integrations',
imgName: '/community/gp-java-cli-lib',
imgExt: '.jpeg',
imgClass: 'img-rounded',
externalLink: true,
},
{
header: 'Unofficial Python library',
descr: 'Globalping Python library for easy scripting',
href: 'https://github.com/HackedServer/libglobalping-unofficial',
baseImgSrc: '/img/globalping/integrations',
imgName: '/community/unofficial-gp-python-lib',
imgExt: '.png',
imgClass: 'img-rounded',
externalLink: true,
},
],
};
},
};
Expand Down
Loading