Earlier quoted context omitted.
The demo does not use a back-end service. We are agnostic to back-end frameworks. Some users have used Prisma + Graphql, NoSQL databases etc. The Sheet data structure on the UI can be flexible too. It can come from streaming data source, lazily loaded on-demand or all stored in browser memory
Admittedly, I haven't clicked on the link, but you appear to have avoided their question altogether. You offer product demos. Those demos source data from something, be it a JSON file, REST API, etc. Where is the demo data sourced from?
Show HN: React Spreadsheet 2
111–120 of 144 posts
Re: Show HN: React Spreadsheet 2
#112Genuine question: Why would anyone purchase this for $299, without the ability to use it commercially? For open-source projects?
So yeah, I don't know who would be the target, probably very niche.
Re: Show HN: React Spreadsheet 2
#113Earlier quoted context omitted.
Yes it is. The Spreadsheet is powered by ReactJS and Konva. React and Konva provides a Profiler and Devtools to measure performance and to prevent any un-necessary re-renders. We also measure the Canvas FPS to make sure rendering is at max 60fps. The bottleneck we have identified is with scrolling large amounts of text, especially in large 42 inch 4K monitors, where FPS limits to 55-60fps. We do have some workaround…
You mentioned physical size of monitors. Does it affect performance in your tests? I would be very, very surprised if performance on 27" 4k monitor was any different than on 42" 4k monitor. Maybe I'm not aware of some quirk?
At 42" 4k, there's probably no scaling, so more stuff fits on the screen.
Re: Show HN: React Spreadsheet 2
#114Is there some capable fully open source data grid providing spreadsheet functionality? Commercial / open-core are a no-go for me, since my goal is to integrate it into an open source project.
Re: Show HN: React Spreadsheet 2
#115Genuine question: Why would anyone purchase this for $299, without the ability to use it commercially? For open-source projects?
Re: Show HN: React Spreadsheet 2
#116I would say that the spreadsheet-like data view is a must-do in the career of the UI person. But then this all, without proper back-end wired to it, means very little to the overall product experience. In fact - proper back-end with not-so-cool UI may deliver quite the experience...
Re: Show HN: React Spreadsheet 2
#117Is there some capable fully open source data grid providing spreadsheet functionality? Commercial / open-core are a no-go for me, since my goal is to integrate it into an open source project.
I've used Slickgrid (open source, https://slickgrid.net/ ) with some success.
Re: Show HN: React Spreadsheet 2
#118Create your own Google sheets like Spreadsheet UI in your application using RowsnColumns Spreadsheet 2. Declaratively render cells, embed external content, use custom formulas, collaborate with other users all using composable ReactJS UI components. https://www.rowsncolumns.app/
Re: Show HN: React Spreadsheet 2
#119Create your own Google sheets like Spreadsheet UI in your application using RowsnColumns Spreadsheet 2. Declaratively render cells, embed external content, use custom formulas, collaborate with other users all using composable ReactJS UI components. https://www.rowsncolumns.app/
Curious: since you are rendering everything via canvas, how do you do accessibility?
We offer support for keyboard shortcuts and navigation, and our platform is natively compatible with both light and dark modes.
We also provide the option for developers to customise themes, ensuring optimal accessibility for users with low/tunnel vision.
Re: Show HN: React Spreadsheet 2
#120Earlier quoted context omitted.
I don't understand your comment. It's not far fetched to have millions of rows to handle. I myself have about 12 million rows (notes mainly), although I don't load everything at the same time, so maybe you're referring to that aspect?
It's pushing the boundaries of a spreadsheet's practical usability to be honest. I would not use it for more than a few hundred at most. In fact I just checked my largest sheet is 292 rows. Anything larger goes in anything else! Usually I use SQLite for local storage data like that now. A funny problem I had a few years back was a company with users keeping 200 meg+ Excels sheet on their desktops. It took them foreve…