Giter VIP home page Giter VIP logo

Comments (2)

alexeybondarenko avatar alexeybondarenko commented on July 19, 2024 1

Hi, Alex! It works fine with react-select, and I've already found an answer to my question) I will show you a code. It's not ideal, looks like a hack, but it allows us to fix the bug with scroll and other bugs of react-select.

It's the customization of SelectContainer component. Also you can that I'm controling the size of menu for bottom, top positioning.

import React from 'react';
import { components } from 'react-select';
import { compose, setDisplayName } from 'recompose';

import Popover from '@/components/Popover';

const isMenuChild = index => index === 2;
const SelectContainer = ({ children, ...rest }) => {
  const menu = children.filter((child, index) => isMenuChild(index));
  const restChildren = children.filter((child, index) => !isMenuChild(index));
  return (
    <Popover
      position={['bottom', 'top']}
      align={'left'}
      isOpen={rest.selectProps.menuIsOpen}
      onClickOutside={rest.selectProps.onBlur}
      content={({ position, targetRect }) => {
        const style = {};
        if (['top', 'bottom'].indexOf(position) > -1) {
          style.width = `${targetRect.width}px`;
        }

        return (
          <div style={style}>
            { menu }
          </div>
        );
      }}
    >
      <components.SelectContainer {...rest}>
        {restChildren}
      </components.SelectContainer>
    </Popover>
  );
};

export default compose(setDisplayName('SelectContainer'))(SelectContainer);

For this case, it would be nice to disable right and left positioning of the popover. But anyway, now it also works fine)

from react-tiny-popover.

alexkatz avatar alexkatz commented on July 19, 2024

from react-tiny-popover.

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.