Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Last active April 2, 2019 15:11
Show Gist options
  • Save krzysztofczernek/514847836e0e0cf6d632f4a5294515c4 to your computer and use it in GitHub Desktop.
Save krzysztofczernek/514847836e0e0cf6d632f4a5294515c4 to your computer and use it in GitHub Desktop.
const getApiURL = (apiHostname, resourceName, resourceId) => {
return `https://${apiHostname}/api/${resourceName}/${resourceId}`
}
const getResourceURL = (resourceName, resourceId) => {
return getApiURL('localhost:3000', resourceName, resourceId)
}
const getUserURL = userId => {
return getResourceURL('users', userId)
}
const getOrderURL = orderId => {
return getResourceURL('orders', orderId)
}
const getProductURL = productId => {
return getResourceURL('products', productId)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment