-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed Edit Ability for Non-owned sketches #2904
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ import { CSSLint } from 'csslint'; | |
import { HTMLHint } from 'htmlhint'; | ||
import classNames from 'classnames'; | ||
import { debounce } from 'lodash'; | ||
import { connect } from 'react-redux'; | ||
import { connect, useSelector } from 'react-redux'; | ||
import { bindActionCreators } from 'redux'; | ||
import MediaQuery from 'react-responsive'; | ||
import '../../../../utils/htmlmixed'; | ||
|
@@ -505,7 +505,14 @@ class Editor extends React.Component { | |
const editorHolderClass = classNames({ | ||
'editor-holder': true, | ||
'editor-holder--hidden': | ||
this.props.file.fileType === 'folder' || this.props.file.url | ||
this.props.file.fileType === 'folder' || this.props.file.url, | ||
// eslint-disable-next-line no-dupe-keys | ||
'editor-holder--readonly': | ||
// Check if there is a project owner, the user has a username, | ||
// and the project owner's username is not the same as the user's username | ||
this.props.project.owner && this.props.user.username | ||
? this.props.project.owner?.username !== this.props.user.username | ||
: '' | ||
Comment on lines
+511
to
+515
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'll want to store the |
||
}); | ||
|
||
return ( | ||
|
@@ -567,6 +574,12 @@ class Editor extends React.Component { | |
</header> | ||
<section> | ||
<EditorHolder | ||
readOnly={ | ||
this.props.project.owner && | ||
this.props.user.username && | ||
this.props.project.owner.username !== | ||
this.props.user.username | ||
} | ||
ref={(element) => { | ||
this.codemirrorContainer = element; | ||
}} | ||
|
@@ -588,6 +601,10 @@ class Editor extends React.Component { | |
} | ||
|
||
Editor.propTypes = { | ||
// eslint-disable-next-line react/forbid-prop-types | ||
user: PropTypes.object.isRequired, | ||
// eslint-disable-next-line react/forbid-prop-types | ||
project: PropTypes.object.isRequired, | ||
Comment on lines
+604
to
+607
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO the better thing to do here would be to determine the |
||
autocloseBracketsQuotes: PropTypes.bool.isRequired, | ||
autocompleteHinter: PropTypes.bool.isRequired, | ||
lineNumbers: PropTypes.bool.isRequired, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,8 @@ import { setLanguage } from '../../actions/preferences'; | |
import Overlay from '../../../App/components/Overlay'; | ||
import ProjectName from './ProjectName'; | ||
import CollectionCreate from '../../../User/components/CollectionCreate'; | ||
import { cloneProject } from '../../actions/project'; | ||
import EditIcon from '../../../../images/pencil.svg'; | ||
|
||
const Nav = styled(NavBar)` | ||
background: ${prop('MobilePanel.default.background')}; | ||
|
@@ -67,15 +69,20 @@ const LogoContainer = styled.div` | |
|
||
const Title = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
gap: ${remSize(2)}; | ||
gap: ${remSize(10)}; | ||
|
||
* { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
> h5 { | ||
p { | ||
margin-left: 2px; | ||
padding: 3px 8px; | ||
} | ||
|
||
h5 { | ||
margin-top: 2px; | ||
font-size: ${remSize(13)}; | ||
font-weight: normal; | ||
} | ||
|
@@ -205,6 +212,8 @@ const MobileNav = () => { | |
const user = useSelector((state) => state.user); | ||
|
||
const { t } = useTranslation(); | ||
const theme = useSelector((state) => state.preferences.theme); | ||
console.log(theme); | ||
|
||
const editorLink = useSelector(selectSketchPath); | ||
const pageName = useWhatPage(); | ||
|
@@ -228,18 +237,43 @@ const MobileNav = () => { | |
} | ||
|
||
const title = useMemo(resolveTitle, [pageName, project.name]); | ||
|
||
const dispatch = useDispatch(); | ||
const Logo = AsteriskIcon; | ||
return ( | ||
<Nav> | ||
<LogoContainer> | ||
<Logo /> | ||
</LogoContainer> | ||
<Title> | ||
<h1>{title === project.name ? <ProjectName /> : title}</h1> | ||
{project?.owner && title === project.name && ( | ||
<h5>by {project?.owner?.username}</h5> | ||
)} | ||
<div> | ||
<h1>{title === project.name ? <ProjectName /> : title}</h1> | ||
{project?.owner && title === project.name && ( | ||
<h5>by {project?.owner?.username}</h5> | ||
)} | ||
</div> | ||
|
||
<div> | ||
{title === project.name && | ||
project.owner && | ||
user.username !== project.owner.username && ( | ||
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-noninteractive-element-interactions | ||
<p | ||
Comment on lines
+259
to
+260
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reason that you are getting all of these eslint errors is because you are using a |
||
className={`toolbar__duplicatetoedit ${ | ||
theme === 'contrast' ? 'contrast' : 'normal' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You shouldn't need to access the |
||
}`} | ||
onClick={() => dispatch(cloneProject())} | ||
> | ||
{t('Toolbar.DuplicateToEdit')}{' '} | ||
<EditIcon | ||
className={`toolbar__icon ${ | ||
theme === 'contrast' ? 'contrast' : 'normal' | ||
}`} | ||
focusable="false" | ||
aria-hidden="true" | ||
/> | ||
</p> | ||
)} | ||
</div> | ||
</Title> | ||
{/* check if the user is in login page */} | ||
{pageName === 'login' || pageName === 'signup' ? ( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,15 +20,18 @@ import PlayIcon from '../../../../images/play.svg'; | |
import StopIcon from '../../../../images/stop.svg'; | ||
import PreferencesIcon from '../../../../images/preferences.svg'; | ||
import ProjectName from './ProjectName'; | ||
import { cloneProject } from '../../actions/project'; | ||
import EditIcon from '../../../../images/pencil.svg'; | ||
|
||
const Toolbar = (props) => { | ||
const { isPlaying, infiniteLoop, preferencesIsVisible } = useSelector( | ||
(state) => state.ide | ||
); | ||
const user = useSelector((state) => state.user); | ||
const project = useSelector((state) => state.project); | ||
const theme = useSelector((state) => state.preferences.theme); | ||
const autorefresh = useSelector((state) => state.preferences.autorefresh); | ||
const dispatch = useDispatch(); | ||
|
||
const { t } = useTranslation(); | ||
|
||
const playButtonClass = classNames({ | ||
|
@@ -97,20 +100,40 @@ const Toolbar = (props) => { | |
</label> | ||
</div> | ||
<div className="toolbar__project-name-container"> | ||
<ProjectName /> | ||
{(() => { | ||
if (project.owner) { | ||
return ( | ||
<p className="toolbar__project-project.owner"> | ||
{t('Toolbar.By')}{' '} | ||
<Link to={`/${project.owner.username}/sketches`}> | ||
{project.owner.username} | ||
</Link> | ||
</p> | ||
); | ||
} | ||
return null; | ||
})()} | ||
<div className="toolbar__projectname"> | ||
<ProjectName /> | ||
{(() => { | ||
if (project.owner) { | ||
return ( | ||
<p className="toolbar__project-project.owner"> | ||
{t('Toolbar.By')}{' '} | ||
<Link to={`/${project.owner.username}/sketches`}> | ||
{project.owner.username} | ||
</Link> | ||
</p> | ||
); | ||
} | ||
return null; | ||
})()} | ||
</div> | ||
{project.owner && user.username !== project.owner.username && ( | ||
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-noninteractive-element-interactions | ||
<p | ||
Comment on lines
+120
to
+121
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This needs to be a |
||
className={`toolbar__duplicatetoedit ${ | ||
theme === 'contrast' ? 'contrast' : 'normal' | ||
}`} | ||
onClick={() => dispatch(cloneProject())} | ||
> | ||
{t('Toolbar.DuplicateToEdit')}{' '} | ||
<EditIcon | ||
className={`toolbar__icon ${ | ||
theme === 'contrast' ? 'contrast' : 'normal' | ||
}`} | ||
focusable="false" | ||
aria-hidden="true" | ||
/> | ||
</p> | ||
)} | ||
</div> | ||
<button | ||
className={preferencesButtonClass} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think there's any dupe keys? You can probably delete this
disable
.