Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100238905
AppBar.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, Jan 29, 06:52
Size
7 KB
Mime Type
text/x-java
Expires
Fri, Jan 31, 06:52 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23888495
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
AppBar.js
View Options
import
_objectWithoutProperties
from
"@babel/runtime/helpers/esm/objectWithoutProperties"
;
import
_extends
from
"@babel/runtime/helpers/esm/extends"
;
import
*
as
React
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
clsx
from
'clsx'
;
import
{
unstable_composeClasses
as
composeClasses
}
from
'@mui/base'
;
import
styled
from
'../styles/styled'
;
import
useThemeProps
from
'../styles/useThemeProps'
;
import
capitalize
from
'../utils/capitalize'
;
import
Paper
from
'../Paper'
;
import
{
getAppBarUtilityClass
}
from
'./appBarClasses'
;
import
{
jsx
as
_jsx
}
from
"react/jsx-runtime"
;
var
useUtilityClasses
=
function
useUtilityClasses
(
ownerState
)
{
var
color
=
ownerState
.
color
,
position
=
ownerState
.
position
,
classes
=
ownerState
.
classes
;
var
slots
=
{
root
:
[
'root'
,
"color"
.
concat
(
capitalize
(
color
)),
"position"
.
concat
(
capitalize
(
position
))]
};
return
composeClasses
(
slots
,
getAppBarUtilityClass
,
classes
);
};
// var2 is the fallback.
// Ex. var1: 'var(--a)', var2: 'var(--b)'; return: 'var(--a, var(--b))'
var
joinVars
=
function
joinVars
(
var1
,
var2
)
{
return
""
.
concat
(
var1
==
null
?
void
0
:
var1
.
replace
(
')'
,
''
),
", "
).
concat
(
var2
,
")"
);
};
var
AppBarRoot
=
styled
(
Paper
,
{
name
:
'MuiAppBar'
,
slot
:
'Root'
,
overridesResolver
:
function
overridesResolver
(
props
,
styles
)
{
var
ownerState
=
props
.
ownerState
;
return
[
styles
.
root
,
styles
[
"position"
.
concat
(
capitalize
(
ownerState
.
position
))],
styles
[
"color"
.
concat
(
capitalize
(
ownerState
.
color
))]];
}
})(
function
(
_ref
)
{
var
theme
=
_ref
.
theme
,
ownerState
=
_ref
.
ownerState
;
var
backgroundColorDefault
=
theme
.
palette
.
mode
===
'light'
?
theme
.
palette
.
grey
[
100
]
:
theme
.
palette
.
grey
[
900
];
return
_extends
({
display
:
'flex'
,
flexDirection
:
'column'
,
width
:
'100%'
,
boxSizing
:
'border-box'
,
// Prevent padding issue with the Modal and fixed positioned AppBar.
flexShrink
:
0
},
ownerState
.
position
===
'fixed'
&&
{
position
:
'fixed'
,
zIndex
:
(
theme
.
vars
||
theme
).
zIndex
.
appBar
,
top
:
0
,
left
:
'auto'
,
right
:
0
,
'@media print'
:
{
// Prevent the app bar to be visible on each printed page.
position
:
'absolute'
}
},
ownerState
.
position
===
'absolute'
&&
{
position
:
'absolute'
,
zIndex
:
(
theme
.
vars
||
theme
).
zIndex
.
appBar
,
top
:
0
,
left
:
'auto'
,
right
:
0
},
ownerState
.
position
===
'sticky'
&&
{
// ⚠️ sticky is not supported by IE11.
position
:
'sticky'
,
zIndex
:
(
theme
.
vars
||
theme
).
zIndex
.
appBar
,
top
:
0
,
left
:
'auto'
,
right
:
0
},
ownerState
.
position
===
'static'
&&
{
position
:
'static'
},
ownerState
.
position
===
'relative'
&&
{
position
:
'relative'
},
!
theme
.
vars
&&
_extends
({},
ownerState
.
color
===
'default'
&&
{
backgroundColor
:
backgroundColorDefault
,
color
:
theme
.
palette
.
getContrastText
(
backgroundColorDefault
)
},
ownerState
.
color
&&
ownerState
.
color
!==
'default'
&&
ownerState
.
color
!==
'inherit'
&&
ownerState
.
color
!==
'transparent'
&&
{
backgroundColor
:
theme
.
palette
[
ownerState
.
color
].
main
,
color
:
theme
.
palette
[
ownerState
.
color
].
contrastText
},
ownerState
.
color
===
'inherit'
&&
{
color
:
'inherit'
},
theme
.
palette
.
mode
===
'dark'
&&
!
ownerState
.
enableColorOnDark
&&
{
backgroundColor
:
null
,
color
:
null
},
ownerState
.
color
===
'transparent'
&&
_extends
({
backgroundColor
:
'transparent'
,
color
:
'inherit'
},
theme
.
palette
.
mode
===
'dark'
&&
{
backgroundImage
:
'none'
})),
theme
.
vars
&&
_extends
({},
ownerState
.
color
===
'default'
&&
{
'--AppBar-background'
:
ownerState
.
enableColorOnDark
?
theme
.
vars
.
palette
.
AppBar
.
defaultBg
:
joinVars
(
theme
.
vars
.
palette
.
AppBar
.
darkBg
,
theme
.
vars
.
palette
.
AppBar
.
defaultBg
),
'--AppBar-color'
:
ownerState
.
enableColorOnDark
?
theme
.
vars
.
palette
.
text
.
primary
:
joinVars
(
theme
.
vars
.
palette
.
AppBar
.
darkColor
,
theme
.
vars
.
palette
.
text
.
primary
)
},
ownerState
.
color
&&
!
ownerState
.
color
.
match
(
/^(default|inherit|transparent)$/
)
&&
{
'--AppBar-background'
:
ownerState
.
enableColorOnDark
?
theme
.
vars
.
palette
[
ownerState
.
color
].
main
:
joinVars
(
theme
.
vars
.
palette
.
AppBar
.
darkBg
,
theme
.
vars
.
palette
[
ownerState
.
color
].
main
),
'--AppBar-color'
:
ownerState
.
enableColorOnDark
?
theme
.
vars
.
palette
[
ownerState
.
color
].
contrastText
:
joinVars
(
theme
.
vars
.
palette
.
AppBar
.
darkColor
,
theme
.
vars
.
palette
[
ownerState
.
color
].
contrastText
)
},
{
backgroundColor
:
'var(--AppBar-background)'
,
color
:
ownerState
.
color
===
'inherit'
?
'inherit'
:
'var(--AppBar-color)'
},
ownerState
.
color
===
'transparent'
&&
{
backgroundImage
:
'none'
,
backgroundColor
:
'transparent'
,
color
:
'inherit'
}));
});
var
AppBar
=
/*#__PURE__*/
React
.
forwardRef
(
function
AppBar
(
inProps
,
ref
)
{
var
props
=
useThemeProps
({
props
:
inProps
,
name
:
'MuiAppBar'
});
var
className
=
props
.
className
,
_props$color
=
props
.
color
,
color
=
_props$color
===
void
0
?
'primary'
:
_props$color
,
_props$enableColorOnD
=
props
.
enableColorOnDark
,
enableColorOnDark
=
_props$enableColorOnD
===
void
0
?
false
:
_props$enableColorOnD
,
_props$position
=
props
.
position
,
position
=
_props$position
===
void
0
?
'fixed'
:
_props$position
,
other
=
_objectWithoutProperties
(
props
,
[
"className"
,
"color"
,
"enableColorOnDark"
,
"position"
]);
var
ownerState
=
_extends
({},
props
,
{
color
:
color
,
position
:
position
,
enableColorOnDark
:
enableColorOnDark
});
var
classes
=
useUtilityClasses
(
ownerState
);
return
/*#__PURE__*/
_jsx
(
AppBarRoot
,
_extends
({
square
:
true
,
component
:
"header"
,
ownerState
:
ownerState
,
elevation
:
4
,
className
:
clsx
(
classes
.
root
,
className
,
position
===
'fixed'
&&
'mui-fixed'
),
ref
:
ref
},
other
));
});
process
.
env
.
NODE_ENV
!==
"production"
?
AppBar
.
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" |
// ----------------------------------------------------------------------
/**
* The content of the component.
*/
children
:
PropTypes
.
node
,
/**
* Override or extend the styles applied to the component.
*/
classes
:
PropTypes
.
object
,
/**
* @ignore
*/
className
:
PropTypes
.
string
,
/**
* The color of the component.
* It supports both default and custom theme colors, which can be added as shown in the
* [palette customization guide](https://mui.com/material-ui/customization/palette/#adding-new-colors).
* @default 'primary'
*/
color
:
PropTypes
/* @typescript-to-proptypes-ignore */
.
oneOfType
([
PropTypes
.
oneOf
([
'default'
,
'inherit'
,
'primary'
,
'secondary'
,
'transparent'
]),
PropTypes
.
string
]),
/**
* If true, the `color` prop is applied in dark mode.
* @default false
*/
enableColorOnDark
:
PropTypes
.
bool
,
/**
* The positioning type. The behavior of the different options is described
* [in the MDN web docs](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Positioning).
* Note: `sticky` is not universally supported and will fall back to `static` when unavailable.
* @default 'fixed'
*/
position
:
PropTypes
.
oneOf
([
'absolute'
,
'fixed'
,
'relative'
,
'static'
,
'sticky'
]),
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx
:
PropTypes
.
oneOfType
([
PropTypes
.
arrayOf
(
PropTypes
.
oneOfType
([
PropTypes
.
func
,
PropTypes
.
object
,
PropTypes
.
bool
])),
PropTypes
.
func
,
PropTypes
.
object
])
}
:
void
0
;
export
default
AppBar
;
Event Timeline
Log In to Comment