summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataValue.quantity.js
blob: 36ca803403092be2f9a5e94fdf5e6f705aa4258f (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/**
 * SMW Quantity DataValue JavaScript representation
 *
 * @see  SMW\DINumber
 *
 * @since 1.9
 *
 * @file
 * @ingroup SMW
 *
 * @licence GNU GPL v2 or later
 * @author mwjames
 */
( function( $, mw, smw ) {
	'use strict';

	/**
	 * Inheritance class for the smw.dataValue constructor
	 *
	 * @since 1.9
	 *
	 * @class
	 * @abstract
	 */
	smw.dataValue = smw.dataValue || {};

	/**
	 * Number constructor
	 *
	 * @since  1.9
	 *
	 * @param {number}
	 * @param {string}
	 * @param {number}
	 * @return {this}
	 */
	var quantity = function ( value, unit, accuracy ) {
		this.value = value !== '' ? value : null;
		this.unit = unit !== '' ? unit : null;
		this.accuracy = accuracy !== '' ? accuracy : null;

		return this;
	};

	/**
	 * Class constructor
	 *
	 * @since 1.9
	 *
	 * @class
	 * @constructor
	 * @extends smw.dataValue
	 */
	smw.dataValue.quantity = function( value, unit, accuracy ) {
		if ( $.type( value ) === 'number' ) {
			this.constructor( value, unit, accuracy );
		} else {
			throw new Error( 'smw.dataValue.quantity: invoked value must be a number but is of type ' + $.type( value ) );
		}
	};

	/* Public methods */

	smw.dataValue.quantity.prototype = {

		constructor: quantity,

		/**
		 * Returns type
		 *
		 * @since  1.9
		 *
		 * @return {string}
		 */
		getDIType: function() {
			return '_qty';
		},

		/**
		 * Returns value
		 *
		 * @since  1.9
		 *
		 * @return {number}
		 */
		getValue: function() {
			return this.value;
		},

		/**
		 * Returns unit
		 *
		 * @since  1.9
		 *
		 * @return {string}
		 */
		getUnit: function() {
			return this.unit;
		},

		/**
		 * Returns accuracy
		 *
		 * @since  1.9
		 *
		 * @return {number}
		 */
		getAccuracy: function() {
			return this.accuracy;
		}

	};

	// Alias

} )( jQuery, mediaWiki, semanticMediaWiki );