Hide the "Spaces" section until completed

This commit is contained in:
SondreB 2023-04-13 12:11:22 +02:00
parent 98b82fd3e7
commit 14616b5c41
3 changed files with 18 additions and 32 deletions

View File

@ -22,7 +22,6 @@
</div>
</div>
<div class="connect-content">
<mat-card class="card first-card">
<mat-card-content>
<h1 class="centered">New ways to connect with humanity</h1>
@ -36,23 +35,13 @@
</mat-card-content>
</mat-card>
<mat-card class="spaces">
<!-- <mat-card class="spaces">
<mat-card-content>
<h1 class="centered">Spaces</h1>
<div class="spaces-container">
<mat-card class="spaces-card card-background" *ngFor="let space of spacesService.spaces">
<mat-card-header>
<!-- <div mat-card-avatar class="spaces-header-image"></div> -->
<img mat-card-avatar [src]="space.picture" onerror="this.src='/assets/profile.png'" />
<!-- <div class="icon icon-small">
<a [routerLink]="['/p', space.npub]">
<img onerror="this.src='/assets/profile.png'" class="profile-image profile-image-follow" [src]="space.picture" />
<img loading="lazy" onerror="this.src='/assets/profile.png'" class="profile-image" />
</a>
</div> -->
<mat-card-title>{{ space.name }}</mat-card-title>
<mat-card-subtitle>{{ space.title }}</mat-card-subtitle>
</mat-card-header>
@ -71,29 +60,19 @@
</mat-card>
<div class="spaces-add">
<!-- <mat-card-header>
<mat-card-title>Spaces</mat-card-title>
<mat-card-subtitle>Organize multiple identities and relays</mat-card-subtitle>
</mat-card-header> -->
<p>
Using Spaces, you can organize multiple identities and relays, isolating them from each other. It allows you to reuse your same identity across multiple relays, but with different profiles and content, including private and
authenticated relays.
</p>
<p class="centered">
<button mat-fab color="primary">
<mat-icon>add</mat-icon>
</button>
<!-- <button mat-fab color="primary">
<mat-icon>add</mat-icon>
Create new space
</button> -->
</p>
<p>
Using Spaces, you can organize multiple identities and relays, isolating them from each other. It allows you to reuse your same identity across multiple relays, but with different profiles and content, including private and
authenticated relays.
</p>
<p class="centered">
<button mat-fab color="primary">
<mat-icon>add</mat-icon>
</button>
</p>
</div>
</div>
</mat-card-content>
</mat-card>
</mat-card> -->
<mat-card class="card card-image">
<img loading="lazy" width="1079" height="776" src="/assets/blockcore-notes-screenshot.png" />

View File

@ -110,6 +110,10 @@ export class EditorComponent {
sig: '',
pubkey: this.appState.getPublicKey(),
};
// Parse hashtags.
}
}

View File

@ -93,6 +93,9 @@ export class NavigationService {
let event = this.dataService.createEvent(Kind.Text, note);
// Parse hashtags:
// TODO: We should likely save this event locally to ensure user don't loose their posts
// if all of the network is down.
const signedEvent = await this.dataService.signEvent(event);