PhilippMDoerner / nimstoryfont-gui

An overhaul over aldrunewiki-frontend, reflecting everything I've learned since then.
GNU General Public License v3.0
0 stars 0 forks source link

Enhance recently updated list #18

Closed PhilippMDoerner closed 21 hours ago

PhilippMDoerner commented 1 day ago

Add some marker that says "new" or "updated" to the card. The iconCar should just implement some "decorator" that can contain text and the text is then provided by the outside.

PhilippMDoerner commented 21 hours ago

What you would be using is cdk-virtual-scroll-viewport with *cdkVirtualFor="let article of articles(); trackBy: trackByIndex".

However, that has the limitation of being a list with a single item per row. It does not do columns. You can hack around that by introducing columns yourself. But that is slow and spends a lot of time in "Pre-Paints"

With virtual scroll

stuff

image

Without virtual scroll

image