@asd20/ui 3.2.892 → 3.2.893

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/package.json +1 -1
  2. package/src/components/molecules/Asd20Card/index.vue +3 -0
  3. package/src/components/organisms/Asd20FeedsSection/index.vue +37 -19
  4. package/src/components/organisms/Asd20PageFooter/index.vue +4 -1
  5. package/src/components/organisms/Asd20PageHeader/index.vue +23 -1
  6. package/src/components/organisms/Asd20SchoolHomepageHeader/index.vue +22 -0
  7. package/src/components/organisms/Asd20SchoolHomepageVideoHeader/index.vue +22 -0
  8. package/src/components/organisms/Asd20SecondaryHeader/index.vue +22 -0
  9. package/src/components/organisms/Asd20VideoHeaderContent/index.vue +20 -0
  10. package/src/components/templates/Asd20ArticleTemplate/index.vue +2 -0
  11. package/src/components/templates/Asd20BasePageTemplate/index.vue +2 -0
  12. package/src/components/templates/Asd20DetailAlternateTemplate/index.vue +2 -0
  13. package/src/components/templates/Asd20DetailImageFullTemplate/index.vue +2 -0
  14. package/src/components/templates/Asd20DetailImageTemplate/index.vue +2 -0
  15. package/src/components/templates/Asd20DetailTemplate/index.vue +2 -0
  16. package/src/components/templates/Asd20DistrictHomeTemplate/index.vue +2 -0
  17. package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +2 -0
  18. package/src/components/templates/Asd20SchoolHomeTemplate/index.vue +2 -0
  19. package/src/components/templates/Asd20SchoolHomeVideoTemplate/index.vue +2 -0
  20. package/src/components/templates/Asd20WayfindingAlternateTemplate/index.vue +2 -0
  21. package/src/components/templates/Asd20WayfindingImageTemplate/index.vue +2 -0
  22. package/src/components/templates/Asd20WayfindingTemplate/index.vue +2 -0
  23. package/src/data/messages/announcements.json +33 -33
  24. package/src/data/messages/stories.json +4 -4
  25. package/src/data/page-queries/school-home-page-query-result.json +1 -1
  26. package/src/data/page-queries/sublanding-page-query-result.json +2 -2
  27. package/src/helpers/expandEvents.js +1 -1
  28. package/src/helpers/mapMessageToCard.js +25 -2
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.892",
8
+ "version": "3.2.893",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -80,6 +80,7 @@
80
80
  <asd20-icon v-if="hasVideo" name="video" size="sm" />
81
81
  <asd20-icon v-if="hasGallery" name="gallery" size="sm" />
82
82
  <asd20-icon v-if="hasFile" name="file" size="sm" />
83
+ <img v-if="sourceOrg" width="24px" :src="websiteLogo" />
83
84
  </div>
84
85
  </div>
85
86
  <slot />
@@ -142,6 +143,8 @@ export default {
142
143
  hasFile: { type: Boolean, default: false },
143
144
  disableFocus: { type: Boolean, default: false },
144
145
  noCoverImage: { type: Boolean, default: false },
146
+ sourceOrg: { type: String, default: '' },
147
+ websiteLogo: { type: String, default: '' },
145
148
  },
146
149
  computed: {
147
150
  truncatedDescription() {
@@ -31,7 +31,9 @@
31
31
 
32
32
  <intersect @enter="$emit('stories-in-view')">
33
33
  <Asd20SwiperFeed
34
- v-if="storiesFeedProps && (!Array.isArray(stories) || stories.length > 0)"
34
+ v-if="
35
+ storiesFeedProps && (!Array.isArray(stories) || stories.length > 0)
36
+ "
35
37
  v-bind="storiesFeedProps"
36
38
  :loading="!Array.isArray(stories)"
37
39
  :cards="storyCards"
@@ -86,7 +88,9 @@ export default {
86
88
  peopleFeedProps: { type: Object, default: () => {} },
87
89
 
88
90
  cardType: { type: String, default: '' },
91
+ organization: { type: Object, default: () => {} },
89
92
  organizationId: { type: String, default: '' },
93
+ organizationOptions: { type: Array, default: () => [] },
90
94
  hasProtectedContent: { type: Boolean, default: false },
91
95
  },
92
96
 
@@ -101,12 +105,17 @@ export default {
101
105
  // If the organization id is not the employee org:
102
106
  if (this.organizationId !== '7ab6f0b0-3304-11ef-92d6-ed16a99dd422') {
103
107
  return this.announcements.map(a =>
104
- mapMessageToCard(a, {
105
- reversed: true,
106
- time: '',
107
- zoom: true,
108
- noCoverImage: true,
109
- })
108
+ mapMessageToCard(
109
+ a,
110
+ {
111
+ reversed: true,
112
+ time: '',
113
+ zoom: true,
114
+ noCoverImage: true,
115
+ },
116
+ this.organization,
117
+ this.organizationOptions
118
+ )
110
119
  )
111
120
  }
112
121
 
@@ -115,24 +124,33 @@ export default {
115
124
  const isLeadership = a.categories.includes('Leadership')
116
125
  const reversed = isLeadership ? false : true
117
126
 
118
- return mapMessageToCard(a, {
119
- reversed: reversed,
120
- time: '',
121
- zoom: true,
122
- noCoverImage: true,
123
- })
127
+ return mapMessageToCard(
128
+ a,
129
+ {
130
+ reversed: reversed,
131
+ time: '',
132
+ zoom: true,
133
+ noCoverImage: true,
134
+ },
135
+ this.organization,
136
+ this.organizationOptions
137
+ )
124
138
  })
125
139
  },
126
140
 
127
-
128
141
  storyCards() {
129
142
  if (!Array.isArray(this.stories)) return []
130
143
  return this.stories.map(s =>
131
- mapMessageToCard(s, {
132
- // description: '',
133
- time: '',
134
- zoom: true,
135
- })
144
+ mapMessageToCard(
145
+ s,
146
+ {
147
+ // description: '',
148
+ time: '',
149
+ zoom: true,
150
+ },
151
+ this.organization,
152
+ this.organizationOptions
153
+ )
136
154
  )
137
155
  },
138
156
  eventCards() {
@@ -136,7 +136,7 @@
136
136
  </div>
137
137
 
138
138
  <div class="copyright">
139
- Copyright &copy; 2024 Academy District 20. All&nbsp;rights&nbsp;reserved.
139
+ Copyright &copy; {{ currentYear }} Academy District 20. All&nbsp;rights&nbsp;reserved.
140
140
  </div>
141
141
 
142
142
  <slot />
@@ -216,6 +216,9 @@ export default {
216
216
  mapOrganizationSubtitle() {
217
217
  return organizationLevel(this.organization.title)
218
218
  },
219
+ currentYear() {
220
+ return new Date().getFullYear()
221
+ },
219
222
  },
220
223
  }
221
224
  </script>
@@ -504,7 +504,24 @@ export default {
504
504
  --website-header__button-foreground-color,
505
505
  var(--color__accent-t100)
506
506
  );
507
- box-shadow: 2px 2px 2px rgb(50, 50, 50);
507
+ // box-shadow: 2px 2px 2px rgb(50, 50, 50);
508
+ position: relative;
509
+ padding: space(0.5) space(1);
510
+ transition: background-color 0.3s ease;
511
+ z-index: 2;
512
+ overflow: hidden;
513
+ ::before {
514
+ content: '';
515
+ position: absolute;
516
+ top: 0;
517
+ left: 0; /* Align with the button's left edge */
518
+ width: 20px; /* Default arrow width */
519
+ height: 100%; /* Match the button's height */
520
+ clip-path: polygon(0 0, 100% 50%, 0 100%); /* Triangle pointing right */
521
+ background-color: rgb(255, 255, 255, 0.2); /* Arrow color */
522
+ transition: width 0.3s ease, background-color 0.3s ease; /* Smooth arrow growth */
523
+ z-index: 0;
524
+ }
508
525
  &:hover,
509
526
  &:focus {
510
527
  background-color: var(
@@ -515,6 +532,11 @@ export default {
515
532
  --website-header__button-hover-foreground-color,
516
533
  var(--color__accent-t100)
517
534
  );
535
+ ::before {
536
+ width: 30px; /* Arrow grows on hover */
537
+ background-color: rgba(255, 255, 255, 0.3); /* Darker arrow on hover */
538
+ z-index: 0;
539
+ }
518
540
  }
519
541
 
520
542
  &:not(:last-child) {
@@ -235,6 +235,23 @@ export default {
235
235
  --website-header__button-foreground-color,
236
236
  var(--color__accent-t100)
237
237
  );
238
+ position: relative;
239
+ padding: space(0.5) space(1);
240
+ transition: background-color 0.3s ease;
241
+ z-index: 2;
242
+ overflow: hidden;
243
+ ::before {
244
+ content: '';
245
+ position: absolute;
246
+ top: 0;
247
+ left: 0; /* Align with the button's left edge */
248
+ width: 20px; /* Default arrow width */
249
+ height: 100%; /* Match the button's height */
250
+ clip-path: polygon(0 0, 100% 50%, 0 100%); /* Triangle pointing right */
251
+ background-color: rgb(255, 255, 255, 0.2); /* Arrow color */
252
+ transition: width 0.3s ease, background-color 0.3s ease; /* Smooth arrow growth */
253
+ z-index: 0;
254
+ }
238
255
  &:hover,
239
256
  &:focus {
240
257
  background-color: var(
@@ -245,6 +262,11 @@ export default {
245
262
  --website-header__button-hover-foreground-color,
246
263
  var(--color__accent-t100)
247
264
  );
265
+ ::before {
266
+ width: 30px; /* Arrow grows on hover */
267
+ background-color: rgba(255, 255, 255, 0.3); /* Darker arrow on hover */
268
+ z-index: 0;
269
+ }
248
270
  }
249
271
 
250
272
  &:not(:last-child) {
@@ -243,6 +243,23 @@ export default {
243
243
  --website-header__button-foreground-color,
244
244
  var(--color__accent-t100)
245
245
  );
246
+ position: relative;
247
+ padding: space(0.5) space(1);
248
+ transition: background-color 0.3s ease;
249
+ z-index: 2;
250
+ overflow: hidden;
251
+ ::before {
252
+ content: '';
253
+ position: absolute;
254
+ top: 0;
255
+ left: 0; /* Align with the button's left edge */
256
+ width: 20px; /* Default arrow width */
257
+ height: 100%; /* Match the button's height */
258
+ clip-path: polygon(0 0, 100% 50%, 0 100%); /* Triangle pointing right */
259
+ background-color: rgb(255, 255, 255, 0.2); /* Arrow color */
260
+ transition: width 0.3s ease, background-color 0.3s ease; /* Smooth arrow growth */
261
+ z-index: 0;
262
+ }
246
263
  &:hover,
247
264
  &:focus {
248
265
  background-color: var(
@@ -253,6 +270,11 @@ export default {
253
270
  --website-header__button-hover-foreground-color,
254
271
  var(--color__accent-t100)
255
272
  );
273
+ ::before {
274
+ width: 30px; /* Arrow grows on hover */
275
+ background-color: rgba(255, 255, 255, 0.3); /* Darker arrow on hover */
276
+ z-index: 0;
277
+ }
256
278
  }
257
279
  }
258
280
  }
@@ -90,6 +90,23 @@ export default {
90
90
  --website-homepage-header__secondary-button-background-color
91
91
  );
92
92
  border: none;
93
+ position: relative;
94
+ padding: space(0.5) space(1);
95
+ transition: background-color 0.3s ease;
96
+ z-index: 2;
97
+ overflow: hidden;
98
+ ::before {
99
+ content: '';
100
+ position: absolute;
101
+ top: 0;
102
+ left: 0; /* Align with the button's left edge */
103
+ width: 20px; /* Default arrow width */
104
+ height: 100%; /* Match the button's height */
105
+ clip-path: polygon(0 0, 100% 50%, 0 100%); /* Triangle pointing right */
106
+ background-color: var(--color__accent); /* Arrow color */
107
+ transition: width 0.3s ease, background-color 0.3s ease; /* Smooth arrow growth */
108
+ z-index: 0;
109
+ }
93
110
  &:hover {
94
111
  color: var(
95
112
  --website-homepage-header__secondary-button-hover-foreground-color
@@ -97,6 +114,11 @@ export default {
97
114
  background: var(
98
115
  --website-homepage-header__secondary-button-hover-background-color
99
116
  );
117
+ ::before {
118
+ width: 30px; /* Arrow grows on hover */
119
+ background-color: rgba(0, 0, 0, 0.3); /* Darker arrow on hover */
120
+ z-index: 0;
121
+ }
100
122
  }
101
123
  }
102
124
 
@@ -129,9 +129,29 @@ export default {
129
129
  color: var(--website-homepage-header__button-foreground-color);
130
130
  background: var(--website-homepage-header__button-background-color);
131
131
  border: none;
132
+ position: relative;
133
+ padding: space(0.5) space(1);
134
+ height: 50px;
135
+ line-height: 50px;
136
+ transition: background-color 0.3s ease;
137
+ ::before {
138
+ content: '';
139
+ position: absolute;
140
+ top: 0;
141
+ left: 0; /* Align with the button's left edge */
142
+ width: 20px; /* Default arrow width */
143
+ height: 100%; /* Match the button's height */
144
+ clip-path: polygon(0 0, 100% 50%, 0 100%); /* Triangle pointing right */
145
+ background-color: var(--color__accent); /* Arrow color */
146
+ transition: width 0.3s ease, background-color 0.3s ease; /* Smooth arrow growth */
147
+ }
132
148
  &:hover {
133
149
  color: var(--website-homepage-header__button-hover-foreground-color);
134
150
  background: var(--website-homepage-header__button-hover-background-color);
151
+ ::before {
152
+ width: 30px; /* Arrow grows on hover */
153
+ background-color: rgba(0, 0, 0, 0.3); /* Darker arrow on hover */
154
+ }
135
155
  }
136
156
  &:focus {
137
157
  color: var(--website-homepage-header__button-hover-foreground-color);
@@ -93,6 +93,8 @@
93
93
  :events="events"
94
94
  :events-feed-props="eventsFeedProps"
95
95
  @events-in-view="$emit('events-in-view')"
96
+ :organization="organization"
97
+ :organization-options="organizationOptions"
96
98
  ></asd20-feeds-section>
97
99
 
98
100
  <asd20-media-section
@@ -92,6 +92,8 @@
92
92
  :events="events"
93
93
  :events-feed-props="eventsFeedProps"
94
94
  @events-in-view="$emit('events-in-view')"
95
+ :organization="organization"
96
+ :organization-options="organizationOptions"
95
97
  ></asd20-feeds-section>
96
98
 
97
99
  <!-- Bottom Widgets -->
@@ -77,6 +77,8 @@
77
77
  :stories="stories"
78
78
  :stories-feed-props="storiesFeedProps"
79
79
  @stories-in-view="$emit('stories-in-view')"
80
+ :organization="organization"
81
+ :organization-options="organizationOptions"
80
82
  ></asd20-feeds-section>
81
83
 
82
84
  <!-- Page Content -->
@@ -93,6 +93,8 @@
93
93
  :events="events"
94
94
  :events-feed-props="eventsFeedProps"
95
95
  @events-in-view="$emit('events-in-view')"
96
+ :organization="organization"
97
+ :organization-options="organizationOptions"
96
98
  ></asd20-feeds-section>
97
99
 
98
100
  <asd20-media-section
@@ -93,6 +93,8 @@
93
93
  :events="events"
94
94
  :events-feed-props="eventsFeedProps"
95
95
  @events-in-view="$emit('events-in-view')"
96
+ :organization="organization"
97
+ :organization-options="organizationOptions"
96
98
  ></asd20-feeds-section>
97
99
 
98
100
  <asd20-media-section
@@ -93,6 +93,8 @@
93
93
  :events="events"
94
94
  :events-feed-props="eventsFeedProps"
95
95
  @events-in-view="$emit('events-in-view')"
96
+ :organization="organization"
97
+ :organization-options="organizationOptions"
96
98
  ></asd20-feeds-section>
97
99
 
98
100
  <asd20-media-section
@@ -108,6 +108,8 @@
108
108
  @events-in-view="$emit('events-in-view')"
109
109
  :organizationId="organization.id"
110
110
  :hasProtectedContent="hasProtectedContent"
111
+ :organization="organization"
112
+ :organization-options="organizationOptions"
111
113
  ></asd20-feeds-section>
112
114
  </client-only>
113
115
 
@@ -110,6 +110,8 @@
110
110
  :events="events"
111
111
  :events-feed-props="eventsFeedProps"
112
112
  @events-in-view="$emit('events-in-view')"
113
+ :organization="organization"
114
+ :organization-options="organizationOptions"
113
115
  ></asd20-feeds-section>
114
116
 
115
117
  <asd20-factoids-section
@@ -120,6 +120,8 @@
120
120
  :events="events"
121
121
  :events-feed-props="eventsFeedProps"
122
122
  @events-in-view="$emit('events-in-view')"
123
+ :organization="organization"
124
+ :organization-options="organizationOptions"
123
125
  ></asd20-feeds-section>
124
126
 
125
127
  <!-- Footer -->
@@ -121,6 +121,8 @@
121
121
  :events="events"
122
122
  :events-feed-props="eventsFeedProps"
123
123
  @events-in-view="$emit('events-in-view')"
124
+ :organization="organization"
125
+ :organization-options="organizationOptions"
124
126
  ></asd20-feeds-section>
125
127
 
126
128
  <!-- Footer -->
@@ -86,6 +86,8 @@
86
86
  :events="events"
87
87
  :events-feed-props="eventsFeedProps"
88
88
  @events-in-view="$emit('events-in-view')"
89
+ :organization="organization"
90
+ :organization-options="organizationOptions"
89
91
  ></asd20-feeds-section>
90
92
  </template>
91
93
 
@@ -86,6 +86,8 @@
86
86
  :events="events"
87
87
  :events-feed-props="eventsFeedProps"
88
88
  @events-in-view="$emit('events-in-view')"
89
+ :organization="organization"
90
+ :organization-options="organizationOptions"
89
91
  ></asd20-feeds-section>
90
92
  </template>
91
93
 
@@ -92,6 +92,8 @@
92
92
  :events="events"
93
93
  :events-feed-props="eventsFeedProps"
94
94
  @events-in-view="$emit('events-in-view')"
95
+ :organization="organization"
96
+ :organization-options="organizationOptions"
95
97
  ></asd20-feeds-section>
96
98
 
97
99
  <!-- Photos & Videos -->
@@ -55,7 +55,7 @@
55
55
  "links": "[]",
56
56
  "channels": ["Announcements"],
57
57
  "audiences": [],
58
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
58
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
59
59
  "images": [{"files":[{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-md/Unknown_250x250.jpg","name":"thumbnail-md","width":250,"height":250,"filename":"Unknown_250x250.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-md/Unknown_250x250.jpg","filesize":26512},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-sm/Unknown_100x100.jpg","name":"thumbnail-sm","width":100,"height":100,"filename":"Unknown_100x100.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-sm/Unknown_100x100.jpg","filesize":6411},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-xs/Unknown_50x50.jpg","name":"thumbnail-xs","width":50,"height":50,"filename":"Unknown_50x50.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-xs/Unknown_50x50.jpg","filesize":2367},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/banner/Unknown_800x300.jpg","name":"banner","width":800,"height":300,"filename":"Unknown_800x300.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/banner/Unknown_800x300.jpg","filesize":72551},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/full/Unknown_1200x800.jpg","name":"full","width":1200,"height":800,"filename":"Unknown_1200x800.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/full/Unknown_1200x800.jpg","filesize":245500}],"isCover":true,"metadata":{"alt":""}}],
60
60
  "videos": "[]",
61
61
  "translations": "null",
@@ -89,7 +89,7 @@
89
89
  "links": "[]",
90
90
  "channels": ["Announcements"],
91
91
  "audiences": [],
92
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
92
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
93
93
  "images": "[]",
94
94
  "videos": "[]",
95
95
  "translations": "null",
@@ -123,7 +123,7 @@
123
123
  "links": "[]",
124
124
  "channels": ["Announcements"],
125
125
  "audiences": [],
126
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
126
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
127
127
  "images": "[]",
128
128
  "videos": "[]",
129
129
  "translations": "null",
@@ -157,7 +157,7 @@
157
157
  "links": "[]",
158
158
  "channels": ["Announcements"],
159
159
  "audiences": [],
160
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
160
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
161
161
  "images": "[]",
162
162
  "videos": "[]",
163
163
  "translations": "null",
@@ -191,7 +191,7 @@
191
191
  "links": "[]",
192
192
  "channels": ["Announcements"],
193
193
  "audiences": [],
194
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
194
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
195
195
  "images": "[]",
196
196
  "videos": "[]",
197
197
  "translations": "null",
@@ -225,7 +225,7 @@
225
225
  "links": "[]",
226
226
  "channels": ["Announcements"],
227
227
  "audiences": [],
228
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
228
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
229
229
  "images": "[]",
230
230
  "videos": "[]",
231
231
  "translations": "null",
@@ -259,7 +259,7 @@
259
259
  "links": "[]",
260
260
  "channels": ["Announcements"],
261
261
  "audiences": [],
262
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
262
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
263
263
  "images": "[]",
264
264
  "videos": "[]",
265
265
  "translations": "null",
@@ -293,7 +293,7 @@
293
293
  "links": "[]",
294
294
  "channels": ["Announcements"],
295
295
  "audiences": [],
296
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
296
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
297
297
  "images": "[]",
298
298
  "videos": "[]",
299
299
  "translations": "null",
@@ -327,7 +327,7 @@
327
327
  "links": "[]",
328
328
  "channels": ["Announcements"],
329
329
  "audiences": [],
330
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
330
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
331
331
  "images": "[]",
332
332
  "videos": "[]",
333
333
  "translations": "null",
@@ -361,7 +361,7 @@
361
361
  "links": "[]",
362
362
  "channels": ["Announcements"],
363
363
  "audiences": [],
364
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
364
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
365
365
  "images": "[]",
366
366
  "videos": "[]",
367
367
  "translations": "null",
@@ -395,7 +395,7 @@
395
395
  "links": "[]",
396
396
  "channels": ["Announcements"],
397
397
  "audiences": [],
398
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
398
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
399
399
  "images": "[]",
400
400
  "videos": "[]",
401
401
  "translations": "null",
@@ -429,7 +429,7 @@
429
429
  "links": "[]",
430
430
  "channels": ["Announcements"],
431
431
  "audiences": [],
432
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
432
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
433
433
  "images": [{"files":[{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-md/Unknown_250x250.jpg","name":"thumbnail-md","width":250,"height":250,"filename":"Unknown_250x250.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-md/Unknown_250x250.jpg","filesize":26512},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-sm/Unknown_100x100.jpg","name":"thumbnail-sm","width":100,"height":100,"filename":"Unknown_100x100.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-sm/Unknown_100x100.jpg","filesize":6411},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-xs/Unknown_50x50.jpg","name":"thumbnail-xs","width":50,"height":50,"filename":"Unknown_50x50.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-xs/Unknown_50x50.jpg","filesize":2367},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/banner/Unknown_800x300.jpg","name":"banner","width":800,"height":300,"filename":"Unknown_800x300.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/banner/Unknown_800x300.jpg","filesize":72551},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/full/Unknown_1200x800.jpg","name":"full","width":1200,"height":800,"filename":"Unknown_1200x800.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/full/Unknown_1200x800.jpg","filesize":245500}],"isCover":true,"metadata":{"alt":""}}],
434
434
  "videos": "[]",
435
435
  "translations": "null",
@@ -463,7 +463,7 @@
463
463
  "links": "[]",
464
464
  "channels": ["Announcements"],
465
465
  "audiences": [],
466
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
466
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
467
467
  "images": "[]",
468
468
  "videos": "[]",
469
469
  "translations": "null",
@@ -497,7 +497,7 @@
497
497
  "links": "[]",
498
498
  "channels": ["Announcements"],
499
499
  "audiences": [],
500
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
500
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
501
501
  "images": "[]",
502
502
  "videos": "[]",
503
503
  "translations": "null",
@@ -531,7 +531,7 @@
531
531
  "links": "[]",
532
532
  "channels": ["Announcements"],
533
533
  "audiences": [],
534
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
534
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
535
535
  "images": "[]",
536
536
  "videos": "[]",
537
537
  "translations": "null",
@@ -565,7 +565,7 @@
565
565
  "links": "[]",
566
566
  "channels": ["Announcements"],
567
567
  "audiences": [],
568
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
568
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
569
569
  "images": "[]",
570
570
  "videos": "[]",
571
571
  "translations": "null",
@@ -599,7 +599,7 @@
599
599
  "links": "[]",
600
600
  "channels": ["Announcements"],
601
601
  "audiences": [],
602
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
602
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
603
603
  "images": "[]",
604
604
  "videos": "[]",
605
605
  "translations": "null",
@@ -633,7 +633,7 @@
633
633
  "links": "[]",
634
634
  "channels": ["Announcements"],
635
635
  "audiences": [],
636
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
636
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
637
637
  "images": "[]",
638
638
  "videos": "[]",
639
639
  "translations": "null",
@@ -667,7 +667,7 @@
667
667
  "links": "[]",
668
668
  "channels": ["Announcements"],
669
669
  "audiences": [],
670
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
670
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
671
671
  "images": "[]",
672
672
  "videos": "[]",
673
673
  "translations": "null",
@@ -701,7 +701,7 @@
701
701
  "links": "[]",
702
702
  "channels": ["Announcements"],
703
703
  "audiences": [],
704
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
704
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
705
705
  "images": "[]",
706
706
  "videos": "[]",
707
707
  "translations": "null",
@@ -735,7 +735,7 @@
735
735
  "links": "[]",
736
736
  "channels": ["Announcements"],
737
737
  "audiences": [],
738
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
738
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
739
739
  "images": "[]",
740
740
  "videos": "[]",
741
741
  "translations": "null",
@@ -769,7 +769,7 @@
769
769
  "links": "[]",
770
770
  "channels": ["Announcements"],
771
771
  "audiences": [],
772
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
772
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
773
773
  "images": "[]",
774
774
  "videos": "[]",
775
775
  "translations": "null",
@@ -803,7 +803,7 @@
803
803
  "links": "[]",
804
804
  "channels": ["Announcements"],
805
805
  "audiences": [],
806
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
806
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
807
807
  "images": [{"files":[{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-md/Unknown_250x250.jpg","name":"thumbnail-md","width":250,"height":250,"filename":"Unknown_250x250.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-md/Unknown_250x250.jpg","filesize":26512},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-sm/Unknown_100x100.jpg","name":"thumbnail-sm","width":100,"height":100,"filename":"Unknown_100x100.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-sm/Unknown_100x100.jpg","filesize":6411},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-xs/Unknown_50x50.jpg","name":"thumbnail-xs","width":50,"height":50,"filename":"Unknown_50x50.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/thumbnail-xs/Unknown_50x50.jpg","filesize":2367},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/banner/Unknown_800x300.jpg","name":"banner","width":800,"height":300,"filename":"Unknown_800x300.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/banner/Unknown_800x300.jpg","filesize":72551},{"url":"https://asd20websitestorage.blob.core.windows.net/website-files/message-images/dollar5000-donated-to-high-plains-elementary-school/full/Unknown_1200x800.jpg","name":"full","width":1200,"height":800,"filename":"Unknown_1200x800.jpg","filepath":"message-images/dollar5000-donated-to-high-plains-elementary-school/full/Unknown_1200x800.jpg","filesize":245500}],"isCover":true,"metadata":{"alt":""}}],
808
808
  "videos": "[]",
809
809
  "translations": "null",
@@ -837,7 +837,7 @@
837
837
  "links": "[]",
838
838
  "channels": ["Announcements"],
839
839
  "audiences": [],
840
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
840
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
841
841
  "images": "[]",
842
842
  "videos": "[]",
843
843
  "translations": "null",
@@ -871,7 +871,7 @@
871
871
  "links": "[]",
872
872
  "channels": ["Announcements"],
873
873
  "audiences": [],
874
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
874
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
875
875
  "images": "[]",
876
876
  "videos": "[]",
877
877
  "translations": "null",
@@ -905,7 +905,7 @@
905
905
  "links": "[]",
906
906
  "channels": ["Announcements"],
907
907
  "audiences": [],
908
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
908
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
909
909
  "images": "[]",
910
910
  "videos": "[]",
911
911
  "translations": "null",
@@ -939,7 +939,7 @@
939
939
  "links": "[]",
940
940
  "channels": ["Announcements"],
941
941
  "audiences": [],
942
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
942
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
943
943
  "images": "[]",
944
944
  "videos": "[]",
945
945
  "translations": "null",
@@ -973,7 +973,7 @@
973
973
  "links": "[]",
974
974
  "channels": ["Announcements"],
975
975
  "audiences": [],
976
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
976
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
977
977
  "images": "[]",
978
978
  "videos": "[]",
979
979
  "translations": "null",
@@ -1007,7 +1007,7 @@
1007
1007
  "links": "[]",
1008
1008
  "channels": ["Announcements"],
1009
1009
  "audiences": [],
1010
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
1010
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
1011
1011
  "images": "[]",
1012
1012
  "videos": "[]",
1013
1013
  "translations": "null",
@@ -1041,7 +1041,7 @@
1041
1041
  "links": "[]",
1042
1042
  "channels": ["Announcements"],
1043
1043
  "audiences": [],
1044
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
1044
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
1045
1045
  "images": "[]",
1046
1046
  "videos": "[]",
1047
1047
  "translations": "null",
@@ -1075,7 +1075,7 @@
1075
1075
  "links": "[]",
1076
1076
  "channels": ["Announcements"],
1077
1077
  "audiences": [],
1078
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
1078
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
1079
1079
  "images": "[]",
1080
1080
  "videos": "[]",
1081
1081
  "translations": "null",
@@ -1109,7 +1109,7 @@
1109
1109
  "links": "[]",
1110
1110
  "channels": ["Announcements"],
1111
1111
  "audiences": [],
1112
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
1112
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
1113
1113
  "images": "[]",
1114
1114
  "videos": "[]",
1115
1115
  "translations": "null",
@@ -1143,7 +1143,7 @@
1143
1143
  "links": "[]",
1144
1144
  "channels": ["Announcements"],
1145
1145
  "audiences": [],
1146
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
1146
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
1147
1147
  "images": "[]",
1148
1148
  "videos": "[]",
1149
1149
  "translations": "null",
@@ -78,7 +78,7 @@
78
78
  "links": "[]",
79
79
  "channels": ["News & Stories"],
80
80
  "audiences": [],
81
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
81
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
82
82
  "images": "[{\"files\":[{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-md/Screen Shot 2020-06-29 at 8.08.34 AM_250x250.jpg\",\"name\":\"thumbnail-md\",\"width\":250,\"height\":250,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_250x250.jpg\",\"filepath\":\"message-images//thumbnail-md/Screen Shot 2020-06-29 at 8.08.34 AM_250x250.jpg\",\"filesize\":18750},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-sm/Screen Shot 2020-06-29 at 8.08.34 AM_100x100.jpg\",\"name\":\"thumbnail-sm\",\"width\":100,\"height\":100,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_100x100.jpg\",\"filepath\":\"message-images//thumbnail-sm/Screen Shot 2020-06-29 at 8.08.34 AM_100x100.jpg\",\"filesize\":4884},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-xs/Screen Shot 2020-06-29 at 8.08.34 AM_50x50.jpg\",\"name\":\"thumbnail-xs\",\"width\":50,\"height\":50,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_50x50.jpg\",\"filepath\":\"message-images//thumbnail-xs/Screen Shot 2020-06-29 at 8.08.34 AM_50x50.jpg\",\"filesize\":1840},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//banner/Screen Shot 2020-06-29 at 8.08.34 AM_800x300.jpg\",\"name\":\"banner\",\"width\":800,\"height\":300,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_800x300.jpg\",\"filepath\":\"message-images//banner/Screen Shot 2020-06-29 at 8.08.34 AM_800x300.jpg\",\"filesize\":54628},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//full/Screen Shot 2020-06-29 at 8.08.34 AM_1200x800.jpg\",\"name\":\"full\",\"width\":1200,\"height\":800,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_1200x800.jpg\",\"filepath\":\"message-images//full/Screen Shot 2020-06-29 at 8.08.34 AM_1200x800.jpg\",\"filesize\":142032}],\"isCover\":true,\"metadata\":{\"alt\":\"A Pine Creek High School Graduate looking very self-assured.\"}}]",
83
83
  "videos": "[{\"id\":\"LXIJ87xshpc\",\"embedUrl\":\"https://www.youtube.com/embed/LXIJ87xshpc\",\"watchUrl\":\"https://www.youtube.com/watch?v=LXIJ87xshpc\",\"coverImageUrl\":\"https://img.youtube.com/vi/LXIJ87xshpc/0.jpg\"}]",
84
84
  "translations": "null",
@@ -146,7 +146,7 @@
146
146
  "links": "[]",
147
147
  "channels": ["News & Stories"],
148
148
  "audiences": [],
149
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
149
+ "ownerOrganizationId": "a6f3a682-acf0-909b-96d5-e840e6a44eb5",
150
150
  "images": "[{\"files\":[{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-md/Screen Shot 2020-06-24 at 8.55.16 AM_250x250.jpg\",\"name\":\"thumbnail-md\",\"width\":250,\"height\":250,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_250x250.jpg\",\"filepath\":\"message-images//thumbnail-md/Screen Shot 2020-06-24 at 8.55.16 AM_250x250.jpg\",\"filesize\":20822},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-sm/Screen Shot 2020-06-24 at 8.55.16 AM_100x100.jpg\",\"name\":\"thumbnail-sm\",\"width\":100,\"height\":100,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_100x100.jpg\",\"filepath\":\"message-images//thumbnail-sm/Screen Shot 2020-06-24 at 8.55.16 AM_100x100.jpg\",\"filesize\":5596},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-xs/Screen Shot 2020-06-24 at 8.55.16 AM_50x50.jpg\",\"name\":\"thumbnail-xs\",\"width\":50,\"height\":50,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_50x50.jpg\",\"filepath\":\"message-images//thumbnail-xs/Screen Shot 2020-06-24 at 8.55.16 AM_50x50.jpg\",\"filesize\":2107},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//banner/Screen Shot 2020-06-24 at 8.55.16 AM_800x300.jpg\",\"name\":\"banner\",\"width\":800,\"height\":300,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_800x300.jpg\",\"filepath\":\"message-images//banner/Screen Shot 2020-06-24 at 8.55.16 AM_800x300.jpg\",\"filesize\":58733},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//full/Screen Shot 2020-06-24 at 8.55.16 AM_1200x800.jpg\",\"name\":\"full\",\"width\":1200,\"height\":800,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_1200x800.jpg\",\"filepath\":\"message-images//full/Screen Shot 2020-06-24 at 8.55.16 AM_1200x800.jpg\",\"filesize\":150820}],\"isCover\":true,\"metadata\":{\"alt\":\"\"}}]",
151
151
  "videos": "[{\"id\":\"LHGxOBe4nPU\",\"embedUrl\":\"https://www.youtube.com/embed/LHGxOBe4nPU\",\"watchUrl\":\"https://www.youtube.com/watch?v=LHGxOBe4nPU\",\"coverImageUrl\":\"https://img.youtube.com/vi/LHGxOBe4nPU/0.jpg\"}]",
152
152
  "translations": "null",
@@ -418,7 +418,7 @@
418
418
  "links": "[]",
419
419
  "channels": ["News & Stories"],
420
420
  "audiences": [],
421
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
421
+ "ownerOrganizationId": "f4656914-9ec6-1811-aa5d-31f532f483d5",
422
422
  "images": "[{\"files\":[{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-md/Screen Shot 2020-06-29 at 8.08.34 AM_250x250.jpg\",\"name\":\"thumbnail-md\",\"width\":250,\"height\":250,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_250x250.jpg\",\"filepath\":\"message-images//thumbnail-md/Screen Shot 2020-06-29 at 8.08.34 AM_250x250.jpg\",\"filesize\":18750},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-sm/Screen Shot 2020-06-29 at 8.08.34 AM_100x100.jpg\",\"name\":\"thumbnail-sm\",\"width\":100,\"height\":100,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_100x100.jpg\",\"filepath\":\"message-images//thumbnail-sm/Screen Shot 2020-06-29 at 8.08.34 AM_100x100.jpg\",\"filesize\":4884},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-xs/Screen Shot 2020-06-29 at 8.08.34 AM_50x50.jpg\",\"name\":\"thumbnail-xs\",\"width\":50,\"height\":50,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_50x50.jpg\",\"filepath\":\"message-images//thumbnail-xs/Screen Shot 2020-06-29 at 8.08.34 AM_50x50.jpg\",\"filesize\":1840},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//banner/Screen Shot 2020-06-29 at 8.08.34 AM_800x300.jpg\",\"name\":\"banner\",\"width\":800,\"height\":300,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_800x300.jpg\",\"filepath\":\"message-images//banner/Screen Shot 2020-06-29 at 8.08.34 AM_800x300.jpg\",\"filesize\":54628},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//full/Screen Shot 2020-06-29 at 8.08.34 AM_1200x800.jpg\",\"name\":\"full\",\"width\":1200,\"height\":800,\"filename\":\"Screen Shot 2020-06-29 at 8.08.34 AM_1200x800.jpg\",\"filepath\":\"message-images//full/Screen Shot 2020-06-29 at 8.08.34 AM_1200x800.jpg\",\"filesize\":142032}],\"isCover\":true,\"metadata\":{\"alt\":\"\"}}]",
423
423
  "videos": "[{\"id\":\"LXIJ87xshpc\",\"embedUrl\":\"https://www.youtube.com/embed/LXIJ87xshpc\",\"watchUrl\":\"https://www.youtube.com/watch?v=LXIJ87xshpc\",\"coverImageUrl\":\"https://img.youtube.com/vi/LXIJ87xshpc/0.jpg\"}]",
424
424
  "translations": "null",
@@ -486,7 +486,7 @@
486
486
  "links": "[]",
487
487
  "channels": ["News & Stories"],
488
488
  "audiences": [],
489
- "ownerOrganizationId": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
489
+ "ownerOrganizationId": "a6f3a682-acf0-909b-96d5-e840e6a44eb5",
490
490
  "images": "[{\"files\":[{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-md/Screen Shot 2020-06-24 at 8.55.16 AM_250x250.jpg\",\"name\":\"thumbnail-md\",\"width\":250,\"height\":250,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_250x250.jpg\",\"filepath\":\"message-images//thumbnail-md/Screen Shot 2020-06-24 at 8.55.16 AM_250x250.jpg\",\"filesize\":20822},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-sm/Screen Shot 2020-06-24 at 8.55.16 AM_100x100.jpg\",\"name\":\"thumbnail-sm\",\"width\":100,\"height\":100,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_100x100.jpg\",\"filepath\":\"message-images//thumbnail-sm/Screen Shot 2020-06-24 at 8.55.16 AM_100x100.jpg\",\"filesize\":5596},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//thumbnail-xs/Screen Shot 2020-06-24 at 8.55.16 AM_50x50.jpg\",\"name\":\"thumbnail-xs\",\"width\":50,\"height\":50,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_50x50.jpg\",\"filepath\":\"message-images//thumbnail-xs/Screen Shot 2020-06-24 at 8.55.16 AM_50x50.jpg\",\"filesize\":2107},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//banner/Screen Shot 2020-06-24 at 8.55.16 AM_800x300.jpg\",\"name\":\"banner\",\"width\":800,\"height\":300,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_800x300.jpg\",\"filepath\":\"message-images//banner/Screen Shot 2020-06-24 at 8.55.16 AM_800x300.jpg\",\"filesize\":58733},{\"url\":\"https://asd20websitestorage.blob.core.windows.net/website-files/message-images//full/Screen Shot 2020-06-24 at 8.55.16 AM_1200x800.jpg\",\"name\":\"full\",\"width\":1200,\"height\":800,\"filename\":\"Screen Shot 2020-06-24 at 8.55.16 AM_1200x800.jpg\",\"filepath\":\"message-images//full/Screen Shot 2020-06-24 at 8.55.16 AM_1200x800.jpg\",\"filesize\":150820}],\"isCover\":true,\"metadata\":{\"alt\":\"\"}}]",
491
491
  "videos": "[{\"id\":\"LHGxOBe4nPU\",\"embedUrl\":\"https://www.youtube.com/embed/LHGxOBe4nPU\",\"watchUrl\":\"https://www.youtube.com/watch?v=LHGxOBe4nPU\",\"coverImageUrl\":\"https://img.youtube.com/vi/LHGxOBe4nPU/0.jpg\"}]",
492
492
  "translations": "null",
@@ -1148,7 +1148,7 @@
1148
1148
  "id": "a6f3a682-acf0-909b-96d5-e840e6a44eb5",
1149
1149
  "title": "Liberty High School",
1150
1150
  "educationLevels": ["High"],
1151
- "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/lhs_logo_vectorized_simple.png",
1151
+ "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/LHS.png",
1152
1152
  "website": "https://liberty.asd20.org"
1153
1153
  }, {
1154
1154
  "id": "7894ef7c-3016-b822-9727-4aa0880f3c7e",
@@ -1449,7 +1449,7 @@
1449
1449
  "id": "26eaf390-d8ab-11e9-a3a8-5de5bba4f125",
1450
1450
  "title": "Academy District 20",
1451
1451
  "educationLevels": [],
1452
- "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/asd20logo.png",
1452
+ "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/ASD20.png",
1453
1453
  "website": "https://www.asd20.org"
1454
1454
  }, {
1455
1455
  "id": "10a1d179-6149-064e-7034-36c1a1e7f790",
@@ -1617,7 +1617,7 @@
1617
1617
  "id": "a6f3a682-acf0-909b-96d5-e840e6a44eb5",
1618
1618
  "title": "Liberty High School",
1619
1619
  "educationLevels": ["High"],
1620
- "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/lhs_logo_vectorized_simple.png",
1620
+ "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/LHS.png",
1621
1621
  "website": "https://liberty.asd20.org"
1622
1622
  }, {
1623
1623
  "id": "7894ef7c-3016-b822-9727-4aa0880f3c7e",
@@ -36,7 +36,7 @@ export default function expandEvents(events) {
36
36
  const newStart = addDays(start, d)
37
37
  // Normalize newStart to ignore time
38
38
  newStart.setHours(0, 0, 0, 0)
39
- console.log('newStart:', newStart)
39
+ // console.log('newStart:', newStart)
40
40
 
41
41
  if (newStart >= today) {
42
42
  a.push({
@@ -1,6 +1,11 @@
1
1
  import format from 'date-fns/format'
2
2
 
3
- export default function mapMessageToCard(message, options = {}) {
3
+ export default function mapMessageToCard(
4
+ message,
5
+ options = {},
6
+ organization = {},
7
+ organizationOptions = []
8
+ ) {
4
9
  const videos = !Array.isArray(message.videos)
5
10
  ? JSON.parse(message.videos) || []
6
11
  : message.videos
@@ -23,6 +28,22 @@ export default function mapMessageToCard(message, options = {}) {
23
28
  Announcements: '/announcements/',
24
29
  }
25
30
 
31
+ // Check for organization ID match
32
+ let baseLink = `${channelPrefixMap[channelTitle]}${message.slug}`
33
+ let sourceOrg = null
34
+ let websiteLogo = null
35
+
36
+ if (message.ownerOrganizationId !== organization.id) {
37
+ const matchedOrg = organizationOptions.find(
38
+ org => org.id === message.ownerOrganizationId
39
+ )
40
+ if (matchedOrg) {
41
+ baseLink = `${matchedOrg.website}${channelPrefixMap[channelTitle]}${message.slug}`
42
+ websiteLogo = matchedOrg.logoImageUrl
43
+ sourceOrg = matchedOrg.title
44
+ }
45
+ }
46
+
26
47
  return Object.assign(
27
48
  {
28
49
  title: message.title,
@@ -34,9 +55,11 @@ export default function mapMessageToCard(message, options = {}) {
34
55
  pinned: message.isFeatured || message.isDistrictFeatured,
35
56
  image: bannerImageOrDefault ? bannerImageOrDefault.url : '',
36
57
  alt: bannerImageOrDefault ? coverImageAlt : '',
37
- link: `${channelPrefixMap[channelTitle]}${message.slug}`,
58
+ link: baseLink,
38
59
  hasGallery: images.length > 0,
39
60
  hasVideo: videos.length > 0,
61
+ sourceOrg: sourceOrg,
62
+ websiteLogo: websiteLogo,
40
63
  },
41
64
  options
42
65
  )