Skip to content
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

Spelling fix #353

Merged
merged 2 commits into from
Aug 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions eda-frontend/src/components/SchematicEditor/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function Header (props) {
dispatch(setSchTitle(`${e.target.value}`))
}

// handel notification snackbar open and close with message
// handle notification snackbar open and close with message
const [snacOpen, setSnacOpen] = React.useState(false)
const [message, setMessage] = React.useState('')

Expand All @@ -176,7 +176,7 @@ function Header (props) {
setSnacOpen(false)
}

// handel schematic Share Dialog box
// handle schematic Share Dialog box
const [openShare, setShareOpen] = React.useState(false)

const handleShareOpen = () => {
Expand Down Expand Up @@ -219,7 +219,7 @@ function Header (props) {
}
}

// handel display format of last saved status
// handle display format of last saved status
function getDate (jsonDate) {
const json = jsonDate
const date = new Date(json)
Expand All @@ -228,7 +228,7 @@ function Header (props) {
return `${day} ${month} ${hour}:${minute}:${second}`
}

// handel Copy Share Url
// handle Copy Share Url
const textAreaRef = React.useRef(null)

function copyToClipboard (e) {
Expand Down
22 changes: 11 additions & 11 deletions eda-frontend/src/components/SchematicEditor/SchematicToolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,13 +324,13 @@ export default function SchematicToolbar ({ mobileClose, gridRef, ltiSimResult,
setHelpOpen(false)
}

// Handel Delete component
// handle Delete component
const handleDeleteComp = () => {
DeleteComp()
dispatch(closeCompProperties())
}

// Handel Notification Snackbar
// handle Notification Snackbar
const [snacOpen, setSnacOpen] = React.useState(false)
const [message, setMessage] = React.useState('')

Expand Down Expand Up @@ -466,8 +466,8 @@ export default function SchematicToolbar ({ mobileClose, gridRef, ltiSimResult,
}
}

// Handel Save Schematic onCloud
const handelSchSave = () => {
// handle Save Schematic onCloud
const handleSchSave = () => {
if (auth.isAuthenticated !== true) {
setMessage('You are not Logged In')
handleSnacClick()
Expand Down Expand Up @@ -503,7 +503,7 @@ export default function SchematicToolbar ({ mobileClose, gridRef, ltiSimResult,
}

// Save Schematics Locally
const handelLocalSchSave = () => {
const handleLocalSchSave = () => {
const saveLocalData = {}
saveLocalData.data_dump = Save()
saveLocalData.title = schSave.title
Expand All @@ -524,7 +524,7 @@ export default function SchematicToolbar ({ mobileClose, gridRef, ltiSimResult,
}

// Open Locally Saved Schematic
const handelLocalSchOpen = () => {
const handleLocalSchOpen = () => {
let obj = {}
const fileSelector = document.createElement('input')
fileSelector.setAttribute('type', 'file')
Expand Down Expand Up @@ -600,7 +600,7 @@ export default function SchematicToolbar ({ mobileClose, gridRef, ltiSimResult,
// Save - Ctrl + S
if (event.ctrlKey && event.keyCode === 83) {
event.preventDefault()
handelSchSave()
handleSchSave()
}
// Print - Ctrl + P
if (event.ctrlKey && event.keyCode === 80) {
Expand All @@ -618,7 +618,7 @@ export default function SchematicToolbar ({ mobileClose, gridRef, ltiSimResult,
if (event.shiftKey) {
handleImgClickOpen()
} else {
handelLocalSchSave()
handleLocalSchSave()
}
}
}
Expand Down Expand Up @@ -656,16 +656,16 @@ export default function SchematicToolbar ({ mobileClose, gridRef, ltiSimResult,
<OpenInBrowserIcon fontSize="small" />
</IconButton>
</Tooltip>
<OpenSchDialog open={schOpen} close={handleSchDialClose} openLocal={handelLocalSchOpen} openKicad={handleKicadFileUpload} />
<OpenSchDialog open={schOpen} close={handleSchDialClose} openLocal={handleLocalSchOpen} openKicad={handleKicadFileUpload}/>
<Tooltip title="Save (Ctrl + S)">
<IconButton color="inherit" className={classes.tools} size="small" onClick={handelSchSave} >
<IconButton color="inherit" className={classes.tools} size="small" onClick={handleSchSave} >
<SaveOutlinedIcon fontSize="small" />
</IconButton>
</Tooltip>
<SimpleSnackbar open={snacOpen} close={handleSnacClose} message={message} />
<span className={classes.pipe}>|</span>
<Tooltip title="Export (Ctrl + E)">
<IconButton color="inherit" className={classes.tools} size="small" onClick={handelLocalSchSave}>
<IconButton color="inherit" className={classes.tools} size="small" onClick={handleLocalSchSave}>
<SystemUpdateAltOutlinedIcon fontSize="small" />
</IconButton>
</Tooltip>
Expand Down
2 changes: 1 addition & 1 deletion eda-frontend/src/pages/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default function SignIn (props) {
onClick={handleClickShowPassword}
onMouseDown={handleMouseDownPassword}
>
{showPassword ? <Visibility fontSize="small" /> : <VisibilityOff fontSize="small" />} {/* Handel password visibility */}
{showPassword ? <Visibility fontSize="small" /> : <VisibilityOff fontSize="small" />} {/* handle password visibility */}
</IconButton>
</Tooltip>
</InputAdornment>
Expand Down
6 changes: 3 additions & 3 deletions eda-frontend/src/pages/signUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function SignUp () {
const handleMouseDownPassword = () => setShowPassword(!showPassword)

// Function call for google oAuth sign up.
const handelGoogleSignup = () => {
const handleGoogleSignup = () => {
var host = window.location.protocol + '//' + window.location.host
dispatch(googleLogin(host))
}
Expand Down Expand Up @@ -146,7 +146,7 @@ export default function SignUp () {
onClick={handleClickShowPassword}
onMouseDown={handleMouseDownPassword}
>
{showPassword ? <Visibility fontSize="small" /> : <VisibilityOff fontSize="small" />} {/* Handel password visibility */}
{showPassword ? <Visibility fontSize="small" /> : <VisibilityOff fontSize="small" />} {/* handle password visibility */}
</IconButton>
</InputAdornment>
)
Expand Down Expand Up @@ -178,7 +178,7 @@ export default function SignUp () {
fullWidth
variant="outlined"
color="primary"
onClick={handelGoogleSignup}
onClick={handleGoogleSignup}
className={classes.submit}
>
<img alt="G" src={google} height="20" />&emsp; Sign Up With Google
Expand Down
8 changes: 4 additions & 4 deletions eda-frontend/src/redux/actions/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ export const TOGGLE_COLLAPSE = 'TOGGLE_COLLAPSE'
export const FETCH_COMPONENTS = 'FETCH_COMPONENTS'
export const TOGGLE_SIMULATE = 'TOGGLE_SIMULATE'

// Actions for handeling component properties
// Actions for handleing component properties
export const GET_COMP_PROPERTIES = 'GET_COMP_PROPERTIES'
export const SET_COMP_PROPERTIES = 'SET_COMP_PROPERTIES'
export const CLOSE_COMP_PROPERTIES = 'CLOSE_COMP_PROPERTIES'
export const CLOSE_COMP_PROPERTIES_TEMP = 'CLOSE_COMP_PROPERTIES_TEMP'

// Actions for handeling and generating netlist
// Actions for handleing and generating netlist
export const SET_NETLIST = 'SET_NETLIST'
export const SET_TITLE = 'SET_TITLE'
export const SET_MODEL = 'SET_MODEL'
export const SET_CONTROL_LINE = 'SET_CONTROL_LINE'
export const SET_CONTROL_BLOCK = 'SET_CONTROL_BLOCK'

// Actions for handeling simualtion result display
// Actions for handleing simualtion result display
export const SET_RESULT_TITLE = 'SET_RESULT_TITLE'
export const SET_RESULT_GRAPH = 'SET_RESULT_GRAPH'
export const SET_RESULT_TEXT = 'SET_RESULT_TEXT'

// Actions for handeling user authentication and registeration
// Actions for handleing user authentication and registeration
export const USER_LOADING = 'USER_LOADING'
export const USER_LOADED = 'USER_LOADED'
export const LOGIN_SUCCESSFUL = 'LOGIN_SUCCESSFUL'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const setCompProperties = (id, compProperties) => (dispatch) => {
})
}

// Handeling hiding of component properties sidebar
// handleing hiding of component properties sidebar
export const closeCompProperties = () => (dispatch) => {
dispatch({
type: actions.CLOSE_COMP_PROPERTIES
Expand Down