forked from mikhama/core-js-101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06-objects-tasks.js
149 lines (132 loc) · 4.2 KB
/
06-objects-tasks.js
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* ************************************************************************************************
* *
* Plese read the following tutorial before implementing tasks: *
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer *
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object *
* *
************************************************************************************************ */
/**
* Returns the rectagle object with width and height parameters and getArea() method
*
* @param {number} width
* @param {number} height
* @return {Object}
*
* @example
* const r = new Rectangle(10,20);
* console.log(r.width); // => 10
* console.log(r.height); // => 20
* console.log(r.getArea()); // => 200
*/
function Rectangle(/* width, height */) {
throw new Error('Not implemented');
}
/**
* Returns the JSON representation of specified object
*
* @param {object} obj
* @return {string}
*
* @example
* [1,2,3] => '[1,2,3]'
* { width: 10, height : 20 } => '{"height":10,"width":20}'
*/
function getJSON(/* obj */) {
throw new Error('Not implemented');
}
/**
* Returns the object of specified type from JSON representation
*
* @param {Object} proto
* @param {string} json
* @return {object}
*
* @example
* const r = fromJSON(Circle.prototype, '{"radius":10}');
*
*/
function fromJSON(/* proto, json */) {
throw new Error('Not implemented');
}
/**
* Css selectors builder
*
* Each complex selector can consists of type, id, class, attribute, pseudo-class
* and pseudo-element selectors:
*
* element#id.class[attr]:pseudoClass::pseudoElement
* \----/\----/\----------/
* Can be several occurences
*
* All types of selectors can be combined using the combinators ' ','+','~','>' .
*
* The task is to design a single class, independent classes or classes hierarchy
* and implement the functionality to build the css selectors using the provided cssSelectorBuilder.
* Each selector should have the stringify() method to output the string repsentation
* according to css specification.
*
* Provided cssSelectorBuilder should be used as facade only to create your own classes,
* for example the first method of cssSelectorBuilder can be like this:
* element: function(value) {
* return new MySuperBaseElementSelector(...)...
* },
*
* The design of class(es) is totally up to you, but try to make it as simple,
* clear and readable as possible.
*
* @example
*
* const builder = cssSelectorBuilder;
*
* builder.id('main').class('container').class('editable').stringify()
* => '#main.container.editable'
*
* builder.element('a').attr('href$=".png"').pseudoClass('focus').stringify()
* => 'a[href$=".png"]:focus'
*
* builder.combine(
* builder.element('div').id('main').class('container').class('draggable'),
* '+',
* builder.combine(
* builder.element('table').id('data'),
* '~',
* builder.combine(
* builder.element('tr').pseudoClass('nth-of-type(even)'),
* ' ',
* builder.element('td').pseudoClass('nth-of-type(even)')
* )
* )
* ).stringify()
* => 'div#main.container.draggable + table#data ~ tr:nth-of-type(even) td:nth-of-type(even)'
*
* For more examples see unit tests.
*/
const cssSelectorBuilder = {
element(/* value */) {
throw new Error('Not implemented');
},
id(/* value */) {
throw new Error('Not implemented');
},
class(/* value */) {
throw new Error('Not implemented');
},
attr(/* value */) {
throw new Error('Not implemented');
},
pseudoClass(/* value */) {
throw new Error('Not implemented');
},
pseudoElement(/* value */) {
throw new Error('Not implemented');
},
combine(/* selector1, combinator, selector2 */) {
throw new Error('Not implemented');
},
};
module.exports = {
Rectangle,
getJSON,
fromJSON,
cssSelectorBuilder,
};