async_futurize 0.1.11 → 0.1.16

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: 86b609afd7ae960588a5e6abfe7726a4d1fe49167775e751f1dbcb5abfced1a9
4
- data.tar.gz: 847b036f3275fb1b177c0e8113b34c81e12d2498f5109524cd74f561e478ebdf
3
+ metadata.gz: 0f9e384fc9d4d5147760b05340d78da619382699a067a96aa4f054bdea11b332
4
+ data.tar.gz: 2db1b001acc015d13fcb8b1d2a8bdc5e55d34990fa49f1d2752109da39125c59
5
5
  SHA512:
6
- metadata.gz: 128fce6cbde1c4608d55379de82c1539cb2c00defd904741b46efd5697a4fadd1cbfcd7e057864a1c4bf3b24d3d44434abdc2e1ca05dee4d61de22dc2da1d90b
7
- data.tar.gz: d2c0867acfd3f32114633d64be844c58f729cf0bded44ea40ebf48a4eea658004836ac0e69b2fdeeaae26545122ad1614b832523337622342a06c14ceb7b1dc8
6
+ metadata.gz: 769aa4b0b2fe39c416feb949e637d7940d5e8b7eddce35d1b6b4e3907c95e3f403c781c7fd7f3d203b924b66ea24deeb96e01bfa3c91194e900ad57621de8d31
7
+ data.tar.gz: ceeb0a088b97666d903cacad0ee9539f2804fdfd7eb293539afb643de8d565fccd491b8d79e3272c2fee251ce70da4bc8c020d858feaf67349181c6b56cd1a17
@@ -1,7 +1,9 @@
1
- class FuturizeController < ApplicationController
2
- def loadComponent
3
- locals = { component: params[:component_to_load], component_params: params[:component_params] }
4
- render json: { component: params[:component_to_load], html: render_to_string(partial: './futurize_component_ajax', locals: locals) }
5
- end
1
+ module AsyncFuturize
2
+ class FuturizeController
3
+ def loadComponent
4
+ locals = { component: params[:component_to_load], component_params: params[:component_params] }
5
+ render json: { component: params[:component_to_load], html: render_to_string(partial: './futurize_component_ajax', locals: locals) }
6
+ end
7
+ end
6
8
  end
7
9
 
@@ -1,4 +1,5 @@
1
1
  module AsyncFuturize
2
2
  class Engine < Rails::Engine
3
+ config.assets.precompile += %w(futurize.js)
3
4
  end
4
5
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AsyncFuturize
4
- VERSION = "0.1.11"
4
+ VERSION = "0.1.16"
5
5
  end
@@ -1,50 +1,51 @@
1
+ console.log('Futurize loaded ..')
1
2
  global.FuturizeComponent = {
2
- init: function (css_selector) {
3
- var obj = document.querySelectorAll(css_selector);
4
- for (var i in obj) {
5
- if (obj.hasOwnProperty(i)) {
6
- //console.log(obj[i].getAttribute('data-futurize-component'));
7
- this.load_component(obj[i])
8
- }
3
+ init: function (css_selector) {
4
+ var obj = document.querySelectorAll(css_selector);
5
+ for (var i in obj) {
6
+ if (obj.hasOwnProperty(i)) {
7
+ //console.log(obj[i].getAttribute('data-futurize-component'));
8
+ this.load_component(obj[i])
9
9
  }
10
- },
11
-
12
- reload: function(css_selector) {
13
- document.querySelectorAll(css_selector).forEach(function(o) {
14
- o.innerHTML = ""
15
- })
16
- },
17
-
18
- load_component: function (obj) {
19
- var component_name = obj.getAttribute('data-futurize-component'),
20
- component_params = obj.getAttribute('data-futurize-params');
21
-
22
- if (obj.innerHTML.trim().length <= 0) {
23
- obj.innerHTML = 'Loading....';
24
- }
25
-
26
- var AUTH_TOKEN = document.querySelector('meta[name=csrf-token]').getAttribute('content');
27
- fetch('/home/loadComponent', {
28
- mode: 'same-origin',
29
- method: 'POST',
30
- dataType: 'json',
31
- body : JSON.stringify({ component_to_load: component_name, component_params: component_params }),
32
- headers: {
33
- 'Content-Type': 'application/json',
34
- 'X-CSRF-Token' : AUTH_TOKEN,
35
- },
36
- })
37
- .then(response => response.json())
38
- .then(data => {
39
- obj.innerHTML = data.html
40
- obj.querySelectorAll("script").forEach(function(o) {
41
- eval(o.innerHTML)
42
- })
43
- }).catch((error) => {
44
- console.error('Error:', error);
45
- });
46
10
  }
11
+ },
12
+
13
+ reload: function(css_selector) {
14
+ document.querySelectorAll(css_selector).forEach(function(o) {
15
+ o.innerHTML = ""
16
+ })
17
+ },
18
+
19
+ load_component: function (obj) {
20
+ var component_name = obj.getAttribute('data-futurize-component'),
21
+ component_params = obj.getAttribute('data-futurize-params');
22
+
23
+ if (obj.innerHTML.trim().length <= 0) {
24
+ obj.innerHTML = 'Loading....';
25
+ }
26
+
27
+ var AUTH_TOKEN = document.querySelector('meta[name=csrf-token]').getAttribute('content');
28
+ fetch('/home/loadComponent', {
29
+ mode: 'same-origin',
30
+ method: 'POST',
31
+ dataType: 'json',
32
+ body : JSON.stringify({ component_to_load: component_name, component_params: component_params }),
33
+ headers: {
34
+ 'Content-Type': 'application/json',
35
+ 'X-CSRF-Token' : AUTH_TOKEN,
36
+ },
37
+ })
38
+ .then(response => response.json())
39
+ .then(data => {
40
+ obj.innerHTML = data.html
41
+ obj.querySelectorAll("script").forEach(function(o) {
42
+ eval(o.innerHTML)
43
+ })
44
+ }).catch((error) => {
45
+ console.error('Error:', error);
46
+ });
47
47
  }
48
- document.addEventListener('DOMContentLoaded', function () {
49
- FuturizeComponent.init('[data-futurize-component]');
50
- })
48
+ }
49
+ document.addEventListener('DOMContentLoaded', function () {
50
+ FuturizeComponent.init('[data-futurize-component]');
51
+ })
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: async_futurize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ashesh Tuladhar
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-09 00:00:00.000000000 Z
11
+ date: 2021-02-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Asynchronously load view components.
14
14
  email:
@@ -26,7 +26,6 @@ files:
26
26
  - Rakefile
27
27
  - app/controllers/async_futurize/futurize_controller.rb
28
28
  - app/helpers/futurize_helper.rb
29
- - app/javascript/packs/futurize.js
30
29
  - app/views/_futurize_component_ajax.html.erb
31
30
  - app/views/_futurize_partial_ajax.html.erb
32
31
  - async_futurize.gemspec
@@ -1,50 +0,0 @@
1
- global.FuturizeComponent = {
2
- init: function (css_selector) {
3
- var obj = document.querySelectorAll(css_selector);
4
- for (var i in obj) {
5
- if (obj.hasOwnProperty(i)) {
6
- //console.log(obj[i].getAttribute('data-futurize-component'));
7
- this.load_component(obj[i])
8
- }
9
- }
10
- },
11
-
12
- reload: function(css_selector) {
13
- document.querySelectorAll(css_selector).forEach(function(o) {
14
- o.innerHTML = ""
15
- })
16
- },
17
-
18
- load_component: function (obj) {
19
- var component_name = obj.getAttribute('data-futurize-component'),
20
- component_params = obj.getAttribute('data-futurize-params');
21
-
22
- if (obj.innerHTML.trim().length <= 0) {
23
- obj.innerHTML = 'Loading....';
24
- }
25
-
26
- var AUTH_TOKEN = document.querySelector('meta[name=csrf-token]').getAttribute('content');
27
- fetch('/home/loadComponent', {
28
- mode: 'same-origin',
29
- method: 'POST',
30
- dataType: 'json',
31
- body : JSON.stringify({ component_to_load: component_name, component_params: component_params }),
32
- headers: {
33
- 'Content-Type': 'application/json',
34
- 'X-CSRF-Token' : AUTH_TOKEN,
35
- },
36
- })
37
- .then(response => response.json())
38
- .then(data => {
39
- obj.innerHTML = data.html
40
- obj.querySelectorAll("script").forEach(function(o) {
41
- eval(o.innerHTML)
42
- })
43
- }).catch((error) => {
44
- console.error('Error:', error);
45
- });
46
- }
47
- }
48
- document.addEventListener('DOMContentLoaded', function () {
49
- FuturizeComponent.init('[data-futurize-component]');
50
- })