Skip to content

Commit 3e3c466

Browse files
committed
feat(nx-dev): add ability to add labels to video-player
1 parent 6dca7e5 commit 3e3c466

File tree

2 files changed

+43
-15
lines changed

2 files changed

+43
-15
lines changed

docs/blog/2025-01-29-new-nx-experience.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'A New Nx Experience for TypeScript Monorepos and Beyond'
3-
slug: new-nx-experience-for-ts
3+
slug: new-nx-experience-for-typescript-monorepos
44
authors: [Juri Strumpflohner]
55
tags: []
66
cover_image: /blog/images/articles/new-ts-experience-bg.jpg
@@ -19,7 +19,7 @@ This article is part of the TypeScript Project References series:
1919

2020
Today we're excited to release a brand new experience for Nx workspaces. Historically, Nx, and many other monorepo tools, have relied on TypeScript's path aliases to connect your many packages to one another. While this approach can work, it does come with some overhead. Apart from runtimes and bundlers requiring special handling, the main limitation is in large monorepos. We've seen larger organizations struggle with slowness, memory issues and editors not being able to properly resolve symbols.
2121

22-
This is why we're releasing a new NPM/Yarn/PNPM/Bun workspaces-based setup combined with TypeScript project references. The new setup is faster, more efficient in terms of memory use, and fixes common issue with TypeScript editor support for large monorepos.
22+
This is why we're releasing a new NPM/Yarn/PNPM/Bun workspaces-based setup combined with TypeScript project references. The new setup is [faster, more efficient in terms of memory use](#key-highlight-performance), and fixes common issue with TypeScript editor support for large monorepos.
2323

2424
**For existing Nx users:** Don't worry as we're not going to deprecate the current TypeScript alias based setup. We are going to have a migration guides and potentially tooling to automate some of it. More about that [later in the article](#nx-by-default-creates-a-typescript-path-aliases-based-setup-is-that-deprecated). Also, for now the new workspaces based setup is behind a `--workspaces` flag as we're gathering feedback and polishing it further.
2525

@@ -168,7 +168,7 @@ However, if you're using PNPM, you must explicitly declare the dependency either
168168
169169
{% /callout %}
170170

171-
### Automatically Synching TypeScript Project References
171+
### Automatically Syncing TypeScript Project References
172172

173173
{% video-player src="/documentation/blog/media/04-tssetup-sync-tsrefs.mp4" alt="Nx automatically prompts to sync TypeScript project references if they are out of sync" showDescription=true showControls=true autoPlay=true loop=false /%}
174174

@@ -297,6 +297,8 @@ And this is the **worst-case scenario**, relying solely on the distribution of t
297297

298298
It is important to emphasize that the main reason we can fully leverage these benefits from TypeScript project references is that we avoid the maintenance burden of setting them up manually, thanks to the automated [Nx sync](#automatically-syncing-typescript-project-references) command.
299299

300+
**Struggling with performance in your large TypeScript monorepo?** [Let us know](/contact/engineering). We’ve [worked with many teams](/customers) to solve similar challenges and would be happy to help. [Reach out!](/contact/engineering)
301+
300302
## FAQ
301303

302304
Here are some common questions and corresponding answers.
@@ -327,7 +329,13 @@ Currently, Angular and its underlying compiler don't support TypeScript project
327329

328330
For now, we continue to use the TypeScript path alias-based setup for pure Angular monorepos, as it offers a better developer experience in the current context. That said, we're actively working on improving this. Large Angular applications stand to benefit significantly from the performance and memory optimizations enabled by TypeScript project references.
329331

330-
## Learn More
332+
## Wrapping up
333+
334+
That’s it! Try it out and let us know what you think. If you encounter any issues or have questions, don’t hesitate to reach out. We want to catch all edge cases before making this the default for new Nx workspaces.
335+
336+
If you’re working in a large monorepo and **struggling with the performance issues we discussed**, [reach out](/contact/engineering). We’ve [helped many teams](/customers) tackle similar challenges and would be happy to assist.
337+
338+
---
331339

332340
- 🧠 [Nx Docs](/getting-started/intro)
333341
- 👩‍💻 [Nx GitHub](https://github.com/nrwl/nx)

nx-dev/ui-markdoc/src/lib/tags/video-player.component.tsx

+31-11
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ export const videoPlayer: Schema = {
1616
type: 'String',
1717
required: false,
1818
},
19+
showDescription: {
20+
type: 'Boolean',
21+
required: false,
22+
default: false,
23+
},
1924
showControls: {
2025
type: 'Boolean',
2126
required: false,
@@ -38,38 +43,53 @@ export function VideoPlayer({
3843
src,
3944
alt,
4045
link,
46+
showDescription = false,
4147
showControls,
4248
autoPlay,
4349
loop,
4450
}: {
4551
src: string;
4652
alt: string;
4753
link?: string;
54+
showDescription?: boolean;
4855
showControls?: boolean;
4956
autoPlay?: boolean;
5057
loop?: boolean;
5158
}): JSX.Element {
5259
return (
5360
<div className="mb-4 overflow-x-auto">
5461
<div className="rounded-lg border border-slate-200 bg-slate-50/50 dark:border-slate-700 dark:bg-slate-800/60">
55-
{link ? (
56-
<a href={link} target="_blank" rel="noreferrer">
62+
<div
63+
className={
64+
showDescription && alt
65+
? 'overflow-hidden rounded-t-lg'
66+
: 'overflow-hidden rounded-lg'
67+
}
68+
>
69+
{link ? (
70+
<a href={link} target="_blank" rel="noreferrer">
71+
<ClientVideo
72+
src={src}
73+
alt={alt}
74+
showControls={showControls}
75+
autoPlay={autoPlay}
76+
loop={loop}
77+
/>
78+
</a>
79+
) : (
5780
<ClientVideo
5881
src={src}
5982
alt={alt}
6083
showControls={showControls}
6184
autoPlay={autoPlay}
6285
loop={loop}
6386
/>
64-
</a>
65-
) : (
66-
<ClientVideo
67-
src={src}
68-
alt={alt}
69-
showControls={showControls}
70-
autoPlay={autoPlay}
71-
loop={loop}
72-
/>
87+
)}
88+
</div>
89+
{showDescription && alt && (
90+
<div className="py-2 text-center text-sm text-slate-600 dark:text-slate-400">
91+
{alt}
92+
</div>
7393
)}
7494
</div>
7595
</div>

0 commit comments

Comments
 (0)