tweak lightning unfurl layouts

This commit is contained in:
Mononaut 2022-08-11 17:42:29 +00:00
parent 9216936a71
commit d667b8d455
No known key found for this signature in database
GPG Key ID: 61B952CAF4838F94
5 changed files with 39 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<div class="box preview-box" *ngIf="(channel$ | async) as channel">
<div class="row d-flex justify-content-between full-width-row">
<h1 class="title">
<span i18n="lightning.channel">Channel</span>
<span i18n="lightning.channel">Channel</span>:
<a [routerLink]="['/lightning/channel' | relativeUrl, channel.id]"> {{ channel.short_id }}</a>
</h1>
<div class="badges mb-2">

View File

@ -1,7 +1,15 @@
<div class="box preview-box" *ngIf="(node$ | async) as node">
<div class="row d-flex justify-content-between full-width-row">
<h1 class="title">
<span i18n="lightning.node">Node</span>:
<a [routerLink]="['/lightning/node' | relativeUrl, node.id]"> {{ node.alias }}</a>
</h1>
<div class="badges mb-2">
<span class="badge rounded-pill badge-success" *ngFor="let socketType of socketTypes">{{ socketType }}</span>
</div>
</div>
<div class="row">
<div class="col-md">
<h1 class="title">{{ node.alias }}</h1>
<table class="table table-borderless table-striped">
<tbody>
<tr>
@ -34,6 +42,12 @@
{{ node.country.en }} {{ node.flag }}
</td>
</tr>
<tr *ngIf="!node.city && !node.country">
<td i18n="location">Location</td>
<td>
<span>unknown</span>
</td>
</tr>
</tbody>
</table>
</div>

View File

@ -1,27 +1,43 @@
.title {
font-size: 52px;
margin-bottom: 48px;
margin-bottom: 0;
}
.table {
margin-top: 48px;
font-size: 32px;
}
.badges {
font-size: 28px;
::ng-deep .badge {
margin-left: 0.5em;
}
}
.map-col {
flex-grow: 0;
flex-shrink: 0;
width: 470px;
height: 390px;
min-width: 470px;
min-height: 390px;
max-height: 390px;
padding: 0;
background: #181b2d;
max-height: 470px;
overflow: hidden;
margin-top: 18px;
}
.row {
margin-right: 0;
}
.full-width-row {
padding-left: 15px;
}
::ng-deep .symbol {
font-size: 24px;
}

View File

@ -23,6 +23,7 @@ export class NodePreviewComponent implements OnInit {
channelsListStatus: string;
error: Error;
publicKey: string;
socketTypes: string[];
publicKeySize = 99;
@ -50,6 +51,7 @@ export class NodePreviewComponent implements OnInit {
this.seoService.setTitle(`Node: ${node.alias}`);
const socketsObject = [];
const socketTypesMap = {};
for (const socket of node.sockets.split(',')) {
if (socket === '') {
continue;
@ -67,8 +69,10 @@ export class NodePreviewComponent implements OnInit {
label: label,
socket: node.public_key + '@' + socket,
});
socketTypesMap[label] = true
}
node.socketsObject = socketsObject;
this.socketTypes = Object.keys(socketTypesMap);
node.avgCapacity = node.capacity / Math.max(1, node.active_channel_count);
this.openGraphService.waitOver('node-data');

View File

@ -174,7 +174,7 @@ class Server {
}
if (previewSupported) {
ogImageUrl = `${config.SERVER.HOST}${config.SERVER.HTTP_PORT ? ':' + config.SERVER.HTTP_PORT : ''}/render/${lang || 'en'}/preview${path}`;
ogImageUrl = `${config.SERVER.HOST}/render/${lang || 'en'}/preview${path}`;
ogTitle = `${this.network ? capitalize(this.network) + ' ' : ''}${mode !== 'mainnet' ? capitalize(mode) + ' ' : ''}${ogTitle}`;
} else {
ogTitle = 'The Mempool Open Source Project™';