jekyll-action-network 0.6.0 → 0.6.2

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: a6642127c779f04abf773f92eeee8f0418c38b69201f1c59a2035998a94ade8b
4
- data.tar.gz: ff912cb78227719963dd86eb228d658cc9d0fe6cb21413a56ec4cb454952c045
3
+ metadata.gz: 34887e85b8ecb2273d1b7ee047e55872d19270ad23d9eb5d00a1edb354e8dc27
4
+ data.tar.gz: 5107ff03442f0ef0cd957153c4358b95bc920ea6a00b692af7d4e7b477609ec6
5
5
  SHA512:
6
- metadata.gz: 6c41f8a8468faea577d67861277321bef382fa625ab6c11b923e1b2e6574b05e6e772e384be60705634b513d3540b7ea778247a98f11c257186102db323d1735
7
- data.tar.gz: 8ad50b0bef30b87e4cd27b5bc34d06228ae877f9c2076103150145baa4f6112bc037dfb6984d073c9d3761561cb9a62feac75c2efc58fd974115e4e6b91e98aa
6
+ metadata.gz: 1c837f993a137e4b7989c1c564e068e8e3fef8e03b5d953d52db9c4f655a19f8bbe63e94dad14c1fa4f4179e4f39cb97eafb316765eb686cc8dc73b8572c7d39
7
+ data.tar.gz: 37b7d9a4f4f87d4f8e751d0b85346ab01693be0e03020376c723615d03a4650c75c53e05a433e46b2400459f791ebf6b61ef815bfb3f31cbb4e5ffcfb1acb0bd
@@ -6,12 +6,13 @@ module Jekyll
6
6
  # An action network action, call the +doc+ method to get a
7
7
  # Jekyll::Document for this action
8
8
  class Action
9
- def initialize(site, name, collection, config, action)
9
+ def initialize(site, name, collection, config, action, settings)
10
10
  @site = site
11
11
  @collection = collection
12
12
  @config = config
13
13
  @action = action
14
14
  @name = name
15
+ @settings = settings
15
16
  @utils = Jekyll::ActionNetwork::Utils.new
16
17
  end
17
18
 
@@ -43,9 +44,20 @@ module Jekyll
43
44
  @front_matter["slug"] = slug
44
45
  @front_matter["embed_code"] = @utils.make_embed_code(@action["browser_url"])
45
46
  @front_matter["action_type"] = @name
47
+ @front_matter["action_network_endpoint"] = endpoint
48
+ @front_matter["action_network_blindpost"] = blindpost
46
49
  @front_matter
47
50
  end
48
51
 
52
+ def endpoint
53
+ @action['_links']['self']['href']
54
+ end
55
+
56
+ def blindpost
57
+ linked_type = @settings['endpoint_mappings'][@name]
58
+ return @action['_links']["osdi:#{linked_type}"]['href'] if linked_type
59
+ end
60
+
49
61
  def content
50
62
  @content ||= @action[@config["content"]]
51
63
  end
@@ -33,7 +33,7 @@ module Jekyll
33
33
  def documents
34
34
  documents = []
35
35
  filtered_actions.each do |action_data|
36
- action = Jekyll::ActionNetwork::Action.new(@site, @name, collection, config, action_data)
36
+ action = Jekyll::ActionNetwork::Action.new(@site, @name, collection, config, action_data, @settings)
37
37
  documents << action.doc
38
38
  end
39
39
  documents
@@ -24,6 +24,7 @@ fields:
24
24
  - call_to_action
25
25
  - "action_network:event_campaign_id"
26
26
  - type
27
+ - created_date
27
28
  embed:
28
29
  resources:
29
30
  forms: form
@@ -37,6 +38,11 @@ embed:
37
38
  layout_only: <link href='https://actionnetwork.org/css/style-embed-whitelabel-v3.css' rel='stylesheet' type='text/css' />
38
39
  actions:
39
40
  collection: actions
41
+ endpoint_mappings:
42
+ forms: submissions
43
+ events: attendances
44
+ petitions: signatures
45
+ advocacy_campaigns: outreaches
40
46
  key: ENV_ACTION_NETWORK_API_KEY
41
47
  defaults:
42
48
  petitions:
@@ -51,6 +57,7 @@ defaults:
51
57
  featured_image_url: image
52
58
  target: petition_target
53
59
  "action_network:sponsor": sponsor
60
+ created_date: date
54
61
  events:
55
62
  collection: events
56
63
  layout: an-event
@@ -69,6 +76,7 @@ defaults:
69
76
  visibility: visibility
70
77
  capacity: capacity
71
78
  "action_network:sponsor": sponsor
79
+ created_date: date
72
80
  event_campaigns:
73
81
  collection: event_campaigns
74
82
  layout: an-event_campaign
@@ -82,6 +90,7 @@ defaults:
82
90
  total_events: total_events
83
91
  total_rsvps: total_rsvps
84
92
  "action_network:sponsor": sponsor
93
+ created_date: date
85
94
  advocacy_campaigns:
86
95
  collection: advocacy_campaigns
87
96
  layout: an-advocacy_campaign
@@ -95,6 +104,7 @@ defaults:
95
104
  "action_network:sponsor": sponsor
96
105
  targets: targets
97
106
  total_outreaches: total_outreaches
107
+ created_date: date
98
108
  forms:
99
109
  collection: forms
100
110
  layout: an-form
@@ -106,6 +116,7 @@ defaults:
106
116
  browser_url: browser_url
107
117
  featured_image_url: image
108
118
  "action_network:sponsor": sponsor
119
+ created_date: date
109
120
  campaigns:
110
121
  collection: campaigns
111
122
  layout: an-campaign
@@ -116,4 +127,5 @@ defaults:
116
127
  browser_url: browser_url
117
128
  featured_image_url: image
118
129
  actions: actions
119
- "action_network:sponsor": sponsor
130
+ "action_network:sponsor": sponsor
131
+ created_date: date
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module ActionNetwork
5
- VERSION = "0.6.0"
5
+ VERSION = "0.6.2"
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.6.0
4
+ version: 0.6.2
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-28 00:00:00.000000000 Z
11
+ date: 2022-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: action_network_rest