Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101034360
Slide.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 5, 00:57
Size
12 KB
Mime Type
text/x-java
Expires
Fri, Feb 7, 00:57 (2 d)
Engine
blob
Format
Raw Data
Handle
24078468
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Slide.js
View Options
import
_extends
from
"@babel/runtime/helpers/esm/extends"
;
import
_objectWithoutProperties
from
"@babel/runtime/helpers/esm/objectWithoutProperties"
;
import
*
as
React
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
{
Transition
}
from
'react-transition-group'
;
import
{
elementAcceptingRef
,
HTMLElementType
,
chainPropTypes
}
from
'@mui/utils'
;
import
debounce
from
'../utils/debounce'
;
import
useForkRef
from
'../utils/useForkRef'
;
import
useTheme
from
'../styles/useTheme'
;
import
{
reflow
,
getTransitionProps
}
from
'../transitions/utils'
;
import
{
ownerWindow
}
from
'../utils'
;
// Translate the node so it can't be seen on the screen.
// Later, we're going to translate the node back to its original location with `none`.
import
{
jsx
as
_jsx
}
from
"react/jsx-runtime"
;
function
getTranslateValue
(
direction
,
node
,
resolvedContainer
)
{
var
rect
=
node
.
getBoundingClientRect
();
var
containerRect
=
resolvedContainer
&&
resolvedContainer
.
getBoundingClientRect
();
var
containerWindow
=
ownerWindow
(
node
);
var
transform
;
if
(
node
.
fakeTransform
)
{
transform
=
node
.
fakeTransform
;
}
else
{
var
computedStyle
=
containerWindow
.
getComputedStyle
(
node
);
transform
=
computedStyle
.
getPropertyValue
(
'-webkit-transform'
)
||
computedStyle
.
getPropertyValue
(
'transform'
);
}
var
offsetX
=
0
;
var
offsetY
=
0
;
if
(
transform
&&
transform
!==
'none'
&&
typeof
transform
===
'string'
)
{
var
transformValues
=
transform
.
split
(
'('
)[
1
].
split
(
')'
)[
0
].
split
(
','
);
offsetX
=
parseInt
(
transformValues
[
4
],
10
);
offsetY
=
parseInt
(
transformValues
[
5
],
10
);
}
if
(
direction
===
'left'
)
{
if
(
containerRect
)
{
return
"translateX("
.
concat
(
containerRect
.
right
+
offsetX
-
rect
.
left
,
"px)"
);
}
return
"translateX("
.
concat
(
containerWindow
.
innerWidth
+
offsetX
-
rect
.
left
,
"px)"
);
}
if
(
direction
===
'right'
)
{
if
(
containerRect
)
{
return
"translateX(-"
.
concat
(
rect
.
right
-
containerRect
.
left
-
offsetX
,
"px)"
);
}
return
"translateX(-"
.
concat
(
rect
.
left
+
rect
.
width
-
offsetX
,
"px)"
);
}
if
(
direction
===
'up'
)
{
if
(
containerRect
)
{
return
"translateY("
.
concat
(
containerRect
.
bottom
+
offsetY
-
rect
.
top
,
"px)"
);
}
return
"translateY("
.
concat
(
containerWindow
.
innerHeight
+
offsetY
-
rect
.
top
,
"px)"
);
}
// direction === 'down'
if
(
containerRect
)
{
return
"translateY(-"
.
concat
(
rect
.
top
-
containerRect
.
top
+
rect
.
height
-
offsetY
,
"px)"
);
}
return
"translateY(-"
.
concat
(
rect
.
top
+
rect
.
height
-
offsetY
,
"px)"
);
}
function
resolveContainer
(
containerPropProp
)
{
return
typeof
containerPropProp
===
'function'
?
containerPropProp
()
:
containerPropProp
;
}
export
function
setTranslateValue
(
direction
,
node
,
containerProp
)
{
var
resolvedContainer
=
resolveContainer
(
containerProp
);
var
transform
=
getTranslateValue
(
direction
,
node
,
resolvedContainer
);
if
(
transform
)
{
node
.
style
.
webkitTransform
=
transform
;
node
.
style
.
transform
=
transform
;
}
}
/**
* The Slide transition is used by the [Drawer](/material-ui/react-drawer/) component.
* It uses [react-transition-group](https://github.com/reactjs/react-transition-group) internally.
*/
var
Slide
=
/*#__PURE__*/
React
.
forwardRef
(
function
Slide
(
props
,
ref
)
{
var
theme
=
useTheme
();
var
defaultEasing
=
{
enter
:
theme
.
transitions
.
easing
.
easeOut
,
exit
:
theme
.
transitions
.
easing
.
sharp
};
var
defaultTimeout
=
{
enter
:
theme
.
transitions
.
duration
.
enteringScreen
,
exit
:
theme
.
transitions
.
duration
.
leavingScreen
};
var
addEndListener
=
props
.
addEndListener
,
_props$appear
=
props
.
appear
,
appear
=
_props$appear
===
void
0
?
true
:
_props$appear
,
_children
=
props
.
children
,
containerProp
=
props
.
container
,
_props$direction
=
props
.
direction
,
direction
=
_props$direction
===
void
0
?
'down'
:
_props$direction
,
_props$easing
=
props
.
easing
,
easingProp
=
_props$easing
===
void
0
?
defaultEasing
:
_props$easing
,
inProp
=
props
.
in
,
onEnter
=
props
.
onEnter
,
onEntered
=
props
.
onEntered
,
onEntering
=
props
.
onEntering
,
onExit
=
props
.
onExit
,
onExited
=
props
.
onExited
,
onExiting
=
props
.
onExiting
,
style
=
props
.
style
,
_props$timeout
=
props
.
timeout
,
timeout
=
_props$timeout
===
void
0
?
defaultTimeout
:
_props$timeout
,
_props$TransitionComp
=
props
.
TransitionComponent
,
TransitionComponent
=
_props$TransitionComp
===
void
0
?
Transition
:
_props$TransitionComp
,
other
=
_objectWithoutProperties
(
props
,
[
"addEndListener"
,
"appear"
,
"children"
,
"container"
,
"direction"
,
"easing"
,
"in"
,
"onEnter"
,
"onEntered"
,
"onEntering"
,
"onExit"
,
"onExited"
,
"onExiting"
,
"style"
,
"timeout"
,
"TransitionComponent"
]);
var
childrenRef
=
React
.
useRef
(
null
);
var
handleRef
=
useForkRef
(
_children
.
ref
,
childrenRef
,
ref
);
var
normalizedTransitionCallback
=
function
normalizedTransitionCallback
(
callback
)
{
return
function
(
isAppearing
)
{
if
(
callback
)
{
// onEnterXxx and onExitXxx callbacks have a different arguments.length value.
if
(
isAppearing
===
undefined
)
{
callback
(
childrenRef
.
current
);
}
else
{
callback
(
childrenRef
.
current
,
isAppearing
);
}
}
};
};
var
handleEnter
=
normalizedTransitionCallback
(
function
(
node
,
isAppearing
)
{
setTranslateValue
(
direction
,
node
,
containerProp
);
reflow
(
node
);
if
(
onEnter
)
{
onEnter
(
node
,
isAppearing
);
}
});
var
handleEntering
=
normalizedTransitionCallback
(
function
(
node
,
isAppearing
)
{
var
transitionProps
=
getTransitionProps
({
timeout
:
timeout
,
style
:
style
,
easing
:
easingProp
},
{
mode
:
'enter'
});
node
.
style
.
webkitTransition
=
theme
.
transitions
.
create
(
'-webkit-transform'
,
_extends
({},
transitionProps
));
node
.
style
.
transition
=
theme
.
transitions
.
create
(
'transform'
,
_extends
({},
transitionProps
));
node
.
style
.
webkitTransform
=
'none'
;
node
.
style
.
transform
=
'none'
;
if
(
onEntering
)
{
onEntering
(
node
,
isAppearing
);
}
});
var
handleEntered
=
normalizedTransitionCallback
(
onEntered
);
var
handleExiting
=
normalizedTransitionCallback
(
onExiting
);
var
handleExit
=
normalizedTransitionCallback
(
function
(
node
)
{
var
transitionProps
=
getTransitionProps
({
timeout
:
timeout
,
style
:
style
,
easing
:
easingProp
},
{
mode
:
'exit'
});
node
.
style
.
webkitTransition
=
theme
.
transitions
.
create
(
'-webkit-transform'
,
transitionProps
);
node
.
style
.
transition
=
theme
.
transitions
.
create
(
'transform'
,
transitionProps
);
setTranslateValue
(
direction
,
node
,
containerProp
);
if
(
onExit
)
{
onExit
(
node
);
}
});
var
handleExited
=
normalizedTransitionCallback
(
function
(
node
)
{
// No need for transitions when the component is hidden
node
.
style
.
webkitTransition
=
''
;
node
.
style
.
transition
=
''
;
if
(
onExited
)
{
onExited
(
node
);
}
});
var
handleAddEndListener
=
function
handleAddEndListener
(
next
)
{
if
(
addEndListener
)
{
// Old call signature before `react-transition-group` implemented `nodeRef`
addEndListener
(
childrenRef
.
current
,
next
);
}
};
var
updatePosition
=
React
.
useCallback
(
function
()
{
if
(
childrenRef
.
current
)
{
setTranslateValue
(
direction
,
childrenRef
.
current
,
containerProp
);
}
},
[
direction
,
containerProp
]);
React
.
useEffect
(
function
()
{
// Skip configuration where the position is screen size invariant.
if
(
inProp
||
direction
===
'down'
||
direction
===
'right'
)
{
return
undefined
;
}
var
handleResize
=
debounce
(
function
()
{
if
(
childrenRef
.
current
)
{
setTranslateValue
(
direction
,
childrenRef
.
current
,
containerProp
);
}
});
var
containerWindow
=
ownerWindow
(
childrenRef
.
current
);
containerWindow
.
addEventListener
(
'resize'
,
handleResize
);
return
function
()
{
handleResize
.
clear
();
containerWindow
.
removeEventListener
(
'resize'
,
handleResize
);
};
},
[
direction
,
inProp
,
containerProp
]);
React
.
useEffect
(
function
()
{
if
(
!
inProp
)
{
// We need to update the position of the drawer when the direction change and
// when it's hidden.
updatePosition
();
}
},
[
inProp
,
updatePosition
]);
return
/*#__PURE__*/
_jsx
(
TransitionComponent
,
_extends
({
nodeRef
:
childrenRef
,
onEnter
:
handleEnter
,
onEntered
:
handleEntered
,
onEntering
:
handleEntering
,
onExit
:
handleExit
,
onExited
:
handleExited
,
onExiting
:
handleExiting
,
addEndListener
:
handleAddEndListener
,
appear
:
appear
,
in
:
inProp
,
timeout
:
timeout
},
other
,
{
children
:
function
children
(
state
,
childProps
)
{
return
/*#__PURE__*/
React
.
cloneElement
(
_children
,
_extends
({
ref
:
handleRef
,
style
:
_extends
({
visibility
:
state
===
'exited'
&&
!
inProp
?
'hidden'
:
undefined
},
style
,
_children
.
props
.
style
)
},
childProps
));
}
}));
});
process
.
env
.
NODE_ENV
!==
"production"
?
Slide
.
propTypes
/* remove-proptypes */
=
{
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the d.ts file and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* Add a custom transition end trigger. Called with the transitioning DOM
* node and a done callback. Allows for more fine grained transition end
* logic. Note: Timeouts are still used as a fallback if provided.
*/
addEndListener
:
PropTypes
.
func
,
/**
* Perform the enter transition when it first mounts if `in` is also `true`.
* Set this to `false` to disable this behavior.
* @default true
*/
appear
:
PropTypes
.
bool
,
/**
* A single child content element.
*/
children
:
elementAcceptingRef
.
isRequired
,
/**
* An HTML element, or a function that returns one.
* It's used to set the container the Slide is transitioning from.
*/
container
:
chainPropTypes
(
PropTypes
.
oneOfType
([
HTMLElementType
,
PropTypes
.
func
]),
function
(
props
)
{
if
(
props
.
open
)
{
var
resolvedContainer
=
resolveContainer
(
props
.
container
);
if
(
resolvedContainer
&&
resolvedContainer
.
nodeType
===
1
)
{
var
box
=
resolvedContainer
.
getBoundingClientRect
();
if
(
process
.
env
.
NODE_ENV
!==
'test'
&&
box
.
top
===
0
&&
box
.
left
===
0
&&
box
.
right
===
0
&&
box
.
bottom
===
0
)
{
return
new
Error
([
'MUI: The `container` prop provided to the component is invalid.'
,
'The anchor element should be part of the document layout.'
,
"Make sure the element is present in the document or that it's not display none."
].
join
(
'\n'
));
}
}
else
if
(
!
resolvedContainer
||
typeof
resolvedContainer
.
getBoundingClientRect
!==
'function'
||
resolvedContainer
.
contextElement
!=
null
&&
resolvedContainer
.
contextElement
.
nodeType
!==
1
)
{
return
new
Error
([
'MUI: The `container` prop provided to the component is invalid.'
,
'It should be an HTML element instance.'
].
join
(
'\n'
));
}
}
return
null
;
}),
/**
* Direction the child node will enter from.
* @default 'down'
*/
direction
:
PropTypes
.
oneOf
([
'down'
,
'left'
,
'right'
,
'up'
]),
/**
* The transition timing function.
* You may specify a single easing or a object containing enter and exit values.
* @default {
* enter: theme.transitions.easing.easeOut,
* exit: theme.transitions.easing.sharp,
* }
*/
easing
:
PropTypes
.
oneOfType
([
PropTypes
.
shape
({
enter
:
PropTypes
.
string
,
exit
:
PropTypes
.
string
}),
PropTypes
.
string
]),
/**
* If `true`, the component will transition in.
*/
in
:
PropTypes
.
bool
,
/**
* @ignore
*/
onEnter
:
PropTypes
.
func
,
/**
* @ignore
*/
onEntered
:
PropTypes
.
func
,
/**
* @ignore
*/
onEntering
:
PropTypes
.
func
,
/**
* @ignore
*/
onExit
:
PropTypes
.
func
,
/**
* @ignore
*/
onExited
:
PropTypes
.
func
,
/**
* @ignore
*/
onExiting
:
PropTypes
.
func
,
/**
* @ignore
*/
style
:
PropTypes
.
object
,
/**
* The duration for the transition, in milliseconds.
* You may specify a single timeout for all transitions, or individually with an object.
* @default {
* enter: theme.transitions.duration.enteringScreen,
* exit: theme.transitions.duration.leavingScreen,
* }
*/
timeout
:
PropTypes
.
oneOfType
([
PropTypes
.
number
,
PropTypes
.
shape
({
appear
:
PropTypes
.
number
,
enter
:
PropTypes
.
number
,
exit
:
PropTypes
.
number
})])
}
:
void
0
;
export
default
Slide
;
Event Timeline
Log In to Comment