mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
Merge pull request #2419 from rschamp/admin-panel-only-admins
Fix admin panel visibility and style
This commit is contained in:
commit
c65ad06e91
3 changed files with 21 additions and 16 deletions
|
@ -110,6 +110,7 @@ const PreviewPresentation = ({
|
||||||
remixes,
|
remixes,
|
||||||
replies,
|
replies,
|
||||||
reportOpen,
|
reportOpen,
|
||||||
|
showAdminPanel,
|
||||||
showModInfo,
|
showModInfo,
|
||||||
singleCommentId,
|
singleCommentId,
|
||||||
userOwnsProject,
|
userOwnsProject,
|
||||||
|
@ -180,6 +181,7 @@ const PreviewPresentation = ({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="preview">
|
<div className="preview">
|
||||||
|
{showAdminPanel && (
|
||||||
<AdminPanel
|
<AdminPanel
|
||||||
className={classNames('project-admin-panel', {
|
className={classNames('project-admin-panel', {
|
||||||
'admin-panel-open': adminPanelOpen,
|
'admin-panel-open': adminPanelOpen,
|
||||||
|
@ -196,6 +198,7 @@ const PreviewPresentation = ({
|
||||||
src={`/scratch2/${projectId}/adminpanel/`}
|
src={`/scratch2/${projectId}/adminpanel/`}
|
||||||
/>
|
/>
|
||||||
</AdminPanel>
|
</AdminPanel>
|
||||||
|
)}
|
||||||
{ projectInfo && projectInfo.author && projectInfo.author.id && (
|
{ projectInfo && projectInfo.author && projectInfo.author.id && (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
{banner}
|
{banner}
|
||||||
|
@ -646,6 +649,7 @@ PreviewPresentation.propTypes = {
|
||||||
remixes: PropTypes.arrayOf(PropTypes.object),
|
remixes: PropTypes.arrayOf(PropTypes.object),
|
||||||
replies: PropTypes.objectOf(PropTypes.array),
|
replies: PropTypes.objectOf(PropTypes.array),
|
||||||
reportOpen: PropTypes.bool,
|
reportOpen: PropTypes.bool,
|
||||||
|
showAdminPanel: PropTypes.bool,
|
||||||
showModInfo: PropTypes.bool,
|
showModInfo: PropTypes.bool,
|
||||||
singleCommentId: PropTypes.oneOfType([PropTypes.number, PropTypes.bool]),
|
singleCommentId: PropTypes.oneOfType([PropTypes.number, PropTypes.bool]),
|
||||||
userOwnsProject: PropTypes.bool,
|
userOwnsProject: PropTypes.bool,
|
||||||
|
|
|
@ -43,7 +43,7 @@ $stage-width: 480px;
|
||||||
|
|
||||||
.project-admin-panel.admin-panel-open {
|
.project-admin-panel.admin-panel-open {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 237px;
|
width: 250px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.admin-iframe {
|
.admin-iframe {
|
||||||
|
@ -53,7 +53,7 @@ $stage-width: 480px;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
width: 237px;
|
width: 250px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -576,6 +576,7 @@ class Preview extends React.Component {
|
||||||
replies={this.props.replies}
|
replies={this.props.replies}
|
||||||
reportOpen={this.state.reportOpen}
|
reportOpen={this.state.reportOpen}
|
||||||
showModInfo={this.props.isAdmin}
|
showModInfo={this.props.isAdmin}
|
||||||
|
showAdminPanel={this.props.isAdmin}
|
||||||
singleCommentId={this.state.singleCommentId}
|
singleCommentId={this.state.singleCommentId}
|
||||||
userOwnsProject={this.props.userOwnsProject}
|
userOwnsProject={this.props.userOwnsProject}
|
||||||
visibilityInfo={this.props.visibilityInfo}
|
visibilityInfo={this.props.visibilityInfo}
|
||||||
|
|
Loading…
Reference in a new issue