11,758 questions
0
votes
0
answers
184
views
Next.js 16 Partial Prerendering (PPR) + Cache Components: Why is my dynamic segment not streaming after first request?
I'm experimenting with Next.js 16's new Cache Components and Partial Prerendering (PPR) to build a product page that:
Serves a static shell instantly (HTML for layout, header, footer)
Streams the ...
1
vote
1
answer
153
views
Next.js 16 Cache Components: Why is my cache() function still hitting the database on every request despite using next: { revalidate: 3600 }?
I'm using Next.js 16 with Cache Components (cache() from React) to deduplicate and cache database queries across layouts and pages.
Here's my setup:
// lib/data.ts
import { cache } from 'react';
...
0
votes
1
answer
57
views
Vaadin 24 Datetimepicker in one field
Is it possible to display the date and time selection field in one field instead of two?
How can I get a separate calendar and time selection component (only what is raised by clicking on the field)?
...
0
votes
0
answers
84
views
react-native-tab-view makes my react native expo project exit the expo go app
I'm clueless as to what's happening. I'm using TabView from the react-native-tab-view library in a screen, and whenever I access that screen via the Expo Go app, it closes the Expo Go preview of my ...
0
votes
1
answer
51
views
Profile component doesn't render but waits a refresh
After I click login, the home page renders but without a user, so the profile component doesn't render. The backend works properly. Is there something wrong with my AuthContext.jsx?
// src/context/...
2
votes
1
answer
78
views
Use Blazor Component Template with RenderFragment without additional Tags
I am currently experimenting with templated components in Blazor. I am trying to set up a component with a RenderFragment parameter.
For example:
<div>
@this.Content
</div>
@code {
...
-2
votes
2
answers
132
views
How to prevent filtered component from re-rendering over and over?
I have a React component that I created called List that contains an array of data. I then created a second component that is a filtered version of the list called favoriteList. The component ...
2
votes
1
answer
618
views
Angular Component doesn't generate as Component
Picture of the command here
I'm having a problem where my Angular component isn't being generated as a component. Instead of "home.component.ts/html/css" only "home.ts/html/css" is ...
1
vote
2
answers
290
views
How do I install Lockbox3 in Delphi 12.3? The GetIt version does not seem to work and the repo doesn't seem to have a package for the codecs?
I have installed both "Lockbox 3" (2025.03) and "Lockbox VCL and FMX" (2025.03) from the GetIt package manager in Delphi 12.3. The "Lockbox VCL" components (THash, TCodec,...
-1
votes
1
answer
145
views
How to pass column with variable to a component's slot in Laravel blade?
Im using to Laravel blade's component to make a dynamic table, in which user can pass in header, and corresponding rows. I wanna use this component to display many tables (permissions, reviews, etc...)...
2
votes
2
answers
58
views
Component diagram - may a component have operations and attributes
I wonder if a Component may have operations and attributes. I never see them on a component diagram, and it also doesn't sound logical, because a component diagram is a high-level diagram.
But I'm not ...
0
votes
1
answer
101
views
How i can manage a component that needs to use a custom event?
I’m using a custom Select component inside a table, and I want to make some reactive calculations in the parent component for example, updating the total price when a discount is selected through a ...
0
votes
0
answers
92
views
Set/Populate property list at design time on C#
I am trying to build a solution with two components where one of them depends on the other, I mean I have inherited a Label component that depends from a client to receive Data.
Components
As far you ...
0
votes
1
answer
110
views
Vite: [plugin:vite:import-analysis] Failed to resolve import "../assets/sample" from "src/components/Navbar/Navbar.jsx"
Vite: [plugin:vite:import-analysis] Failed to resolve import "../assets/sample" from "src/components/Navbar/Navbar.jsx"
'''
import { assets } from "../assets/sample";
'''
...
0
votes
0
answers
69
views
Astro component missing styles when deployed to Vercel
I'm building a website using Astro and deploying it to Vercel. One of my components, Footer.astro, is missing all of its styles only in production. It works fine locally. Also all other components ...