Merge Angular 16 Irish Monitor to develop #33
|
@ -455,13 +455,9 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div *ngIf="resultLandingInfo && resultLandingInfo.oaRoutes && !viewAll"
|
<div *ngIf="resultLandingInfo && resultLandingInfo.oaRoutes && !viewAll"
|
||||||
class="uk-margin-medium-top uk-padding uk-padding-remove-vertical">
|
class="uk-margin-medium-top uk-padding uk-padding-remove-vertical">
|
||||||
<div class="landing-oaroutes-card uk-text-small uk-flex uk-padding-small">
|
<div class="landing-oaroutes-card uk-text-small uk-flex uk-padding-small">
|
||||||
<!-- <div class="uk-card uk-card-default uk-border uk-box-no-shadow uk-padding-small">-->
|
|
||||||
<!-- </div>-->
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div class="uk-flex uk-flex-top" uk-grid>
|
<div class="uk-flex uk-flex-top" uk-grid>
|
||||||
<div *ngIf="resultLandingInfo.oaRoutes.green" class="uk-flex-nowrap uk-flex uk-flex-middle uk-margin-xsmall-bottom uk-margin-remove-top">
|
<div *ngIf="resultLandingInfo.oaRoutes.green" class="uk-flex-nowrap uk-flex uk-flex-middle uk-margin-xsmall-bottom uk-margin-remove-top">
|
||||||
|
@ -568,6 +564,31 @@
|
||||||
<fos [subjects]="resultLandingInfo.fos" (suggestClicked)="suggestMobileClicked($event)"
|
<fos [subjects]="resultLandingInfo.fos" (suggestClicked)="suggestMobileClicked($event)"
|
||||||
(viewAllClicked)="viewAllMobile=$event; openFsModal(fosFsModal, 'Fields of Science (FoS)')"></fos>
|
(viewAllClicked)="viewAllMobile=$event; openFsModal(fosFsModal, 'Fields of Science (FoS)')"></fos>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- OA Routes -->
|
||||||
|
<div *ngIf="resultLandingInfo.oaRoutes && !viewAllMobile" class="uk-margin-top uk-grid uk-grid-small uk-grid-divider" uk-grid>
|
||||||
|
<div class="uk-width-auto uk-text-meta">
|
||||||
|
OA Routes
|
||||||
|
</div>
|
||||||
|
<div class="uk-width-expand uk-flex">
|
||||||
|
<div>
|
||||||
|
<div class="uk-flex uk-flex-top" uk-grid>
|
||||||
|
<div *ngIf="resultLandingInfo.oaRoutes.green" class="uk-flex-nowrap uk-flex uk-flex-middle uk-margin-xsmall-bottom uk-margin-remove-top">
|
||||||
|
<div class="dot green"></div>
|
||||||
|
<div class="uk-text-capitalize">Green</div>
|
||||||
|
</div>
|
||||||
|
<div *ngIf="resultLandingInfo.oaRoutes.oaColor" class="uk-flex-nowrap uk-flex uk-flex-middle uk-margin-xsmall-bottom uk-margin-remove-top">
|
||||||
|
<div class="dot" [ngClass]="resultLandingInfo.oaRoutes.oaColor"></div>
|
||||||
|
<div class="uk-text-capitalize">{{resultLandingInfo.oaRoutes.oaColor}}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div *ngIf="resultLandingInfo.oaRoutes.isInDiamondJournal" class="uk-flex-nowrap uk-flex uk-flex-middle uk-margin-xsmall-bottom uk-text-truncate">
|
||||||
|
<div class="dot diamond"></div>
|
||||||
|
<div>Published in a Diamond OA journal</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-section uk-margin-top uk-text-large uk-text-empashis uk-text-bold">
|
<div class="uk-section uk-margin-top uk-text-large uk-text-empashis uk-text-bold">
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -6,6 +6,8 @@ import {PiwikService} from "../../utils/piwik/piwik.service";
|
||||||
import {Meta, Title} from "@angular/platform-browser";
|
import {Meta, Title} from "@angular/platform-browser";
|
||||||
import {SEOService} from "../SEO/SEO.service";
|
import {SEOService} from "../SEO/SEO.service";
|
||||||
import {ActivatedRoute, Data, NavigationEnd, Params, Router} from "@angular/router";
|
import {ActivatedRoute, Data, NavigationEnd, Params, Router} from "@angular/router";
|
||||||
|
import {StringUtils} from "../../utils/string-utils.class";
|
||||||
|
import {RouterHelper} from "../../utils/routerHelper.class";
|
||||||
|
|
||||||
@Directive()
|
@Directive()
|
||||||
export abstract class BaseComponent implements OnDestroy {
|
export abstract class BaseComponent implements OnDestroy {
|
||||||
|
@ -24,6 +26,7 @@ export abstract class BaseComponent implements OnDestroy {
|
||||||
protected seoService: SEOService;
|
protected seoService: SEOService;
|
||||||
protected _title: Title;
|
protected _title: Title;
|
||||||
protected _router: Router;
|
protected _router: Router;
|
||||||
|
public routerHelper: RouterHelper = new RouterHelper();
|
||||||
|
|
||||||
protected constructor() {
|
protected constructor() {
|
||||||
}
|
}
|
||||||
|
@ -101,4 +104,8 @@ export abstract class BaseComponent implements OnDestroy {
|
||||||
this.subscriptions.push(this._piwikService.trackView(properties, this.title).subscribe());
|
this.subscriptions.push(this._piwikService.trackView(properties, this.title).subscribe());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public quote(str: string) {
|
||||||
|
return StringUtils.quote(str);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue