@openeventkit/event-site 2.0.138 → 2.0.140
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.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openeventkit/event-site",
|
|
3
3
|
"description": "Event Site",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.140",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@fortawesome/fontawesome-svg-core": "^6.5.2",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"jsdom": "^24.1.0",
|
|
79
79
|
"klaro": "^0.7.21",
|
|
80
80
|
"lite-schedule-widget": "3.0.3",
|
|
81
|
-
"live-event-widget": "4.0.
|
|
81
|
+
"live-event-widget": "4.0.3",
|
|
82
82
|
"lodash": "^4.17.19",
|
|
83
83
|
"lz-string": "^1.4.4",
|
|
84
84
|
"markdown-it": "^12.0.0",
|
|
@@ -111,6 +111,7 @@
|
|
|
111
111
|
"react-star-ratings": "^2.3.0",
|
|
112
112
|
"react-stars": "^2.2.5",
|
|
113
113
|
"react-tabs": "^3.0.0",
|
|
114
|
+
"react-textfit": "^1.1.1",
|
|
114
115
|
"react-tooltip": "^3.11.6",
|
|
115
116
|
"react-transition-group": "^4.4.2",
|
|
116
117
|
"react-useportal": "^1.0.16",
|
|
@@ -130,10 +131,10 @@
|
|
|
130
131
|
"stream-browserify": "^3.0.0",
|
|
131
132
|
"stream-chat": "^2.7.2",
|
|
132
133
|
"stream-chat-react": "3.1.7",
|
|
133
|
-
"summit-registration-lite": "5.0.
|
|
134
|
+
"summit-registration-lite": "5.0.40",
|
|
134
135
|
"superagent": "8.0.9",
|
|
135
136
|
"sweetalert2": "^9.17.0",
|
|
136
|
-
"upcoming-events-widget": "3.0.
|
|
137
|
+
"upcoming-events-widget": "3.0.6",
|
|
137
138
|
"urijs": "^1.19.2",
|
|
138
139
|
"use-fit-text": "^2.4.0",
|
|
139
140
|
"uuid": "^7.0.0",
|
|
@@ -181,7 +181,21 @@ export const fetchSpeakerById = async(summitId, speakerId, accessToken = null) =
|
|
|
181
181
|
export const fetchSummitById = async(summitId, accessToken = null) => {
|
|
182
182
|
let apiUrl = URI(`${process.env.GATSBY_SUMMIT_API_BASE_URL}/api/public/v1/summits/${summitId}`);
|
|
183
183
|
|
|
184
|
-
|
|
184
|
+
const expand = [
|
|
185
|
+
'event_types',
|
|
186
|
+
'tracks',
|
|
187
|
+
'tracks.subtracks',
|
|
188
|
+
'track_groups',
|
|
189
|
+
'presentation_levels',
|
|
190
|
+
'locations.rooms',
|
|
191
|
+
'locations.floors',
|
|
192
|
+
'order_extra_questions.values',
|
|
193
|
+
'schedule_settings',
|
|
194
|
+
'schedule_settings.filters',
|
|
195
|
+
'schedule_settings.pre_filters',
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
apiUrl.addQuery('expand', expand.join(','));
|
|
185
199
|
|
|
186
200
|
return fetch(apiUrl.toString(), {
|
|
187
201
|
method: 'GET'
|
|
@@ -17,7 +17,7 @@ const containerStyles = {
|
|
|
17
17
|
const titleStyle = {
|
|
18
18
|
color: "var(--color_text_light)",
|
|
19
19
|
fontFamily: "var(--font_family)",
|
|
20
|
-
fontSize: "
|
|
20
|
+
fontSize: "42px",
|
|
21
21
|
fontWeight: 600,
|
|
22
22
|
lineHeight: 1.125
|
|
23
23
|
};
|
|
@@ -25,7 +25,7 @@ const titleStyle = {
|
|
|
25
25
|
const subtitleStyle = {
|
|
26
26
|
color: "var(--color_text_light)",
|
|
27
27
|
fontFamily: "var(--font_family)",
|
|
28
|
-
fontSize: "
|
|
28
|
+
fontSize: "36px",
|
|
29
29
|
fontWeight: 400,
|
|
30
30
|
lineHeight: 1.25
|
|
31
31
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import Player from '@vimeo/player';
|
|
4
|
+
import * as Sentry from "@sentry/react";
|
|
4
5
|
import eventNames from './VimeoPlayerEventNames';
|
|
5
6
|
import Swal from 'sweetalert2';
|
|
6
7
|
|
|
@@ -387,6 +388,7 @@ VimeoPlayer.defaultProps = {
|
|
|
387
388
|
onError: (error) => {
|
|
388
389
|
Swal.fire('Error', 'This video stream will begin momentarily. Please standby.', "warning");
|
|
389
390
|
console.log(error);
|
|
391
|
+
Sentry.captureException(error)
|
|
390
392
|
}
|
|
391
393
|
};
|
|
392
394
|
|