re-add community marketplace and handle missing dependency (#2110)

* re-add community marketplace and handle missing dependency

* feat: Add in the community to migration

* chore: Add in the community marketplace_url update

* change var name to hidden

* chore: Add in the down

Co-authored-by: BluJ <mogulslayer@gmail.com>
This commit is contained in:
Matt Hill
2023-01-16 17:02:57 -07:00
committed by Aiden McClelland
parent 06cf83b901
commit 730a55e721
8 changed files with 142 additions and 39 deletions

View File

@@ -3,12 +3,20 @@
<ion-content class="ion-padding">
<ng-container *ngIf="pkg$ | async as pkg else loading">
<ng-container *ngIf="pkg | empty; else show">
<ng-container *ngIf="loadVersion$ | async as version">
<div
*ngIf="loadVersion$ | async as version"
class="ion-text-center"
style="padding-top: 64px"
>
<ion-icon
name="close-circle-outline"
style="font-size: 48px"
></ion-icon>
<h2>
{{ pkgId }} version {{ version === '*' ? 'latest' : version }} not
found in this registry
{{ pkgId }} @{{ version === '*' ? 'latest' : version }} not found in
this registry
</h2>
</ng-container>
</div>
</ng-container>
<ng-template #show>