Merge pull request #4762 from GabrielInTheWorld/startpage
Fixes correct rendering of images and styles at startpage
This commit is contained in:
commit
3aa6b8048b
@ -8,6 +8,6 @@
|
|||||||
<div class="app-content" translate>
|
<div class="app-content" translate>
|
||||||
<h1>{{ welcomeTitle | translate }}</h1>
|
<h1>{{ welcomeTitle | translate }}</h1>
|
||||||
|
|
||||||
<div [innerHTML]="welcomeText | translate"></div>
|
<div [innerHTML]="welcomeText"></div>
|
||||||
</div>
|
</div>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
.app-content {
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,5 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
import { Title } from '@angular/platform-browser';
|
import { Title, DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
||||||
|
|
||||||
import { TranslateService } from '@ngx-translate/core'; // showcase
|
import { TranslateService } from '@ngx-translate/core'; // showcase
|
||||||
|
|
||||||
@ -11,11 +11,12 @@ import { ConfigService } from 'app/core/ui-services/config.service';
|
|||||||
*/
|
*/
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'os-start',
|
selector: 'os-start',
|
||||||
templateUrl: './start.component.html'
|
templateUrl: './start.component.html',
|
||||||
|
styleUrls: ['./start.component.scss']
|
||||||
})
|
})
|
||||||
export class StartComponent extends BaseComponent implements OnInit {
|
export class StartComponent extends BaseComponent implements OnInit {
|
||||||
public welcomeTitle: string;
|
public welcomeTitle: string;
|
||||||
public welcomeText: string;
|
public welcomeText: SafeHtml;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor of the StartComponent
|
* Constructor of the StartComponent
|
||||||
@ -23,8 +24,14 @@ export class StartComponent extends BaseComponent implements OnInit {
|
|||||||
* @param titleService the title serve
|
* @param titleService the title serve
|
||||||
* @param translate to translation module
|
* @param translate to translation module
|
||||||
* @param configService read out config values
|
* @param configService read out config values
|
||||||
|
* @param sanitizer
|
||||||
*/
|
*/
|
||||||
public constructor(titleService: Title, translate: TranslateService, private configService: ConfigService) {
|
public constructor(
|
||||||
|
titleService: Title,
|
||||||
|
translate: TranslateService,
|
||||||
|
private configService: ConfigService,
|
||||||
|
private sanitizer: DomSanitizer
|
||||||
|
) {
|
||||||
super(titleService, translate);
|
super(titleService, translate);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -42,8 +49,19 @@ export class StartComponent extends BaseComponent implements OnInit {
|
|||||||
.subscribe(welcomeTitle => (this.welcomeTitle = welcomeTitle));
|
.subscribe(welcomeTitle => (this.welcomeTitle = welcomeTitle));
|
||||||
|
|
||||||
// set the welcome text
|
// set the welcome text
|
||||||
this.configService
|
this.configService.get<string>('general_event_welcome_text').subscribe(welcomeText => {
|
||||||
.get<string>('general_event_welcome_text')
|
this.welcomeText = this.sanitizeText(this.translate.instant(welcomeText));
|
||||||
.subscribe(welcomeText => (this.welcomeText = welcomeText as string));
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sanitizes the value from database.
|
||||||
|
*
|
||||||
|
* @param text The plain text to sanitize.
|
||||||
|
*
|
||||||
|
* @returns {SafeHtml} Html, that will be rendered with styles and so on...
|
||||||
|
*/
|
||||||
|
public sanitizeText(text: string): SafeHtml {
|
||||||
|
return this.sanitizer.bypassSecurityTrustHtml(text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
@import './app/shared/components/tile/tile.component.scss';
|
@import './app/shared/components/tile/tile.component.scss';
|
||||||
@import './app/shared/components/block-tile/block-tile.component.scss';
|
@import './app/shared/components/block-tile/block-tile.component.scss';
|
||||||
@import './app/shared/components/icon-container/icon-container.component.scss';
|
@import './app/shared/components/icon-container/icon-container.component.scss';
|
||||||
|
@import './app/site/common/components/start/start.component.scss';
|
||||||
|
|
||||||
/** fonts */
|
/** fonts */
|
||||||
@import './assets/styles/fonts.scss';
|
@import './assets/styles/fonts.scss';
|
||||||
|
Loading…
Reference in New Issue
Block a user