summaryrefslogtreecommitdiffstats
path: root/src/A.js
blob: 5bd1719910619afe39be0bae93dd577561316424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import Container from './Container.js'
import { nodeOrNew } from './tools.js'
import { xlink } from './namespaces.js'
import { register } from './adopter.js'
import { registerMethods } from './methods.js'

export default class A extends Container {
  constructor (node) {
    super(nodeOrNew('a', node), A)
  }

  // Link url
  to (url) {
    return this.attr('href', url, xlink)
  }

  // Link target attribute
  target (target) {
    return this.attr('target', target)
  }
}

registerMethods({
  Container: {
    // Create a hyperlink element
    link: function (url) {
      return this.put(new A()).to(url)
    }
  },
  Element: {
    // Create a hyperlink element
    linkTo: function (url) {
      var link = new A()

      if (typeof url === 'function') { url.call(link, link) } else {
        link.to(url)
      }

      return this.parent().put(link).put(this)
    }
  }
})

register(A)