Skip to content

Commit eab45e2

Browse files
committedJan 14, 2014
Add localstorage implementation
1 parent 3c7dca1 commit eab45e2

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* Add `Event` methods: `prevented?`, `prevent`, `stopped?` and `stop` to
66
replace longer javascript names.
77

8+
* Add `LocalStorage` implementation.
9+
810
## 0.1.2 2013-12-01
911

1012
* Support setting html content through `Element#html()`.

‎opal/opal-jquery/local_storage.rb

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module DOM
2+
class LocalStorage
3+
def initialize(storage)
4+
@storage = storage
5+
end
6+
7+
def []=(key, value)
8+
`#@storage.setItem(key, value)`
9+
end
10+
11+
def [](key)
12+
%x{
13+
var value = #@storage.getItem(key);
14+
return value == null ? nil : value;
15+
}
16+
end
17+
18+
def delete(key)
19+
`#@storage.removeItem(key)`
20+
end
21+
22+
def clear
23+
`#@storage.clear()`
24+
end
25+
end
26+
end
27+
28+
LocalStorage = DOM::LocalStorage.new(`window.localStorage`)

‎spec/local_storage_spec.rb

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
require 'spec_helper'
2+
require 'opal-jquery/local_storage'
3+
4+
describe LocalStorage do
5+
before { subject.clear }
6+
7+
it "returns nil for undefined values" do
8+
expect(subject['foo']).to be_nil
9+
end
10+
11+
it "should be able to create items" do
12+
subject['foo'] = 'Ford Prefect'
13+
expect(subject['foo']).to eq('Ford Prefect')
14+
end
15+
16+
it "should be able to delete items" do
17+
subject['name'] = 'Arthur'
18+
subject.delete 'name'
19+
20+
expect(subject['name']).to be_nil
21+
end
22+
end

0 commit comments

Comments
 (0)
Please sign in to comment.