mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-11 16:00:17 -07:00
ENH: model info display UI
Change-Id: I066c0e7f8ce87ec00b1141a1b44430444a819b42 (cherry picked from commit 05907a1a42da82737090d55046974d401f8af057)
This commit is contained in:
parent
0cc953ad41
commit
b4ffa91cb4
343 changed files with 54828 additions and 2 deletions
46
resources/web/include/swiper/react/get-children.js
Normal file
46
resources/web/include/swiper/react/get-children.js
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
import React from 'react';
|
||||
|
||||
function processChildren(c) {
|
||||
const slides = [];
|
||||
React.Children.toArray(c).forEach(child => {
|
||||
if (child.type && child.type.displayName === 'SwiperSlide') {
|
||||
slides.push(child);
|
||||
} else if (child.props && child.props.children) {
|
||||
processChildren(child.props.children).forEach(slide => slides.push(slide));
|
||||
}
|
||||
});
|
||||
return slides;
|
||||
}
|
||||
|
||||
function getChildren(c) {
|
||||
const slides = [];
|
||||
const slots = {
|
||||
'container-start': [],
|
||||
'container-end': [],
|
||||
'wrapper-start': [],
|
||||
'wrapper-end': []
|
||||
};
|
||||
React.Children.toArray(c).forEach(child => {
|
||||
if (child.type && child.type.displayName === 'SwiperSlide') {
|
||||
slides.push(child);
|
||||
} else if (child.props && child.props.slot && slots[child.props.slot]) {
|
||||
slots[child.props.slot].push(child);
|
||||
} else if (child.props && child.props.children) {
|
||||
const foundSlides = processChildren(child.props.children);
|
||||
|
||||
if (foundSlides.length > 0) {
|
||||
foundSlides.forEach(slide => slides.push(slide));
|
||||
} else {
|
||||
slots['container-end'].push(child);
|
||||
}
|
||||
} else {
|
||||
slots['container-end'].push(child);
|
||||
}
|
||||
});
|
||||
return {
|
||||
slides,
|
||||
slots
|
||||
};
|
||||
}
|
||||
|
||||
export { getChildren };
|
||||
Loading…
Add table
Add a link
Reference in a new issue