isomorfeus-preact 10.6.15 → 10.6.19

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 477ee7e9d7f1af01eb798486973807f63b32a8db1fee61c5559c12b3490409f1
4
- data.tar.gz: 0ff4bd0ef757956daf3c6ded9e527a49ad6bfc4edc7a9f943fc86b8fa4eddc06
3
+ metadata.gz: dcabd6672c23dfd3a4eaf10b565b032522c1f0d352778e2d92366a24061b8d97
4
+ data.tar.gz: 0bb1045aa576165352bf122f510eb3e94cffa6ea277008ab3a0c835502331e88
5
5
  SHA512:
6
- metadata.gz: c795d9dbbdccc8c968c20bd494ef1eeac0f73b0ecc0850a4ea76d1c8e4b45221f7c8fbb1c574c088a99060702ee3a56602847bdf4b5b44fdc21f49765753394b
7
- data.tar.gz: a7727b43a807a03fd55e58c647741f8c42e6f007eb1a7123a982e59c9fdfbe2780ea0870cf083226c923a54240c33c8c7b8b7e05585a5b1377991801df056840
6
+ metadata.gz: 2c478adf7ffcfab21bb7ba74ca6c109bdb4ec257ba830ba7bafbd91b1f12e2e50b427cf57dfd78b50570ca788630e539e1203ada466af987dcc23e5caf0aa9e9
7
+ data.tar.gz: eb945769548e040115bca58246c94625dec9bb68e585bc1fd9268ebcc58c26d6894a72816d4d4ceea751e881a7933418bca067c867ea4e8ff92c342adffb30a5
@@ -16,55 +16,47 @@ module Browser
16
16
  # function, that function is invoked with `args`. Otherwise, the property
17
17
  # is returned as is.
18
18
  def method_missing message, *args, &block
19
- property_name = property_for_message(message)
20
- property = `#@native[#{property_name}]`
21
-
22
- # translate setting a property
23
19
  if message.end_with? '='
20
+ message = message.chop
21
+ property_name = property_for_message(message)
24
22
  return `#@native[#{property_name}] = args[0]`
25
- end
26
-
27
- # If the native element doesn't have this property, bubble it up
28
- super unless `#{property_name} in #@native`
29
-
30
- if `property === false`
31
- return false
32
- elsif `typeof(property) === 'number' && isNaN(property)`
33
- return nil
34
23
  else
35
- property = `property == null ? nil : property`
36
- end
37
-
38
- # If it's a method, call it. Otherwise, return it.
39
- if `typeof(property) === 'function'`
40
- `property.apply(#@native, args)`
41
- else
42
- property
24
+ property_name = property_for_message(message)
25
+
26
+ %x{
27
+ let value = #@native[#{property_name}];
28
+ let type = typeof(value);
29
+ if (type === 'function') {
30
+ return value.apply(#@native, args);
31
+ } else if (value === null || type === 'undefined' || (type === 'number' && isNaN(value))) {
32
+ return nil;
33
+ }
34
+ return value;
35
+ }
43
36
  end
44
37
  end
45
38
 
46
39
  def respond_to_missing? message, include_all
47
- return true if message.end_with? '='
48
- return true if property_for_message(message)
49
-
40
+ message = message.chop if message.end_with? '='
41
+ property_name = property_for_message(message)
42
+ return true unless `#{property_name} in #@native`
50
43
  false
51
44
  end
52
45
 
53
- def property_for_message message
54
- camel_cased_message = message
55
- .gsub(/_\w/) { |match| `match[1]`.upcase }
56
- .sub(/=$/, '')
57
-
58
- # translate `supported?` to `supported` or `isSupported`
59
- if message.end_with? '?'
60
- camel_cased_message = camel_cased_message.chop
61
- property_type = `typeof(#@native[camel_cased_message])`
62
- if property_type == 'undefined'
63
- camel_cased_message = "is#{camel_cased_message[0].upcase}#{camel_cased_message[1..-1]}"
64
- end
65
- end
66
-
67
- camel_cased_message
46
+ def property_for_message(message)
47
+ %x{
48
+ let camel_cased_message;
49
+ if (typeof(#@native[message]) !== 'undefined') { camel_cased_message = message; }
50
+ else { camel_cased_message = Opal.Preact.lower_camelize(message) }
51
+
52
+ if (camel_cased_message.endsWith('?')) {
53
+ camel_cased_message = camel_cased_message.substring(0, camel_cased_message.length - 2);
54
+ if (typeof(#@native[camel_cased_message]) === 'undefined') {
55
+ camel_cased_message = 'is' + camel_cased_message[0].toUpperCase() + camel_cased_message.substring(0, camel_cased_message.length - 1);
56
+ }
57
+ }
58
+ return camel_cased_message
59
+ }
68
60
  end
69
61
  end
70
62
  end
@@ -7,7 +7,7 @@ if RUBY_ENGINE == 'opal'
7
7
  require 'browser/event'
8
8
  require 'browser/event_target'
9
9
  require 'browser/delegate_native'
10
- require 'browser/element'
10
+ require 'browser/element' # depends on 'preact'
11
11
  end
12
12
 
13
13
  require 'isomorfeus/preact/config'
@@ -31,6 +31,7 @@ if RUBY_ENGINE == 'opal'
31
31
  require 'isomorfeus/props/validate_hash_proxy'
32
32
  require 'isomorfeus/props/validator'
33
33
  require 'lucid_prop_declaration/mixin'
34
+ require 'preact/params'
34
35
  require 'preact/props'
35
36
 
36
37
  # HTML Elements and Fragment support
@@ -46,7 +47,6 @@ if RUBY_ENGINE == 'opal'
46
47
  require 'preact/component/initializer'
47
48
  require 'preact/component/native_component_constructor'
48
49
  require 'preact/state'
49
- require 'preact/component/params'
50
50
  require 'preact/component/resolution'
51
51
  require 'preact/component/mixin'
52
52
  require 'preact/component/base'
@@ -4,8 +4,6 @@ module LucidComponent
4
4
  @native = native_component
5
5
  @app_store = LucidComponent::AppStoreProxy.new(self)
6
6
  @class_store = LucidComponent::ClassStoreProxy.new(self.class.to_s, self, @native)
7
- # @iso_store = Isomorfeus::IsomorphicStoreProxy.new(self)
8
- # @local_store = Isomorfeus::LocalStoreProxy.new(self)
9
7
  @store = LucidComponent::InstanceStoreProxy.new(self)
10
8
  @props = `Opal.Preact.Props.$new(#@native)`
11
9
  @state = `Opal.Preact.State.$new(#@native)`
@@ -113,7 +113,7 @@ module Preact
113
113
 
114
114
  def ruby_ref(name)
115
115
  return `#@native[name]` if `(typeof #@native[name] === 'function')`
116
- Preact::Ref::new(`#@native[name]`)
116
+ `Opal.Preact.Ref.$new(#@native[name])`
117
117
  end
118
118
 
119
119
  def set_state(updater, &callback)
@@ -10,9 +10,9 @@ module Preact
10
10
  def const_missing(const_name)
11
11
  %x{
12
12
  if (typeof Opal.global[const_name] !== "undefined" && (const_name[0] === const_name[0].toUpperCase())) {
13
- var new_const = #{Preact::NativeConstantWrapper.new(`Opal.global[const_name]`, const_name)};
13
+ var new_const = Opal.Preact.NativeConstantWrapper.$new(Opal.global[const_name], const_name);
14
14
  new_const.preact_component = Opal.global[const_name];
15
- #{Object.const_set(const_name, `new_const`)};
15
+ Opal.Object.$const_set(const_name, new_const);
16
16
  return new_const;
17
17
  } else {
18
18
  return #{_preact_component_class_resolution_original_const_missing(const_name)};
@@ -0,0 +1,16 @@
1
+ module Preact
2
+ class Params
3
+ include Native::Wrapper
4
+
5
+ def method_missing(prop, *args, &block)
6
+ %x{
7
+ const p = #@native;
8
+ if (typeof p[prop] === 'undefined') {
9
+ prop = Opal.Preact.lower_camelize(prop);
10
+ if (typeof p[prop] === 'undefined') { return nil; }
11
+ }
12
+ return p[prop];
13
+ }
14
+ end
15
+ end
16
+ end
data/lib/preact/props.rb CHANGED
@@ -11,6 +11,24 @@ module Preact
11
11
  }
12
12
  end
13
13
 
14
+ def [](prop)
15
+ %x{
16
+ const p = #@native.props;
17
+ if (typeof p[prop] === 'undefined') {
18
+ prop = Opal.Preact.lower_camelize(prop);
19
+ if (typeof p[prop] === 'undefined') { return nil; }
20
+ }
21
+ return p[prop];
22
+ }
23
+ end
24
+
25
+ def key?(k)
26
+ %x{
27
+ if (typeof #@native.props[k] !== 'undefined') { return true; }
28
+ return false;
29
+ }
30
+ end
31
+
14
32
  def method_missing(prop, *args, &block)
15
33
  %x{
16
34
  const p = #@native.props;
@@ -29,7 +47,7 @@ module Preact
29
47
  def params
30
48
  return @params if @params
31
49
  return nil if `typeof #@native.props.params === 'undefined'`
32
- @params = ::Preact::Component::Params.new(`#@native.props.params`)
50
+ @params = `Opal.Preact.Params.$new(#@native.props.params)`
33
51
  end
34
52
 
35
53
  def to_h
data/lib/preact/state.rb CHANGED
@@ -13,6 +13,26 @@ module Preact
13
13
  }
14
14
  end
15
15
 
16
+ def [](key)
17
+ %x{
18
+ if (typeof #@native.state[key] === 'undefined') { return nil; }
19
+ return #@native.state[key];
20
+ }
21
+ end
22
+
23
+ def []=(key)
24
+ new_state = `{}`
25
+ new_state.JS[(`key.endsWith('=')` ? key.chop : key)] = args[0]
26
+ @native.JS.setState(new_state, `null`)
27
+ end
28
+
29
+ def key?(k)
30
+ %x{
31
+ if (typeof #@native.state[k] !== 'undefined') { return true; }
32
+ return false;
33
+ }
34
+ end
35
+
16
36
  def method_missing(key, *args, &block)
17
37
  if `args.length > 0`
18
38
  new_state = `{}`
@@ -1,3 +1,3 @@
1
1
  module Preact
2
- VERSION = '10.6.15'
2
+ VERSION = '10.6.19'
3
3
  end
data/lib/preact.rb CHANGED
@@ -57,8 +57,9 @@ module Preact
57
57
  };
58
58
 
59
59
  self.native_element_or_component_to_ruby = function (element) {
60
- if (typeof element.__ruby_instance !== 'undefined') { return element.__ruby_instance }
61
- if (element instanceof Element || element instanceof Node) { return #{Browser::Element.new(`element`)} }
60
+ if (element == null || typeof(element) === 'undefined' ) { return nil; }
61
+ if (typeof element.__ruby_instance !== 'undefined') { return element.__ruby_instance; }
62
+ if (element instanceof Element || element instanceof Node) { return #{Browser::Element.new(`element`)}; }
62
63
  return element;
63
64
  };
64
65
 
@@ -169,6 +170,8 @@ module Preact
169
170
  else { component_name = active_component.$to_s(); }
170
171
  #{Isomorfeus.raise_error(message: "Is #{`value`} a valid method of #{`component_name`}? If so then please use: #{`key`}: method_ref(:#{`value`}) within component: #{`component_name`}")}
171
172
  }
173
+ } else if (type === "object" && value === nil) {
174
+ result[self.lower_camelize(key)] = null;
172
175
  } else {
173
176
  let active_component = self.active_component();
174
177
  let component_name;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isomorfeus-preact
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.6.15
4
+ version: 10.6.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Biedermann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-27 00:00:00.000000000 Z
11
+ date: 2022-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 0.14.6
89
+ version: 0.14.7
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 0.14.6
96
+ version: 0.14.7
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: isomorfeus-redux
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -268,11 +268,11 @@ files:
268
268
  - lib/preact/component/initializer.rb
269
269
  - lib/preact/component/mixin.rb
270
270
  - lib/preact/component/native_component_constructor.rb
271
- - lib/preact/component/params.rb
272
271
  - lib/preact/component/resolution.rb
273
272
  - lib/preact/context_wrapper.rb
274
273
  - lib/preact/native_constant_wrapper.rb
275
274
  - lib/preact/options.rb
275
+ - lib/preact/params.rb
276
276
  - lib/preact/props.rb
277
277
  - lib/preact/ref.rb
278
278
  - lib/preact/state.rb
@@ -1,18 +0,0 @@
1
- module Preact
2
- module Component
3
- class Params
4
- include Native::Wrapper
5
-
6
- def method_missing(prop, *args, &block)
7
- %x{
8
- const p = #@native;
9
- if (typeof p[prop] === 'undefined') {
10
- prop = Opal.Preact.lower_camelize(prop);
11
- if (typeof p[prop] === 'undefined') { return nil; }
12
- }
13
- return p[prop];
14
- }
15
- end
16
- end
17
- end
18
- end