最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - react-sortable-hoc List disappears when I drag an element - Stack Overflow

programmeradmin0浏览0评论

JSFiddle: /

I googled some issues and the only disappearing related issues I found were when people used it on a modal and they talked about setting the z-index to fix it. i tried it anyway still nothing. How can I fix this?

import React from 'react';
import PlaylistPages from './PlaylistPages';

class PlaylistSortableComponent extends React.Component {
  constructor(props, context) {
    super(props, context);

    this.state = {
      test: [
        '1','2', '3', '4'
      ]
    }
  }

  render() {
    return (
      <PlaylistPages pages={this.state.test} style={{zIndex: 999999}} />
    );
  }
}   


const PlaylistPages = SortableContainer(({pages}) => {
  return (
    <div>
      {
        pages.map((page, index) =>
          <PlaylistPage key={index} page={page} style={{zIndex: 99999999}} />
      )}
    </div>
  );
});   

const PlaylistPage = SortableElement(({page}) => {
  return (
    <div style={{zIndex: 99999999}} >{page}</div>
  );
});

JSFiddle: https://jsfiddle/40vpaLj5/

I googled some issues and the only disappearing related issues I found were when people used it on a modal and they talked about setting the z-index to fix it. i tried it anyway still nothing. How can I fix this?

import React from 'react';
import PlaylistPages from './PlaylistPages';

class PlaylistSortableComponent extends React.Component {
  constructor(props, context) {
    super(props, context);

    this.state = {
      test: [
        '1','2', '3', '4'
      ]
    }
  }

  render() {
    return (
      <PlaylistPages pages={this.state.test} style={{zIndex: 999999}} />
    );
  }
}   


const PlaylistPages = SortableContainer(({pages}) => {
  return (
    <div>
      {
        pages.map((page, index) =>
          <PlaylistPage key={index} page={page} style={{zIndex: 99999999}} />
      )}
    </div>
  );
});   

const PlaylistPage = SortableElement(({page}) => {
  return (
    <div style={{zIndex: 99999999}} >{page}</div>
  );
});
Share Improve this question asked Aug 23, 2017 at 23:57 user1189352user1189352 3,88513 gold badges59 silver badges100 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 10

Every sortableElement should have it's own index prop:

<PlaylistPage key={index} index={index} page={page} style={{zIndex: 99999999}} />

Here is the update to your jsfiddle:
https://jsfiddle/40vpaLj5/1/

I had the same issue and Dekel is right. In my case the z-index fix the error:

<SortableList
    axis="y"
    helperClass="sortable-list-tab"
    lockAxis="y"
    distance={0}
    onSortEnd={onSortEnd}
>
    <ul>
       {toolItems.map((value, index) => (
          <SortableItem key={`item-${index}`} index={index}>
              <li className="sortable-list-tab" >
                 <Button type="dashed">{`${value.label} (${index + 1})`}</Button>
              </li>
          </SortableItem>
        ))}
    </ul>
</SortableList>

And the sortable-list-tab class look like:

.sortable-list-tab {
    cursor: default;
    visibility: visible;
    z-index: 99999999;
    list-style-type: none;
    padding: .3em;
  }

After setting the zIndex value. It has worked.MUI dialog has the zIndex of about 1300 so above it will work.

 dragged: {
zIndex: 999999,
boxShadow:
  "0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12)",
"& button": {
  opacity: 50
}

}

发布评论

评论列表(0)

  1. 暂无评论