2016-12-19 14:40:26 +00:00
|
|
|
import React, { Component, Children } from 'react'
|
|
|
|
import Router from './router'
|
2016-10-06 07:07:41 +00:00
|
|
|
|
|
|
|
export default class Link extends Component {
|
|
|
|
constructor (props) {
|
|
|
|
super(props)
|
|
|
|
this.linkClicked = this.linkClicked.bind(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
linkClicked (e) {
|
2016-10-17 00:00:17 +00:00
|
|
|
if (e.target.nodeName === 'A' &&
|
2016-12-15 04:33:02 +00:00
|
|
|
(e.metaKey || e.ctrlKey || e.shiftKey || (e.nativeEvent && e.nativeEvent.which === 2))) {
|
2016-10-06 07:07:41 +00:00
|
|
|
// ignore click for new tab / new window behavior
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-16 20:33:08 +00:00
|
|
|
const { href, scroll, as } = this.props
|
2016-10-06 07:07:41 +00:00
|
|
|
|
|
|
|
if (!isLocal(href)) {
|
|
|
|
// ignore click if it's outside our scope
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
2016-12-16 20:33:08 +00:00
|
|
|
const route = as ? href : null
|
|
|
|
const url = as || href
|
|
|
|
|
2016-10-06 07:07:41 +00:00
|
|
|
// straight up redirect
|
2016-12-19 14:40:26 +00:00
|
|
|
Router.push(route, url)
|
|
|
|
.then((success) => {
|
|
|
|
if (!success) return
|
|
|
|
if (scroll !== false) window.scrollTo(0, 0)
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
if (this.props.onError) this.props.onError(err)
|
|
|
|
})
|
2016-10-06 07:07:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const children = Children.map(this.props.children, (child) => {
|
|
|
|
const props = {
|
|
|
|
onClick: this.linkClicked
|
|
|
|
}
|
|
|
|
|
2016-10-17 00:00:17 +00:00
|
|
|
const isAnchor = child && child.type === 'a'
|
2016-10-06 07:07:41 +00:00
|
|
|
|
|
|
|
// if child does not specify a href, specify it
|
|
|
|
// so that repetition is not needed by the user
|
2016-10-08 05:12:51 +00:00
|
|
|
if (!isAnchor || !('href' in child.props)) {
|
2016-12-16 20:33:08 +00:00
|
|
|
props.href = this.props.as || this.props.href
|
2016-10-06 07:07:41 +00:00
|
|
|
}
|
|
|
|
|
2016-10-08 05:12:51 +00:00
|
|
|
if (isAnchor) {
|
2016-10-06 07:07:41 +00:00
|
|
|
return React.cloneElement(child, props)
|
|
|
|
} else {
|
|
|
|
return <a {...props}>{child}</a>
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return children[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-15 19:13:40 +00:00
|
|
|
export function isLocal (href) {
|
2016-10-17 00:00:17 +00:00
|
|
|
const origin = window.location.origin
|
2016-10-06 07:07:41 +00:00
|
|
|
return !/^https?:\/\//.test(href) ||
|
|
|
|
origin === href.substr(0, origin.length)
|
|
|
|
}
|