blob: e8d995f1f902076cb1fdaac68025b5d1d39a7149 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
'use strict'
function getProto (Weex) {
const Component = Weex.Component
return {
create () {
const node = document.createElement('a')
node.classList.add('weex-container')
node.style.textDecoration = 'none'
return node
},
bindEvents (evts) {
// event handler for click event will be processed
// before the url redirection.
Component.prototype.bindEvents.call(this, evts)
this.node.addEventListener('click', function (evt) {
if (evt._alreadyFired && evt.target !== this.node) {
// if the event target is this.node, then this is
// just another click event handler for the same
// target, not a handler for a bubbling up event,
// otherwise it is a bubbling up event, and it
// should be disregarded.
return
}
evt._alreadyFired = true
location.href = this.href
}.bind(this))
}
}
}
const attr = {
href: function (val) {
if (!val) {
return console.warn('[web-render] href of <a> should not be a null value.')
}
this.href = val
this.node.setAttribute('data-href', val)
}
}
function init (Weex) {
const Component = Weex.Component
const extend = Weex.utils.extend
// attrs:
// - href
function A (data) {
Component.call(this, data)
}
A.prototype = Object.create(Component.prototype)
extend(A.prototype, getProto(Weex))
extend(A.prototype, { attr })
Weex.registerComponent('a', A)
}
export default { init }