import HTMLElement from '../html-element/HTMLElement.js';
import * as PropertySymbol from '../../PropertySymbol.js';

/**
 * HTML Base Element.
 *
 * Reference:
 * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base.
 */
export default class HTMLBaseElement extends HTMLElement {
	public cloneNode: (deep?: boolean) => HTMLBaseElement;
	/**
	 * Returns href.
	 *
	 * @returns Href.
	 */
	public get href(): string {
		const href = this.getAttribute('href');
		if (href !== null) {
			return href;
		}
		return this[PropertySymbol.ownerDocument].location.href;
	}

	/**
	 * Sets href.
	 *
	 * @param href Href.
	 */
	public set href(href: string) {
		this.setAttribute('href', href);
	}

	/**
	 * Returns target.
	 *
	 * @returns Target.
	 */
	public get target(): string {
		return this.getAttribute('target') || '';
	}

	/**
	 * Sets target.
	 *
	 * @param target Target.
	 */
	public set target(target: string) {
		this.setAttribute('target', target);
	}

	/**
	 * @override
	 */
	public override [PropertySymbol.cloneNode](deep = false): HTMLBaseElement {
		return <HTMLBaseElement>super[PropertySymbol.cloneNode](deep);
	}
}
