jekyll-action-network 0.5.0 → 0.6.0

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: 98c4b12e419bdcdf5f091f4c6fdcc8611dc787e5ddf14aa08951b74696335069
4
- data.tar.gz: a7d1b610dd953963fea73861f86ce8ea8edbe9a5287aea357ab3756fcfa18c45
3
+ metadata.gz: a6642127c779f04abf773f92eeee8f0418c38b69201f1c59a2035998a94ade8b
4
+ data.tar.gz: ff912cb78227719963dd86eb228d658cc9d0fe6cb21413a56ec4cb454952c045
5
5
  SHA512:
6
- metadata.gz: d622126589a09188044aa6df485b7baddc344dee28094e848a6914d452ab61e383861d96000af5cc3a790dd3cd3a6dc5e9250028f78c8db896f1aabcfe0e791d
7
- data.tar.gz: d9cab4f76e834deec064eb675d5e0ff89d63e4148404e98fe73128c058fc0af3e64988b6951626ac94e4a7831023f53b8b053e004536cf8da45bf7843c763e17
6
+ metadata.gz: 6c41f8a8468faea577d67861277321bef382fa625ab6c11b923e1b2e6574b05e6e772e384be60705634b513d3540b7ea778247a98f11c257186102db323d1735
7
+ data.tar.gz: 8ad50b0bef30b87e4cd27b5bc34d06228ae877f9c2076103150145baa4f6112bc037dfb6984d073c9d3761561cb9a62feac75c2efc58fd974115e4e6b91e98aa
@@ -47,17 +47,17 @@ module Jekyll
47
47
  def actions
48
48
  return @actions if @actions
49
49
 
50
- @actions = @generator.get_full_list(@name)
50
+ @actions = @client.send(@name).all
51
51
  @actions.concat(all_ec_events) if @name == "events" && config["include_event_campaigns"]
52
52
  @actions.uniq(&:action_network_id)
53
53
  end
54
54
 
55
55
  def all_ec_events
56
- event_campaigns = @generator.get_full_list("event_campaigns")
56
+ event_campaigns = @client.event_campaigns.all
57
57
  events = []
58
58
  event_campaigns.each do |event_campaign|
59
59
  ec_client = @client.event_campaigns(event_campaign.action_network_id)
60
- events.concat(@generator.get_full_list("events", ec_client))
60
+ events.concat(ec_client.events.all)
61
61
  end
62
62
  events
63
63
  end
@@ -25,6 +25,7 @@ module Jekyll
25
25
  return unless authenticate
26
26
 
27
27
  make_collections
28
+ # site.config['action_network']['generated'] = true
28
29
  end
29
30
 
30
31
  def make_collections
@@ -49,7 +49,7 @@ defaults:
49
49
  petition_text: petition_text
50
50
  browser_url: browser_url
51
51
  featured_image_url: image
52
- target: target
52
+ target: petition_target
53
53
  "action_network:sponsor": sponsor
54
54
  events:
55
55
  collection: events
@@ -82,38 +82,38 @@ defaults:
82
82
  total_events: total_events
83
83
  total_rsvps: total_rsvps
84
84
  "action_network:sponsor": sponsor
85
- # advocacy_campaigns:
86
- # collection: advocacy_campaigns
87
- # layout: an-advocacy_campaign
88
- # content: description
89
- # mappings:
90
- # title: title
91
- # description: description
92
- # type: type
93
- # browser_url: browser_url
94
- # featured_image_url: image
95
- # "action_network:sponsor": sponsor
96
- # targets: targets
97
- # total_outreaches: total_outreaches
98
- # forms:
99
- # collection: forms
100
- # layout: an-form
101
- # content: description
102
- # mappings:
103
- # title: title
104
- # description: description
105
- # call_to_action: call_to_action
106
- # browser_url: browser_url
107
- # featured_image_url: image
108
- # "action_network:sponsor": sponsor
109
- # campaigns:
110
- # collection: campaigns
111
- # layout: an-campaign
112
- # content: description
113
- # mappings:
114
- # title: title
115
- # description: description
116
- # browser_url: browser_url
117
- # featured_image_url: image
118
- # actions: actions
119
- # "action_network:sponsor": sponsor
85
+ advocacy_campaigns:
86
+ collection: advocacy_campaigns
87
+ layout: an-advocacy_campaign
88
+ content: description
89
+ mappings:
90
+ title: title
91
+ description: description
92
+ type: categories
93
+ browser_url: browser_url
94
+ featured_image_url: image
95
+ "action_network:sponsor": sponsor
96
+ targets: targets
97
+ total_outreaches: total_outreaches
98
+ forms:
99
+ collection: forms
100
+ layout: an-form
101
+ content: description
102
+ mappings:
103
+ title: title
104
+ description: description
105
+ call_to_action: call_to_action
106
+ browser_url: browser_url
107
+ featured_image_url: image
108
+ "action_network:sponsor": sponsor
109
+ campaigns:
110
+ collection: campaigns
111
+ layout: an-campaign
112
+ content: description
113
+ mappings:
114
+ title: title
115
+ description: description
116
+ browser_url: browser_url
117
+ featured_image_url: image
118
+ actions: actions
119
+ "action_network:sponsor": sponsor
@@ -18,6 +18,8 @@ module Jekyll
18
18
  end
19
19
 
20
20
  def make_embed_code(browser_url, style = nil)
21
+ return unless browser_url
22
+
21
23
  relative_url = browser_url.split("://")[1].sub("actionnetwork.org/", "")
22
24
  split_url = relative_url.split("/")
23
25
  css = settings["embed"]["styles"][style] if style
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module ActionNetwork
5
- VERSION = "0.5.0"
5
+ VERSION = "0.6.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-action-network
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Irving
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-19 00:00:00.000000000 Z
11
+ date: 2022-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: action_network_rest
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.10.0
19
+ version: 0.11.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.10.0
26
+ version: 0.11.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: dotenv
29
29
  requirement: !ruby/object:Gem::Requirement