@openeventkit/event-site 1.0.50 → 1.0.52
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": "1.0.
|
|
4
|
+
"version": "1.0.52",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@mui/base": "^5.0.0-alpha.114",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"stream-browserify": "^3.0.0",
|
|
118
118
|
"stream-chat": "^2.7.2",
|
|
119
119
|
"stream-chat-react": "3.1.7",
|
|
120
|
-
"summit-registration-lite": "4.0.
|
|
120
|
+
"summit-registration-lite": "4.0.22",
|
|
121
121
|
"superagent": "8.0.9",
|
|
122
122
|
"sweetalert2": "^9.17.0",
|
|
123
123
|
"upcoming-events-widget": "2.0.8",
|
|
@@ -45,6 +45,7 @@ const allSchedulesReducer = (state = DEFAULT_STATE, action) => {
|
|
|
45
45
|
case RELOAD_SCHED_DATA:
|
|
46
46
|
{
|
|
47
47
|
const {eventsData: allScheduleEvents, summitData, isLoggedUser, userProfile, eventsIDXData } = payload;
|
|
48
|
+
const allEventsTagExclusion = filterEventsByTags(allScheduleEvents);
|
|
48
49
|
|
|
49
50
|
const schedules = summitData?.schedule_settings?.map(sched => {
|
|
50
51
|
|
|
@@ -62,7 +63,7 @@ const allSchedulesReducer = (state = DEFAULT_STATE, action) => {
|
|
|
62
63
|
return result;
|
|
63
64
|
}, {});
|
|
64
65
|
|
|
65
|
-
const newData = {...sched, all_events:
|
|
66
|
+
const newData = {...sched, all_events: allEventsTagExclusion, baseFilters: newFilters, filters: newFilters, pre_filters: newPreFilters};
|
|
66
67
|
|
|
67
68
|
const schedState = scheduleReducer(scheduleState, {type: `SCHED_${type}`, payload: {...newData, isLoggedUser, userProfile }});
|
|
68
69
|
|
|
@@ -77,7 +78,7 @@ const allSchedulesReducer = (state = DEFAULT_STATE, action) => {
|
|
|
77
78
|
allEvents:allScheduleEvents,
|
|
78
79
|
schedules,
|
|
79
80
|
allIDXEvents: eventsIDXData,
|
|
80
|
-
allScheduleEvents:
|
|
81
|
+
allScheduleEvents: allEventsTagExclusion
|
|
81
82
|
};
|
|
82
83
|
}
|
|
83
84
|
case GET_EVENT_DATA: {
|
|
Binary file
|
|
Binary file
|