
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@flowup/contentful-rich-text-angular-renderer
Advanced tools
**An Angular library for template-driven custom rendering of Contentful rich text fields.**
An Angular library for template-driven custom rendering of Contentful rich text fields.
Check out the live demo.
From the Contentful docs:
Rich Text is a field type that enables authors to create rich text content, similar to traditional "What you see is what you get" (wysiwyg) editors. The key difference here is that the Contentful Rich Text field response is returned as pure JSON rather than HTML. It offers common text formatting options such as paragraphs, lists and blockquotes, and allows entries and assets within our Contentful space to be linked dynamically and embedded within the flow of the text.
Contentful provides official SDKs for custom rich text rendering, but only for pure HTML strings and for React components. This library provides the same functionality for Angular apps, giving developers the freedom to customize how individual rich text nodes/marks are rendered using Angular templates.
Assuming you already have an Angular project, simply install this package from NPM, along with its peer dependencies:
npm install @flowup/contentful-rich-text-angular-renderer @contentful/rich-text-types fast-deep-equal
Then import the library module, so that its directives get recognized in your templates:
// ...
import { CfRichTextModule } from '@flowup/contentful-rich-text-angular-renderer';
@NgModule({
// ...
imports: [
// ...
CfRichTextModule,
],
})
export class AppModule {}
To simply render a rich text document using the default configuration:
<div [cfRichTextDocument]="document"></div>
The input object is expected to match the Document
type from @contentful/rich-text-types
. This is the JSON format of rich text fields, as returned by the Contentful Delivery API. Contentful entries may be fetched from the API using the official JavaScript SDK. (Note: If want you the entry fields to be strongly typed, you may use the @flowup/contentful-client
and @flowup/contentful-types-generator
packages instead.)
The main feature of this library is allowing you to easily override how different types of nodes in the document tree are rendered. Using the provided structural directives, you define not just your own HTML markup, but also your own components, directives, etc.
This next example configures the following overrides:
import { Component, Input } from '@angular/core';
import { BLOCKS, Document, INLINES, MARKS } from '@contentful/rich-text-types';
import { highlightAuto } from 'highlight.js';
@Component({
selector: 'app-foo',
templateUrl: './foo.component.html',
})
export class FooComponent {
@Input() document: Document;
readonly BLOCKS = BLOCKS;
readonly MARKS = MARKS;
readonly INLINES = INLINES;
readonly YT_EMBED_REGEX = /^https?:\/\/(?:www\.)?youtube\.com\/embed\//;
highlightCode(code: string): string {
return highlightAuto(code).value;
}
}
<div [cfRichTextDocument]="document">
<ng-container *cfRichTextNode="INLINES.HYPERLINK; let node = node">
<iframe
*ngIf="YT_EMBED_REGEX.test(node.data.uri); else externalLink"
[src]="node.data.uri"
[title]="node.content[0].value"
></iframe>
<ng-template #externalLink>
<a [href]="node.data.uri" target="_blank" rel="noopener noreferrer">
<ng-container [cfRichTextChildren]="node"></ng-container>
</a>
</ng-template>
</ng-container>
<ng-container
*cfRichTextNode="BLOCKS.EMBEDDED_ENTRY; let node = node"
[ngSwitch]="node.data.target.sys.contentType.sys.id"
>
<a
*ngSwitchCase="'blogPost'"
[routerLink]="['/post', node.data.target.sys.id]"
>
<app-blog-post-card [entry]="node.data.target"></app-blog-post-card>
</a>
<app-gallery [entry]="node.data.target"></app-gallery>
</ng-container>
<pre
*cfRichTextMark="MARKS.CODE; let node = node"
><code class="hljs" [innerHTML]="highlightCode(node.value)"></code></pre>
</div>
Check out demo app for another example of customizing a rich text document (used in live demo).
FAQs
**An Angular library for template-driven custom rendering of Contentful rich text fields.**
We found that @flowup/contentful-rich-text-angular-renderer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.