happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
101 lines (92 loc) • 2.38 kB
text/typescript
import * as PropertySymbol from '../PropertySymbol.js';
import SVGRect from './SVGRect.js';
import BrowserWindow from '../window/BrowserWindow.js';
/**
* SVG Animated Number.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimatedRect
*/
export default class SVGAnimatedRect {
// Internal properties
public [PropertySymbol.window]: BrowserWindow;
public [PropertySymbol.getAttribute]: () => string;
public [PropertySymbol.setAttribute]: (value: string) => void;
public [PropertySymbol.baseVal]: SVGRect | null = null;
public [PropertySymbol.animVal]: SVGRect | null = null;
/**
* Constructor.
*
* @param illegalConstructorSymbol Illegal constructor symbol.
* @param window Window.
* @param options Options.
* @param options.getAttribute Get attribute.
* @param options.setAttribute Set attribute.
*/
constructor(
illegalConstructorSymbol: symbol,
window: BrowserWindow,
options: {
getAttribute: () => string | null;
setAttribute: (value: string) => void;
}
) {
if (illegalConstructorSymbol !== PropertySymbol.illegalConstructor) {
throw new TypeError('Illegal constructor');
}
this[PropertySymbol.window] = window;
this[PropertySymbol.getAttribute] = options.getAttribute;
this[PropertySymbol.setAttribute] = options.setAttribute;
}
/**
* Returns animated value.
*
* @returns Animated value.
*/
public get animVal(): SVGRect {
if (!this[PropertySymbol.animVal]) {
this[PropertySymbol.animVal] = new SVGRect(
PropertySymbol.illegalConstructor,
this[PropertySymbol.window],
{
readOnly: true,
getAttribute: this[PropertySymbol.getAttribute]
}
);
}
return this[PropertySymbol.animVal];
}
/**
* Returns animated value.
*
* @param value Animated value.
*/
public set animVal(_value) {
// Do nothing
}
/**
* Returns base value.
*
* @returns Base value.
*/
public get baseVal(): SVGRect {
if (!this[PropertySymbol.baseVal]) {
this[PropertySymbol.baseVal] = new SVGRect(
PropertySymbol.illegalConstructor,
this[PropertySymbol.window],
{
getAttribute: this[PropertySymbol.getAttribute],
setAttribute: this[PropertySymbol.setAttribute]
}
);
}
return this[PropertySymbol.baseVal];
}
/**
* Returns base value.
*
* @param value Base value.
*/
public set baseVal(_value) {
// Do nothing
}
}