
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@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
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.)
(*) If you're using the Contentful GraphQL API, then the input object should instead contain the json
and links
GraphQL fields (this will take care of resolving linked entries and assets).
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';
import {
CfRichTextChildrenDirective,
CfRichTextMarkDirective,
CfRichTextNodeDirective,
CfRichTextDocumentComponent,
} from '@flowup/contentful-rich-text-angular-renderer';
@Component({
selector: 'app-foo',
templateUrl: './foo.component.html',
standalone: true,
imports: [
CfRichTextDocumentComponent,
CfRichTextNodeDirective,
CfRichTextMarkDirective,
CfRichTextChildrenDirective,
],
})
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">
@if (YT_EMBED_REGEX.test(node.data.uri)) {
<iframe [src]="node.data.uri" [title]="node.content[0].value"></iframe>
} @else {
<a [href]="node.data.uri" target="_blank" rel="noopener noreferrer">
<ng-container [cfRichTextChildren]="node" />
</a>
}
</ng-container>
<ng-container *cfRichTextNode="BLOCKS.EMBEDDED_ENTRY; let node = node">
@switch (node.data.target.sys.contentType.sys.id) {
@case ('blogPost') {
<a [routerLink]="['/post', node.data.target.sys.id]">
<app-blog-post-card [entry]="node.data.target" />
</a>
}
@default {
<app-gallery [entry]="node.data.target" />
}
}
</ng-container>
<code *cfRichTextMark="MARKS.CODE; let node = node" class="hljs" [innerHTML]="highlightCode(node.value)"></code>
</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.**
The npm package @flowup/contentful-rich-text-angular-renderer receives a total of 3 weekly downloads. As such, @flowup/contentful-rich-text-angular-renderer popularity was classified as not popular.
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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.