View Tabular Data on Flow Screen
A table viewer node which can preview the data in a tabular fasion.
This project is inspired by following two projects.
Input
An arry of arrays, for exampe:
let data = [
["id","Stock","Price"],
[0, "TSLA", 222.22],
[0, "AAPL", 144.44]];
or array of objects, such as returned from database directly.
let data = [
{"id": 0,"Stock":"TSLA","Price":222.22},
{"id": 2,"Stock":"AAPL","Price":144.44}];
On flow editor, user can taggle the active button. If active is on, it will show a table under the node.
User can adjust the width and height of the table size. And also can scroll up-down or left-right if the table size is larger than the area.