File

src/modules/pretty-print/components/pretty-print.component.ts

Description

Component to format and highlight code like HTML, CSS, Typescript... Can be used to display code examples

To be able to highlight the pretty-printed code, a CSS file from the PrismJS library is needed. The CSS file of your choice needs to be imported in your client application that uses stark-ui as follows:

Example :
@import "~prismjs/themes/prism-okaidia.css";

The different themes are shown on the PrismJS website

Extends

AbstractStarkUiComponent

Implements

OnChanges OnInit

Metadata

Index

Properties
Methods
Inputs
Accessors

Constructor

Public constructor(logger: StarkLoggingService, cdRef: ChangeDetectorRef, prettyPrintService: StarkPrettyPrintService, renderer: Renderer2, elementRef: ElementRef)

Class constructor

Parameters :
Name Type Optional Description
logger StarkLoggingService No
  • The StarkLoggingService instance of the application.
cdRef ChangeDetectorRef No
  • Reference to the change detector attached to this component.
prettyPrintService StarkPrettyPrintService No
  • The StarkPrettyPrintService needed to format the data and highlight the inserted data.
renderer Renderer2 No
  • Angular Renderer2 wrapper for DOM manipulations.
elementRef ElementRef No
  • Reference to the DOM element where this component is attached to.

Inputs

data
Type : string
Default value : ""

The text to be pretty printed

enableHighlighting
Type : boolean

If true, also highlight the pretty printed string

format
Type : StarkPrettyPrintFormat | undefined

The format to be used to pretty print the data string

color
Type : string
Inherited from AbstractStarkUiComponent

Color theme

Methods

Public ngOnChanges
ngOnChanges(_onChangesObj: SimpleChanges)

Component lifecycle hook

Parameters :
Name Type Optional Description
_onChangesObj SimpleChanges No
  • Contains the changed properties
Returns : void
Public ngOnInit
ngOnInit()
Inherited from AbstractStarkUiComponent

Component lifecycle hook

Returns : void

Properties

Private Optional _format
Type : StarkPrettyPrintFormat
Public highlightingEnabled
Default value : false

Whether the prettified string should be highlighted as well

Public logger
Type : StarkLoggingService
Decorators :
@Inject(STARK_LOGGING_SERVICE)
- The `StarkLoggingService` instance of the application.
Static ngAcceptInputType_format
Type : StarkPrettyPrintFormat | Uppercase<StarkPrettyPrintFormat> | undefined
Public prettyPrintService
Type : StarkPrettyPrintService
Decorators :
@Inject(STARK_PRETTY_PRINT_SERVICE)
- The `StarkPrettyPrintService` needed to format the data and highlight the inserted data.
Public prettyString
Type : string
Default value : ""

The final prettified string

Accessors

format
getformat()

The format to be used to pretty print the data string

setformat(value: StarkPrettyPrintFormat | undefined)
Parameters :
Name Type Optional
value StarkPrettyPrintFormat | undefined No
Returns : void
import {
	ChangeDetectionStrategy,
	ChangeDetectorRef,
	Component,
	ElementRef,
	Inject,
	Input,
	OnChanges,
	OnInit,
	Renderer2,
	SimpleChanges,
	ViewEncapsulation
} from "@angular/core";
import { STARK_LOGGING_SERVICE, StarkLoggingService } from "@nationalbankbelgium/stark-core";
import { AbstractStarkUiComponent } from "@nationalbankbelgium/stark-ui/src/internal-common";
import { STARK_PRETTY_PRINT_SERVICE, StarkPrettyPrintService } from "../services";
import { StarkPrettyPrintFormat } from "../types";

/**
 * @ignore
 */
const componentName = "stark-pretty-print";

/* eslint-disable jsdoc/check-alignment,jsdoc/check-indentation */
/**
 * Component to format and highlight code like HTML, CSS, Typescript...
 * Can be used to display code examples
 *
 * To be able to highlight the pretty-printed code, a CSS file from the PrismJS library is needed.
 * The CSS file of your choice needs to be imported in your client application that uses stark-ui as follows:
 *
```css
@import "~prismjs/themes/prism-okaidia.css";
```
 *
 * The different themes are shown on the PrismJS website
 *   - {@link https://prismjs.com/|PrismJS website}
 *   - {@link https://github.com/PrismJS/prism/tree/master/themes|PrismJS theme files}
 */

/* eslint-enable jsdoc/check-alignment, jsdoc/check-indentation */
@Component({
	selector: "stark-pretty-print",
	templateUrl: "./pretty-print.component.html",
	encapsulation: ViewEncapsulation.None,
	changeDetection: ChangeDetectionStrategy.OnPush,
	// We need to use host instead of @HostBinding: https://github.com/NationalBankBelgium/stark/issues/664
	host: {
		class: componentName
	}
})
export class StarkPrettyPrintComponent extends AbstractStarkUiComponent implements OnChanges, OnInit {
	/**
	 * The text to be pretty printed
	 */
	@Input()
	public data = "";

	/**
	 * The format to be used to pretty print the data string
	 */
	@Input()
	public get format(): StarkPrettyPrintFormat | undefined {
		return this._format;
	}

	public set format(value: StarkPrettyPrintFormat | undefined) {
		this._format = typeof value !== "undefined" ? <StarkPrettyPrintFormat>value.toLowerCase() : undefined;
	}

	// Information about input setter coercion https://angular.io/guide/template-typecheck#input-setter-coercion
	public static ngAcceptInputType_format: StarkPrettyPrintFormat | Uppercase<StarkPrettyPrintFormat> | undefined;

	private _format?: StarkPrettyPrintFormat;

	/**
	 * If true, also highlight the pretty printed string
	 */
	@Input()
	public enableHighlighting?: boolean;

	/**
	 * The final prettified string
	 */
	public prettyString = "";

	/**
	 * Whether the prettified string should be highlighted as well
	 */
	public highlightingEnabled = false;

	/**
	 * Class constructor
	 * @param logger - The `StarkLoggingService` instance of the application.
	 * @param cdRef - Reference to the change detector attached to this component.
	 * @param prettyPrintService - The `StarkPrettyPrintService` needed to format the data and highlight the inserted data.
	 * @param renderer - Angular `Renderer2` wrapper for DOM manipulations.
	 * @param elementRef - Reference to the DOM element where this component is attached to.
	 */
	public constructor(
		@Inject(STARK_LOGGING_SERVICE) public logger: StarkLoggingService,
		private cdRef: ChangeDetectorRef,
		@Inject(STARK_PRETTY_PRINT_SERVICE) public prettyPrintService: StarkPrettyPrintService,
		renderer: Renderer2,
		elementRef: ElementRef
	) {
		super(renderer, elementRef);
	}

	/**
	 * Component lifecycle hook
	 */
	public override ngOnInit(): void {
		super.ngOnInit();
		this.logger.debug(componentName + ": component initialized");
	}

	/**
	 * Component lifecycle hook
	 * @param _onChangesObj - Contains the changed properties
	 */
	public ngOnChanges(_onChangesObj: SimpleChanges): void {
		if (!this.data || !this.format) {
			this.prettyString = this.data;
			return;
		}

		this.highlightingEnabled = !!this.enableHighlighting;
		this.prettyString = "";

		if (this.data && this.data.length > 0) {
			this.prettyPrintService.format(this.data, this.format, this.highlightingEnabled).subscribe(
				(value: string): void => {
					this.prettyString = value;
					this.cdRef.detectChanges();
				},
				(value: string) => {
					// when have an error with the data and format unknown the service throw and observable error and then give back the value
					// in this case we should disable the highlighting.
					this.prettyString = value;
					this.highlightingEnabled = false;
					this.cdRef.detectChanges();
				}
			);
		}
	}
}
<div *ngIf="highlightingEnabled">
	<div [innerHTML]="prettyString"></div>
</div>
<div *ngIf="!highlightingEnabled">
	<pre>{{ prettyString }}</pre>
</div>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""