Skip to content

Commit 41c13fd

Browse files
committedJan 14, 2014
Fix some Date methods
1 parent c289399 commit 41c13fd

File tree

3 files changed

+66
-36
lines changed

3 files changed

+66
-36
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@
113113
* Move `Math` and `Encoding` to stdlib. Can be required using
114114
`require 'math'`, etc.
115115

116+
* Fix some stdlib `Date` methods.
117+
116118
## 0.5.5 2013-11-25
117119

118120
* Fix regression: add `%i[foo bar]` style words back to lexer

‎spec/opal/rubyspecs

+5
Original file line numberDiff line numberDiff line change
@@ -277,3 +277,8 @@ library/pathname/new_spec
277277
library/pathname/equal_value_spec
278278
library/pathname/absolute_spec
279279
library/pathname/relative_spec
280+
281+
library/date/add_spec
282+
library/date/eql_spec
283+
library/date/minus_spec
284+
library/date/plus_spec

‎stdlib/date.rb

+59-36
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,58 @@
1-
native_date = `Date`
2-
31
class Date
4-
def self.wrap(native)
5-
instance = allocate
6-
`#{instance}._date = #{native}`
7-
instance
8-
end
2+
class << self
3+
alias civil new
94

10-
def self.parse(string)
11-
wrap `native_date.parse(string)`
12-
end
5+
def wrap(native)
6+
instance = allocate
7+
`#{instance}.date = #{native}`
8+
instance
9+
end
1310

14-
def self.today
15-
%x{
16-
var date = #{new};
17-
date._date = new native_date();
18-
return date;
19-
}
11+
def parse(string)
12+
wrap `Date.parse(string)`
13+
end
14+
15+
def today
16+
wrap `new Date()`
17+
end
2018
end
2119

2220
def initialize(year = undefined, month = undefined, day = undefined)
23-
`#{self}._date = new native_date(year, month - 1, day)`
21+
@date = `new Date(year, month - 1, day)`
2422
end
2523

2624
def -(date)
27-
`Math.round((#{self}._date - #{date}._date) / (1000 * 60 * 60 * 24))`
25+
%x{
26+
if (date._isNumber) {
27+
var result = #{clone};
28+
result.date.setDate(#@date.getDate() - date);
29+
return result;
30+
}
31+
else if (date.date) {
32+
return Math.round((#@date - #{date}.date) / (1000 * 60 * 60 * 24));
33+
}
34+
else {
35+
#{raise TypeError};
36+
}
37+
}
38+
end
39+
40+
def +(date)
41+
%x{
42+
if (date._isNumber) {
43+
var result = #{clone};
44+
result.date.setDate(#@date.getDate() + date);
45+
return result;
46+
}
47+
else {
48+
#{raise TypeError};
49+
}
50+
}
2851
end
2952

3053
def <(other)
3154
%x{
32-
var a = #{self}._date, b = #{other}._date;
55+
var a = #@date, b = #{other}.date;
3356
a.setHours(0, 0, 0, 0);
3457
b.setHours(0, 0, 0, 0);
3558
return a < b;
@@ -38,7 +61,7 @@ def <(other)
3861

3962
def <=(other)
4063
%x{
41-
var a = #{self}._date, b = #{other}._date;
64+
var a = #@date, b = #{other}.date;
4265
a.setHours(0, 0, 0, 0);
4366
b.setHours(0, 0, 0, 0);
4467
return a <= b;
@@ -47,7 +70,7 @@ def <=(other)
4770

4871
def >(other)
4972
%x{
50-
var a = #{self}._date, b = #{other}._date;
73+
var a = #@date, b = #{other}.date;
5174
a.setHours(0, 0, 0, 0);
5275
b.setHours(0, 0, 0, 0);
5376
return a > b;
@@ -56,7 +79,7 @@ def >(other)
5679

5780
def >=(other)
5881
%x{
59-
var a = #{self}._date, b = #{other}._date;
82+
var a = #@date, b = #{other}.date;
6083
a.setHours(0, 0, 0, 0);
6184
b.setHours(0, 0, 0, 0);
6285
return a >= b;
@@ -65,56 +88,56 @@ def >=(other)
6588

6689
def ==(other)
6790
%x{
68-
var a = #{self}._date, b = #{other}._date;
69-
a.setHours(0, 0, 0, 0);
70-
b.setHours(0, 0, 0, 0);
91+
var a = #@date, b = other.date;
7192
return (a.getFullYear() === b.getFullYear() && a.getMonth() === b.getMonth() && a.getDate() === b.getDate());
7293
}
7394
end
7495

96+
alias eql? ==
97+
7598
def clone
76-
Date.wrap(`new native_date(#{self}._date.getTime())`)
99+
Date.wrap(`new Date(#@date.getTime())`)
77100
end
78101

79102
def day
80-
`#{self}._date.getDate()`
103+
`#@date.getDate()`
81104
end
82105

83106
def month
84-
`#{self}._date.getMonth() + 1`
107+
`#@date.getMonth() + 1`
85108
end
86109

87110
def next
88111
res = self.clone
89-
`res._date.setDate(#{self}._date.getDate() + 1)`
112+
`res.date.setDate(#@date.getDate() + 1)`
90113
res
91114
end
92115

93116
def next_month
94117
res = self.clone
95-
`res._date.add({months: 1})`
118+
`res.date.add({months: 1})`
96119
res
97120
end
98121

99122
def prev
100123
res = self.clone
101-
`res._date.setDate(#{self}._date.getDate() - 1)`
124+
`res.date.setDate(#@date.getDate() - 1)`
102125
res
103126
end
104127

105128
def prev_month
106129
res = self.clone
107-
`res._date.add({months: -1})`
130+
`res.date.add({months: -1})`
108131
res
109132
end
110133

111134
def strftime(format = '')
112-
`#{self}._date.$strftime(#{format})`
135+
`#@date.$strftime(#{format})`
113136
end
114137

115138
def to_s
116139
%x{
117-
var date = #{self}._date;
140+
var date = #@date;
118141
return date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate();
119142
}
120143
end
@@ -128,10 +151,10 @@ def as_json
128151
end
129152

130153
def wday
131-
`#{self}._date.getDay()`
154+
`#@date.getDay()`
132155
end
133156

134157
def year
135-
`#{self}._date.getFullYear()`
158+
`#@date.getFullYear()`
136159
end
137160
end

0 commit comments

Comments
 (0)
Please sign in to comment.