@openeventkit/event-site 2.0.134 → 2.0.136

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.134",
4
+ "version": "2.0.136",
5
5
  "author": "Tipit LLC",
6
6
  "dependencies": {
7
7
  "@fortawesome/fontawesome-svg-core": "^6.5.2",
@@ -30,7 +30,7 @@
30
30
  "@vimeo/player": "^2.16.3",
31
31
  "ably": "^1.2.34",
32
32
  "assert": "^2.1.0",
33
- "attendee-to-attendee-widget": "3.1.1-beta.34",
33
+ "attendee-to-attendee-widget": "3.2.0",
34
34
  "autoprefixer": "10.4.14",
35
35
  "awesome-bootstrap-checkbox": "^1.0.1",
36
36
  "axios": "^0.19.2",
@@ -197,7 +197,7 @@ const mapState = ({ settingState }) => ({
197
197
 
198
198
  export const AttendeesWidget = connect(mapState)(AttendeesWidgetComponent);
199
199
 
200
- const AccessTracker = ({ user, isLoggedUser, summitPhase, chatSettings }) => {
200
+ const AccessTracker = ({ user, isLoggedUser, summitPhase, chatSettings, updateChatProfileEnabled=false }) => {
201
201
  const chatProps = {
202
202
  streamApiKey: getEnvVariable(STREAM_IO_API_KEY),
203
203
  apiBaseUrl: getEnvVariable(IDP_BASE_URL),
@@ -299,6 +299,7 @@ const AccessTracker = ({ user, isLoggedUser, summitPhase, chatSettings }) => {
299
299
  },
300
300
  summitId: parseInt(getEnvVariable(SUMMIT_ID)),
301
301
  keepAliveEnabled: true,
302
+ updateChatProfileEnabled: updateChatProfileEnabled,
302
303
  ...chatProps,
303
304
  ...sbAuthProps
304
305
  };
@@ -27,7 +27,7 @@ const FullSchedule = ({
27
27
  ...rest
28
28
  }) => {
29
29
  const { getSettingByKey } = useMarketingSettings();
30
- const defaultImage = getSettingByKey(MARKETING_SETTINGS_KEYS.schedultDefaultImage);
30
+ const defaultImage = getSettingByKey(MARKETING_SETTINGS_KEYS.scheduleDefaultImage);
31
31
  const summitLogoPrint = getSettingByKey(MARKETING_SETTINGS_KEYS.fullScheduleSummitLogoPrint);
32
32
  const componentProps = {
33
33
  title: "Schedule",
@@ -5,7 +5,7 @@ import {connect} from "react-redux";
5
5
  // these two libraries are client-side only
6
6
  import LiteSchedule from "lite-schedule-widget/dist";
7
7
  import "lite-schedule-widget/dist/index.css";
8
- // awesome-bootstrap-checkbox css dependency
8
+ // awesome-bootstrap-checkbox css dependency
9
9
  // https://cdnjs.cloudflare.com/ajax/libs/awesome-bootstrap-checkbox/1.0.2/awesome-bootstrap-checkbox.min.css
10
10
  // injected through HeadComponents
11
11
 
@@ -26,7 +26,7 @@ const LiteScheduleComponent = ({
26
26
  ...rest
27
27
  }) => {
28
28
  const { getSettingByKey } = useMarketingSettings();
29
- const defaultImage = getSettingByKey(MARKETING_SETTINGS_KEYS.schedultDefaultImage);
29
+ const defaultImage = getSettingByKey(MARKETING_SETTINGS_KEYS.scheduleDefaultImage);
30
30
  const scheduleState = schedules?.find( s => s.key === schedKey);
31
31
 
32
32
  const componentProps = {
@@ -5,7 +5,7 @@ import {connect} from "react-redux";
5
5
  // these two libraries are client-side only
6
6
  import LiveEventWidget from 'live-event-widget/dist/index.js';
7
7
  import 'live-event-widget/dist/index.css';
8
- // awesome-bootstrap-checkbox css dependency
8
+ // awesome-bootstrap-checkbox css dependency
9
9
  // https://cdnjs.cloudflare.com/ajax/libs/awesome-bootstrap-checkbox/1.0.2/awesome-bootstrap-checkbox.min.css
10
10
  // injected through HeadComponents
11
11
 
@@ -20,9 +20,8 @@ const LiveEventWidgetComponent = ({
20
20
  ...rest
21
21
  }) => {
22
22
  const { getSettingByKey } = useMarketingSettings();
23
- const defaultImage = getSettingByKey(MARKETING_SETTINGS_KEYS.schedultDefaultImage);
23
+ const defaultImage = getSettingByKey(MARKETING_SETTINGS_KEYS.scheduleDefaultImage);
24
24
  const scheduleState = schedules?.find( s => s.key === 'schedule-main');
25
-
26
25
  const widgetProps = {
27
26
  title: "",
28
27
  defaultImage: defaultImage,
@@ -5,7 +5,7 @@ import { connect } from "react-redux";
5
5
  // these two libraries are client-side only
6
6
  import UpcomingEvents from "upcoming-events-widget/dist";
7
7
  import "upcoming-events-widget/dist/index.css";
8
- // awesome-bootstrap-checkbox css dependency
8
+ // awesome-bootstrap-checkbox css dependency
9
9
  // https://cdnjs.cloudflare.com/ajax/libs/awesome-bootstrap-checkbox/1.0.2/awesome-bootstrap-checkbox.min.css
10
10
  // injected through HeadComponents
11
11
 
@@ -27,7 +27,7 @@ const UpcomingEventsComponent = ({
27
27
  }) => {
28
28
  const wrapperClass = page === "marketing-site" ? "schedule-container-marketing" : "schedule-container";
29
29
  const { getSettingByKey } = useMarketingSettings();
30
- const defaultImage = getSettingByKey(MARKETING_SETTINGS_KEYS.schedultDefaultImage);
30
+ const defaultImage = getSettingByKey(MARKETING_SETTINGS_KEYS.scheduleDefaultImage);
31
31
  const scheduleState = schedules?.find( s => s.key === 'schedule-main');
32
32
 
33
33
  const componentProps = {
@@ -650,7 +650,7 @@ export const FullProfilePageTemplate = ({ user, getIDPProfile, updateProfile, up
650
650
  handleClose={() => handleTogglePopup(false)}
651
651
  />
652
652
  }
653
- <AccessTracker />
653
+ <AccessTracker updateChatProfileEnabled={true} />
654
654
  </React.Fragment>
655
655
  )
656
656
  };