Replies: 4 comments 1 reply
-
Hi 👋, unfortunately I have zero experience with Angular so I'm not confident in taking on an Angular version right now. I'll leave this open as a discussion though in case someone else is interested in collaborating 👍 |
Beta Was this translation helpful? Give feedback.
-
Would be interested in an Angular wrapper too. Great lib - really impressive. |
Beta Was this translation helpful? Give feedback.
-
The author has already implemented this as a Web Component. Angular developers can consider using the Web Component directly. Here's an example for reference:
number-flow-angular.component.ts
|
Beta Was this translation helpful? Give feedback.
-
Here's a standalone / signal alternative for version .tsimport { isPlatformServer } from '@angular/common';
import {
ChangeDetectionStrategy,
Component,
computed,
CUSTOM_ELEMENTS_SCHEMA,
inject,
input,
output,
PLATFORM_ID,
} from '@angular/core';
import NumberFlowLite, {
Format,
formatToData,
renderInnerHTML,
type Data,
type Value,
} from 'number-flow';
@Component({
selector: 'app-number-flow',
standalone: true,
templateUrl: './number-flow.component.html',
styleUrl: './number-flow.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
export class NumberFlowComponent {
public locales = input<string | string[]>();
public format = input<Format>();
public value = input.required<Value>();
public prefix = input<string>();
public suffix = input<string>();
public willChange = input<boolean>(false);
public transformTiming = input(NumberFlowLite.defaultProps.transformTiming);
public spinTiming = input(NumberFlowLite.defaultProps.spinTiming);
public opacityTiming = input(NumberFlowLite.defaultProps.opacityTiming);
public animated = input(NumberFlowLite.defaultProps.animated);
public respectMotionPreference = input(NumberFlowLite.defaultProps.respectMotionPreference);
public trend = input(NumberFlowLite.defaultProps.trend);
public digits = input(NumberFlowLite.defaultProps.digits);
public plugins = input(NumberFlowLite.defaultProps.plugins);
public animationsstart = output();
public animationsfinish = output();
public formatter = computed(
() => new Intl.NumberFormat(this.locales(), this.format()),
);
public data = computed<Data>(() =>
formatToData(this.value(), this.formatter(), this.prefix(), this.suffix()),
);
public innerHtml = computed(() =>
renderInnerHTML(this.value(), {
locales: this.locales(),
format: this.format(),
numberPrefix: this.prefix(),
numberSuffix: this.suffix(),
}),
);
public isBrowser = isPlatformServer(inject(PLATFORM_ID));
} .html<number-flow
[attr.aria-label]="data().valueAsString"
role="img"
[attr.data-will-change]="willChange() ? '' : undefined"
(animationsstart)="animationsstart.emit()"
(animationsfinish)="animationsfinish.emit()"
[transformTiming]="transformTiming()"
[spinTiming]="spinTiming()"
[opacityTiming]="opacityTiming()"
[animated]="animated()"
[respectMotionPreference]="respectMotionPreference()"
[trend]="trend()"
[plugins]="plugins()"
[digits]="digits()"
[data]="data()"
>
@if (isBrowser) {
<span [innerHTML]="innerHtml()"></span>
}
</number-flow> .scss:host {
--number-flow-char-height: var(--number-flow-char-height, 1em);
--number-flow-mask-height: var(--number-flow-mask-height, 0.25em);
--number-flow-mask-width: var(--number-flow-mask-width, 0.5em);
font-variant-numeric: tabular-nums;
}
number-flow {
all: inherit;
} |
Beta Was this translation helpful? Give feedback.
-
Any Plans on bringing this to Angular?
Beta Was this translation helpful? Give feedback.
All reactions