connect-admin/src/app/pages/dashboard/dashboard.component.html

118 lines
7.7 KiB
HTML

<div id="dashboard" class="uk-margin-large-bottom">
<div id="content">
<div class="content-wrapper">
<div class="uk-child-width-1-3@m uk-grid-small uk-grid-margin uk-margin-top" uk-grid="" uk-height-match=".target">
<div *ngIf="communityId != 'openaire' && this.communityId !== 'connect'" class="uk-card uk-card-default uk-card-body uk-card-hover">
<div class="uk-card-title uk-h3">
<span class="uk-margin-small-right uk-icon" uk-icon="album"></span>
Profile
</div>
<div class="target uk-margin">
Edit community information, change logo url, add community managers or organizations related to
community <span *ngIf="properties.environment == 'development'"> and customize css layout</span>.
</div>
<div>
<a routerLink="/community-edit-form" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Community Profile</a><br>
<a routerLink="/organizations" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Organizations</a><br>
<a routerLink="/customize-layout"
[queryParams]="{communityId: this.communityId}"
class="uk-button uk-button-text">Customize Layout</a>
</div>
</div>
<div *ngIf="communityId != 'openaire' && this.communityId !== 'connect'" class="uk-card uk-card-default uk-card-body uk-card-hover">
<div class="uk-card-title uk-h3">
<span class="uk-margin-small-right uk-icon" uk-icon="list"></span>
Content
</div>
<div class="target uk-margin">
Manage projects, content providers{{(communityType && communityType != 'ri')?', subjects':''}} and zenodo communities that are related to the research community.
</div>
<div>
<a routerLink="/manage-projects" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Projects</a> <br>
<a routerLink="/manage-content-providers" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Content providers</a> <br>
<a routerLink="/manage-zenodo-communities" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Zenodo communities</a> <br>
<a *ngIf="communityType && communityType != 'ri'" routerLink="/manage-subjects" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Subjects</a> <br>
</div>
</div>
<div *ngIf="communityId != 'openaire' && this.communityId !== 'connect'" class="uk-card uk-card-default uk-card-body uk-card-hover">
<div class="uk-card-title uk-h3">
<span class="uk-margin-small-right uk-icon" uk-icon="image"></span>
Statistics &amp; Charts
</div>
<div class="target uk-margin">
Manage statistical numbers & charts that will be displayed in the community overview and graph analysis views.
</div>
<div>
<a routerLink="/stats" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Statistics &amp; charts</a>
</div>
</div>
<div *ngIf="communityId != 'openaire' && this.communityId !== 'connect'" class="uk-card uk-card-default uk-card-body uk-card-hover">
<div class="uk-card-title uk-h3">
<span class="uk-margin-small-right uk-icon" uk-icon="link"></span>
Links
</div>
<div class="target uk-margin">
Manage user claims related to the research community.
</div>
<div>
<a routerLink="/claims" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Links</a>
</div>
</div>
<div class="uk-card uk-card-default uk-card-body uk-card-hover">
<div class="uk-card-title uk-h3">
<span class="uk-margin-small-right uk-icon" uk-icon="file-edit"></span>
Help texts
</div>
<div class="target uk-margin">
Add or edit help text in research community pages.
</div>
<div>
<a routerLink="/pageContents" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Help texts in pages</a><br>
<a *ngIf="communityId === 'openaire' || communityId === 'connect'"
routerLink="/classContents" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Help texts in classes</a>
</div>
</div>
<div *ngIf="communityType && communityType == 'ri' && communityId!='openaire' && this.communityId !== 'connect'" class="uk-card uk-card-default uk-card-body uk-card-hover">
<div class="uk-card-title uk-h3">
<span class="uk-margin-small-right uk-icon" uk-icon="settings"></span>
Text mining rules
</div>
<div class="target uk-margin">
Manage text mining rules, test the rules and see the results, save and load mining profiles.
</div>
<div>
<a routerLink="/mining/manage-profiles" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">Text mining rules</a>
</div>
</div>
<div *ngIf="communityId!='openaire' && this.communityId !== 'connect'" class="uk-card uk-card-default uk-card-body uk-card-hover">
<div class="uk-card-title uk-h3">
<span class="uk-margin-small-right uk-icon" uk-icon="user"></span>
Users
</div>
<div class="target uk-margin">
Invite more users to subscribe, manage community subscribers, your personal info and notification settings.
</div>
<div>
<a [href]="'https://beta.'+this.communityId+'.openaire.eu/invite'" target="_blank" class="uk-button uk-button-text">
<span>Invite to subscribe </span>
</a>
<br>
<a routerLink="/manage-subscribers" routerLinkActive="active" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">
<span>Subscribers</span>
</a>
<br>
<a routerLink="/personal" routerLinkActive="active" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">
<span>Personal Info </span>
</a>
<br>
<a routerLink="/manage-user-notifications" routerLinkActive="active" [queryParams]="{communityId: this.communityId}" class="uk-button uk-button-text">
<span>Notification settings </span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>