GithubHelp home page GithubHelp logo

Comments (10)

souporserious avatar souporserious commented on July 27, 2024 1

Working on this first 😁 I think it will help with other updates moving forward.

from downshift.

erikfox avatar erikfox commented on July 27, 2024 1

For the size of the package it's probably not a priority or performance-relevant.

Have mostly noticed the pattern in much larger utility-kit packages, like d3 or lodash.

from downshift.

souporserious avatar souporserious commented on July 27, 2024 1

Done with #22 🎉

from downshift.

kentcdodds avatar kentcdodds commented on July 27, 2024

I've thought about it. Open a PR and we'll see what it looks like. Thanks!

from downshift.

erikfox avatar erikfox commented on July 27, 2024

+1

I think this is always a good idea.

Unless I'm mistaken, this would require importing the full module before destructuring the desired export:

import { SpecificExport } from 'some-package';

whereas this only imports the specific module (if it is available as a unique file):

import SpecificExport from 'package/SpecificExport';

As the library grows, this could help users to not bloat their bundle sizes.

(Basing above knowledge on having read it a few times: https://hackernoon.com/optimising-your-application-bundle-size-with-webpack-e85b00bab579. Not 100% sure of actually under-the-hood process.)

from downshift.

souporserious avatar souporserious commented on July 27, 2024

This only exports one component for right now, but after this is done, it could open up the possibility of using components like Menu and Item regardless of the Autocomplete component.

from downshift.

kentcdodds avatar kentcdodds commented on July 27, 2024

Thanks for the input @erikfox.

As the library grows, this could help users to not bloat their bundle sizes.

I really don't expect the library to grow much more than it is currently. Maybe only in ways that are desireable (like for accessibility). I don't think that you'd ever want to just import some of the components and not others, so that's not something that we'll be working on.

from downshift.

erikfox avatar erikfox commented on July 27, 2024

@souporserious What about using Autocomplete without Menu or Item? I think every component should have its own file, and index.js should be nothing but this:

import Autocomplete from './Autocomplete'
import Menu from './Menu'
import Item from './Item'
// ...etc

module.exports = {
  Autocomplete,
  Menu,
  Item,
  // ...etc
}

// or export default with other exports

from downshift.

erikfox avatar erikfox commented on July 27, 2024

@kentcdodds Understood. 👍 I'm behind sticking to that intended use case. Just wanted to raise the option if it hadn't been previously considered.

from downshift.

kentcdodds avatar kentcdodds commented on July 27, 2024

Thanks. I've considered making each component individually importable, but I personally prefer referencing things as Autocomplete.Menu rather than simply Menu... But open to enabling the individual import as well..

from downshift.

Related Issues (20)

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.