Giter VIP home page Giter VIP logo

react-vt-table's Issues

how to define VTList height dynamically

Hi, I was wondering what the right way / best way is to modify the height of a VTList dynamically. My situation is that I never want to show the overflow-y scrollbar. In my table, the user can specify how many items they would like to see per page: 10, 25, 50, 100 per page. So if I have 10 items per page and each item is 50px in height, I can set the table height to ~550px (adding 50px for the header row). But if the user changes the items per page to 100, I don't the overflow-y scrollbar to appear. Instead, I want to change the height of the table to 5050px, and send the user back to page 1 if they weren't on it already. Should I do it programatically through the

component settings -- or is that even possible?

rendering a custom row even if there are zero items to show

HI, I have a row of filters that I'm rendering immediately underneath the header row. It looks like this:

    if (index === 0) {
        return (
            <div
                {...{ style: { ...style, width: getRowWidth(), lineHeight: style.height + 'px' } }}
                className="CustomRow"
            >
              {filters.map( (filter, i) => {
                const filterProps = filter.props;
                const FilterComponent = filter.component;
                
                return (
                  <span {...{ style: { ...style, width: '100px', left: 100 * i + 'px', lineHeight: style.height + 'px' } }}>
                    <FilterComponent key={i} {...filter.props}>
                      {filter.props.children && filter.props.children}
                    </FilterComponent>
                  </span>
                )
                              
              })}
            </div>
        );
    }

The issue I have is that if I enter text into the filter that changes the number of items to render to 0, then the CustomRow I'm rendering also disappears. I'd like for that CustomRow to always stay put, even when there are no results to render. Is this possible?

'Immutable' as a dependency

Not sure why it didn't install it when I installed the react-vt-table component, but 'Immutable' added as a dev dependency of this library. Or at least mentioned in the README.

Running react-vt-table on Reacat 17.x

Running react-tv-table on react 17.x throws the following warnings an errors:

Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move data fetching code or side effects to componentDidUpdate.
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: Draggable
Warning: componentWillUpdate has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move data fetching code or side effects to componentDidUpdate.
* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: Table
Warning: findDOMNode is deprecated in StrictMode. findDOMNode was passed an instance of Draggable which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node
div
DraggableCore@http://localhost:3000/static/js/bundle.js:199250:21
Draggable@http://localhost:3000/static/js/bundle.js:199628:21
ColumnResizer@http://localhost:3000/static/js/bundle.js:689849:35
div
div
Header@http://localhost:3000/static/js/bundle.js:689896:29
div
Table@http://localhost:3000/static/js/bundle.js:690228:30
div
AutoSizer@http://localhost:3000/static/js/bundle.js:689630:19
__WEBPACK_DEFAULT_EXPORT__@http://localhost:3000/static/js/bundle.js:22831:7
div
TryOut
Route@http://localhost:3000/static/js/bundle.js:682879:29
div
div
MainContent@http://localhost:3000/static/js/bundle.js:976:7
AppBox
Route@http://localhost:3000/static/js/bundle.js:682879:29
PrivateRoute@http://localhost:3000/static/js/bundle.js:1229:7
Switch@http://localhost:3000/static/js/bundle.js:683081:29
Router@http://localhost:3000/static/js/bundle.js:682510:30
BrowserRouter@http://localhost:3000/static/js/bundle.js:682132:35
App@http://localhost:3000/static/js/bundle.js:350:7
ConnectFunction@http://localhost:3000/static/js/bundle.js:678800:68
ConfirmProvider@http://localhost:3000/static/js/bundle.js:161744:18
InnerThemeProvider@http://localhost:3000/static/js/bundle.js:69986:70
ThemeProvider@http://localhost:3000/static/js/bundle.js:68831:7
ThemeProvider@http://localhost:3000/static/js/bundle.js:70008:7
StyledEngineProvider@http://localhost:3000/static/js/bundle.js:69016:7
Provider@http://localhost:3000/static/js/bundle.js:678512:15

Is there any chance of getting rid of this? Thanks, and the library is great :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.