From f090537ef4c5650277b2b7f00fc29173e827f64f Mon Sep 17 00:00:00 2001
From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com>
Date: Thu, 31 Dec 2020 16:23:08 -0800
Subject: [PATCH] tweak username display, dropdown size + spacing
---
.../app-frame/app-frame.component.html | 27 ++++++++++++-------
.../app-frame/app-frame.component.scss | 13 ++++++++-
.../app-frame/app-frame.component.ts | 23 +++++++++++++---
3 files changed, 49 insertions(+), 14 deletions(-)
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html
index 8029edc98..a05b691af 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.html
+++ b/src-ui/src/app/components/app-frame/app-frame.component.html
@@ -20,21 +20,28 @@
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.scss b/src-ui/src/app/components/app-frame/app-frame.component.scss
index f62eccf96..f2abb80f9 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.scss
+++ b/src-ui/src/app/components/app-frame/app-frame.component.scss
@@ -62,13 +62,16 @@
/*
* Navbar
*/
+
.navbar-brand {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
font-size: 1rem;
}
-.navbar-toggler {
+.dropdown.show .dropdown-toggle,
+.dropdown-toggle:hover {
+ opacity: 0.7;
}
.dropdown-toggle::after {
@@ -76,6 +79,14 @@
vertical-align: 0.155em;
}
+.navbar .dropdown-menu {
+ font-size: 0.875rem; // body size
+
+ a svg {
+ opacity: 0.6;
+ }
+}
+
.navbar .search-form-container {
max-width: 550px;
position: relative;
diff --git a/src-ui/src/app/components/app-frame/app-frame.component.ts b/src-ui/src/app/components/app-frame/app-frame.component.ts
index c4c00843d..dca0d9106 100644
--- a/src-ui/src/app/components/app-frame/app-frame.component.ts
+++ b/src-ui/src/app/components/app-frame/app-frame.component.ts
@@ -9,7 +9,8 @@ import { SavedViewService } from 'src/app/services/rest/saved-view.service';
import { SearchService } from 'src/app/services/rest/search.service';
import { environment } from 'src/environments/environment';
import { DocumentDetailComponent } from '../document-detail/document-detail.component';
-
+import { Meta } from '@angular/platform-browser';
+
@Component({
selector: 'app-app-frame',
templateUrl: './app-frame.component.html',
@@ -22,8 +23,11 @@ export class AppFrameComponent implements OnInit, OnDestroy {
private activatedRoute: ActivatedRoute,
private openDocumentsService: OpenDocumentsService,
private searchService: SearchService,
- public savedViewService: SavedViewService
+ public savedViewService: SavedViewService,
+ private meta: Meta
) {
+ console.log(meta);
+
}
versionString = `${environment.appTitle} ${environment.version}`
@@ -55,7 +59,7 @@ export class AppFrameComponent implements OnInit, OnDestroy {
term.length < 2 ? from([[]]) : this.searchService.autocomplete(term)
)
)
-
+
itemSelected(event) {
event.preventDefault()
let currentSearch: string = this.searchField.value
@@ -98,4 +102,17 @@ export class AppFrameComponent implements OnInit, OnDestroy {
}
}
+ get displayName() {
+ // TODO: taken from dashboard component, is this the best way to pass around username?
+ let tagFullName = this.meta.getTag('name=full_name')
+ let tagUsername = this.meta.getTag('name=username')
+ if (tagFullName && tagFullName.content) {
+ return tagFullName.content
+ } else if (tagUsername && tagUsername.content) {
+ return tagUsername.content
+ } else {
+ return null
+ }
+ }
+
}