fix: remove useless prop on feature button and add refactor reminder
This commit is contained in:
parent
d6ce5370fd
commit
77858b55bc
2 changed files with 5 additions and 2 deletions
|
|
@ -14,6 +14,7 @@ const resolvers = {
|
||||||
},
|
},
|
||||||
Mutation: {
|
Mutation: {
|
||||||
setCustomer: (root, { customerId, customerInput }, context, info) => {
|
setCustomer: (root, { customerId, customerInput }, context, info) => {
|
||||||
|
// To be replaced by function that fetchs the token
|
||||||
const token = !!context.req.cookies.lamassu_sid && context.req.session.user.id
|
const token = !!context.req.cookies.lamassu_sid && context.req.session.user.id
|
||||||
if (customerId === anonymous.uuid) return customers.getCustomerById(customerId)
|
if (customerId === anonymous.uuid) return customers.getCustomerById(customerId)
|
||||||
return customers.updateCustomer(customerId, customerInput, token)
|
return customers.updateCustomer(customerId, customerInput, token)
|
||||||
|
|
@ -22,11 +23,13 @@ const resolvers = {
|
||||||
saveCustomField: (...[, { customerId, fieldId, newValue }]) => customers.saveCustomField(customerId, fieldId, newValue),
|
saveCustomField: (...[, { customerId, fieldId, newValue }]) => customers.saveCustomField(customerId, fieldId, newValue),
|
||||||
removeCustomField: (...[, [ { customerId, fieldId } ]]) => customers.removeCustomField(customerId, fieldId),
|
removeCustomField: (...[, [ { customerId, fieldId } ]]) => customers.removeCustomField(customerId, fieldId),
|
||||||
editCustomer: async (root, { customerId, customerEdit }, context) => {
|
editCustomer: async (root, { customerId, customerEdit }, context) => {
|
||||||
|
// To be replaced by function that fetchs the token
|
||||||
const token = !!context.req.cookies.lid && context.req.session.user.id
|
const token = !!context.req.cookies.lid && context.req.session.user.id
|
||||||
const editedData = await customerEdit
|
const editedData = await customerEdit
|
||||||
return customers.edit(customerId, editedData, token)
|
return customers.edit(customerId, editedData, token)
|
||||||
},
|
},
|
||||||
replacePhoto: async (root, { customerId, photoType, newPhoto }, context) => {
|
replacePhoto: async (root, { customerId, photoType, newPhoto }, context) => {
|
||||||
|
// To be replaced by function that fetchs the token
|
||||||
const token = !!context.req.cookies.lid && context.req.session.user.id
|
const token = !!context.req.cookies.lid && context.req.session.user.id
|
||||||
const photo = await newPhoto
|
const photo = await newPhoto
|
||||||
if (!photo) return customers.getCustomerById(customerId)
|
if (!photo) return customers.getCustomerById(customerId)
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@ const styles = {
|
||||||
const useStyles = makeStyles(styles)
|
const useStyles = makeStyles(styles)
|
||||||
|
|
||||||
const FeatureButton = memo(
|
const FeatureButton = memo(
|
||||||
({ className, Icon, InverseIcon, children, active, ...props }) => {
|
({ className, Icon, InverseIcon, children, ...props }) => {
|
||||||
const classes = useStyles({ active })
|
const classes = useStyles()
|
||||||
|
|
||||||
const classNames = {
|
const classNames = {
|
||||||
[classes.featureButton]: true,
|
[classes.featureButton]: true,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue