Browse Source
Feature/make system message expandable (#1861)
* Make system message expandable
* Update changelog
pull/1862/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
22 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/app.component.html
-
apps/client/src/app/app.component.scss
-
apps/client/src/app/app.component.ts
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Made the system message expandable |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Skipped creating queue jobs for asset profiles with `MANUAL` data source not having a scraper configuration |
|
|
|
|
|
@ -31,7 +31,8 @@ |
|
|
|
> |
|
|
|
<div |
|
|
|
*ngIf="!canCreateAccount && info?.systemMessage && user" |
|
|
|
class="d-inline-block info-message px-3 py-2" |
|
|
|
class="cursor-pointer d-inline-block info-message px-3 py-2 text-truncate" |
|
|
|
(click)="onShowSystemMessage()" |
|
|
|
> |
|
|
|
{{ info.systemMessage }} |
|
|
|
</div> |
|
|
|
|
|
@ -13,9 +13,10 @@ |
|
|
|
margin-top: -0.5rem; |
|
|
|
|
|
|
|
.info-message { |
|
|
|
background-color: rgba(0, 0, 0, $alpha-hover); |
|
|
|
background-color: rgba(var(--palette-foreground-text), 0.05); |
|
|
|
border-radius: 2rem; |
|
|
|
font-size: 80%; |
|
|
|
max-width: 100%; |
|
|
|
|
|
|
|
.a { |
|
|
|
color: rgba(var(--palette-primary-500), 1); |
|
|
@ -30,3 +31,13 @@ |
|
|
|
line-height: 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
:host-context(.is-dark-theme) { |
|
|
|
main { |
|
|
|
.info-message-container { |
|
|
|
.info-message { |
|
|
|
background-color: rgba(var(--palette-foreground-text-dark), 0.05); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -100,6 +100,10 @@ export class AppComponent implements OnDestroy, OnInit { |
|
|
|
this.tokenStorageService.signOut(); |
|
|
|
} |
|
|
|
|
|
|
|
public onShowSystemMessage() { |
|
|
|
alert(this.info.systemMessage); |
|
|
|
} |
|
|
|
|
|
|
|
public onSignOut() { |
|
|
|
this.tokenStorageService.signOut(); |
|
|
|
this.userService.remove(); |
|
|
|