@plusscommunities/pluss-core-web 1.6.13-beta.0 → 1.6.15-beta.0
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 +1 -2
- package/rollup.config.js +45 -45
- package/src/actions/AuthActions.js +40 -40
- package/src/actions/LocalActions.js +5 -5
- package/src/actions/NavActions.js +5 -5
- package/src/actions/ScheduledActionsActions.js +5 -5
- package/src/actions/TemplateActions.js +9 -9
- package/src/actions/UsersActions.js +74 -70
- package/src/actions/index.js +6 -6
- package/src/actions/types.js +17 -17
- package/src/analytics.js +178 -158
- package/src/apis/analyticsActions.js +50 -50
- package/src/apis/authActions.js +55 -55
- package/src/apis/fileActions.js +147 -142
- package/src/apis/index.js +10 -10
- package/src/apis/profileActions.js +130 -130
- package/src/apis/scheduledActionsActions.js +9 -9
- package/src/apis/stringActions.js +26 -22
- package/src/apis/templateActions.js +38 -38
- package/src/apis/typeActions.js +183 -183
- package/src/apis/userActions.js +166 -166
- package/src/apis/utilityActions.js +32 -32
- package/src/colours.js +79 -77
- package/src/components/AddButton.js +29 -20
- package/src/components/AnalyticsFilter.js +136 -102
- package/src/components/Attachment.js +36 -22
- package/src/components/AudienceIncluder.js +209 -165
- package/src/components/AudienceSelector.js +680 -680
- package/src/components/Button.js +79 -56
- package/src/components/CheckBox.js +77 -65
- package/src/components/ColourOptions.js +205 -181
- package/src/components/ColourPicker.js +286 -244
- package/src/components/Comment.js +48 -39
- package/src/components/CommentSection.js +113 -103
- package/src/components/DatePicker.js +298 -255
- package/src/components/DropdownInput.js +236 -215
- package/src/components/DurationInput.js +46 -43
- package/src/components/ExportCsvPopup.js +236 -217
- package/src/components/FileInput.js +359 -346
- package/src/components/GenericInput.js +184 -153
- package/src/components/Header.js +88 -65
- package/src/components/HubSidebar.js +136 -124
- package/src/components/ImageInput.js +1182 -973
- package/src/components/InputGroup.js +20 -13
- package/src/components/MakerPopup.js +285 -278
- package/src/components/MoreMenu.js +21 -17
- package/src/components/OptionsSection.js +86 -74
- package/src/components/OverlayPage.js +61 -61
- package/src/components/OverlayPageBottomButtons.js +38 -38
- package/src/components/OverlayPageContents.js +38 -38
- package/src/components/OverlayPageSection.js +24 -24
- package/src/components/P60Icon.js +38 -33
- package/src/components/PageTitle.js +8 -8
- package/src/components/Popup.js +114 -95
- package/src/components/ProfilePic.js +40 -40
- package/src/components/RadioButton.js +142 -126
- package/src/components/Reactions.js +66 -66
- package/src/components/SVGIcon.js +31 -25
- package/src/components/SideNavItem.js +112 -83
- package/src/components/StatBox.js +54 -44
- package/src/components/StatusButton.js +31 -17
- package/src/components/SuccessPopup.js +61 -48
- package/src/components/Tabs.js +50 -47
- package/src/components/Tag.js +54 -54
- package/src/components/Text.js +18 -14
- package/src/components/TextFormatPopup.js +77 -49
- package/src/components/TimePicker.js +214 -200
- package/src/components/ToggleSwitch.js +60 -0
- package/src/components/UserListing.js +110 -97
- package/src/components/index.js +46 -46
- package/src/components/svg-icons.json +819 -819
- package/src/config.js +22 -22
- package/src/helper/HelpDeskWidget.js +4 -4
- package/src/helper/api/getUrl.js +16 -11
- package/src/helper/api/getUrlParams.js +8 -5
- package/src/helper/api/safeReadParams.js +3 -2
- package/src/helper/auth/getUserFromState.js +4 -4
- package/src/helper/colours/getAppColourFromState.js +10 -5
- package/src/helper/files/canvasImageUploader.js +152 -140
- package/src/helper/files/generateImageName.js +6 -6
- package/src/helper/files/get1400.js +33 -25
- package/src/helper/files/getExtension.js +5 -5
- package/src/helper/files/getFileName.js +9 -9
- package/src/helper/files/getThumb300.js +37 -29
- package/src/helper/files/isVideo.js +3 -3
- package/src/helper/helper.js +59 -56
- package/src/helper/index.js +29 -29
- package/src/helper/site/getMerchantsFromState.js +8 -4
- package/src/helper/site/getSiteLevelFromState.js +29 -29
- package/src/helper/site/getSiteName.js +11 -11
- package/src/helper/site/getSiteNameFromRoles.js +7 -7
- package/src/helper/site/getSiteSettingFromState.js +10 -5
- package/src/helper/storage/readJSONFromStorage.js +5 -5
- package/src/helper/storage/readStorageWithCookie.js +17 -17
- package/src/helper/storage/setLocalStorage.js +1 -1
- package/src/helper/strings/getFirstName.js +5 -5
- package/src/helper/strings/htmlDecode.js +2 -2
- package/src/helper/strings/htmlEncode.js +2 -2
- package/src/helper/strings/isEmail.js +7 -6
- package/src/helper/strings/isUrl.js +7 -7
- package/src/helper/strings/onlyAlphanumeric.js +4 -4
- package/src/helper/strings/randomString.js +6 -6
- package/src/helper/strings/toParagraphed.js +12 -12
- package/src/index.js +22 -11
- package/src/reducers/ScheduledActionsReducer.js +8 -8
- package/src/reducers/TemplatesReducer.js +22 -22
- package/src/reducers/index.js +4 -4
- package/src/session.js +70 -70
- package/src/urls.js +17 -16
- package/dist/index.cjs.js +0 -11623
- package/dist/index.esm.js +0 -11583
- package/dist/index.umd.js +0 -11595
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plusscommunities/pluss-core-web",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.15-beta.0",
|
|
4
4
|
"description": "Core extension package for Pluss Communities platform",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"@rollup/plugin-babel": "^5.3.0",
|
|
24
24
|
"@rollup/plugin-json": "^4.1.0",
|
|
25
25
|
"autoprefixer": "^10.2.6",
|
|
26
|
-
"react-lottie": "^1.2.10",
|
|
27
26
|
"rollup": "^2.50.1",
|
|
28
27
|
"rollup-plugin-local-resolve": "^1.0.7",
|
|
29
28
|
"rollup-plugin-styles": "^3.14.1"
|
package/rollup.config.js
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
import styles from
|
|
2
|
-
const autoprefixer = require(
|
|
3
|
-
import babel from
|
|
4
|
-
import json from
|
|
5
|
-
import localResolve from
|
|
1
|
+
import styles from "rollup-plugin-styles";
|
|
2
|
+
const autoprefixer = require("autoprefixer");
|
|
3
|
+
import babel from "@rollup/plugin-babel";
|
|
4
|
+
import json from "@rollup/plugin-json";
|
|
5
|
+
import localResolve from "rollup-plugin-local-resolve";
|
|
6
6
|
|
|
7
7
|
// the entry point for the library
|
|
8
|
-
const input =
|
|
8
|
+
const input = "src/index.js";
|
|
9
9
|
|
|
10
10
|
var MODE = [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
{
|
|
12
|
+
fomart: "cjs",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
fomart: "esm",
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
fomart: "umd",
|
|
19
|
+
},
|
|
20
20
|
];
|
|
21
21
|
|
|
22
22
|
var config = [];
|
|
23
23
|
|
|
24
24
|
MODE.map((m) => {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
25
|
+
var conf = {
|
|
26
|
+
input: input,
|
|
27
|
+
output: {
|
|
28
|
+
// then name of your package
|
|
29
|
+
name: "@plusscommunities/pluss-core-web",
|
|
30
|
+
file: `dist/index.${m.fomart}.js`,
|
|
31
|
+
format: m.fomart,
|
|
32
|
+
exports: "auto",
|
|
33
|
+
},
|
|
34
|
+
// this externelizes react to prevent rollup from compiling it
|
|
35
|
+
external: ["react", /@babel\/runtime/],
|
|
36
|
+
plugins: [
|
|
37
|
+
// these are babel comfigurations
|
|
38
|
+
babel({
|
|
39
|
+
exclude: "node_modules/**",
|
|
40
|
+
presets: ["@babel/preset-react", "@babel/preset-env"],
|
|
41
|
+
plugins: ["@babel/transform-runtime"],
|
|
42
|
+
babelHelpers: "runtime",
|
|
43
|
+
}),
|
|
44
|
+
// this adds support for styles
|
|
45
|
+
styles({
|
|
46
|
+
postcss: {
|
|
47
|
+
plugins: [autoprefixer()],
|
|
48
|
+
},
|
|
49
|
+
}),
|
|
50
|
+
json(),
|
|
51
|
+
localResolve(),
|
|
52
|
+
],
|
|
53
|
+
};
|
|
54
|
+
config.push(conf);
|
|
55
55
|
});
|
|
56
56
|
|
|
57
57
|
export default [...config];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SET_AUTH, CHANGE_SITE, UPDATE_PROFILE, LOGOUT } from
|
|
1
|
+
import { SET_AUTH, CHANGE_SITE, UPDATE_PROFILE, LOGOUT } from "./types";
|
|
2
2
|
// import { getEnabledFeatures } from '../session';
|
|
3
3
|
// import { authActions, typeActions } from '../apis';
|
|
4
4
|
|
|
@@ -29,55 +29,55 @@ import { SET_AUTH, CHANGE_SITE, UPDATE_PROFILE, LOGOUT } from './types';
|
|
|
29
29
|
// };
|
|
30
30
|
|
|
31
31
|
export const setAuth = (stuff) => {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
return {
|
|
33
|
+
type: SET_AUTH,
|
|
34
|
+
payload: stuff,
|
|
35
|
+
};
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
export const setAuthUser = (auth, user, site) => {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
39
|
+
return (dispatch) => {
|
|
40
|
+
if (!auth && !user && !site) {
|
|
41
|
+
dispatch({
|
|
42
|
+
type: LOGOUT,
|
|
43
|
+
payload: null,
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
dispatch({
|
|
47
|
+
type: SET_AUTH,
|
|
48
|
+
payload: {
|
|
49
|
+
auth,
|
|
50
|
+
user,
|
|
51
|
+
site,
|
|
52
|
+
originalSite: site,
|
|
53
|
+
},
|
|
54
|
+
});
|
|
55
|
+
};
|
|
56
56
|
};
|
|
57
57
|
|
|
58
58
|
export const setRemember = (chooken) => {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
59
|
+
return {
|
|
60
|
+
type: SET_AUTH,
|
|
61
|
+
payload: {
|
|
62
|
+
chooken,
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
65
|
};
|
|
66
66
|
|
|
67
67
|
export const setAuthLocation = (site) => {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
68
|
+
console.log("setting auth location");
|
|
69
|
+
console.log(site);
|
|
70
|
+
return {
|
|
71
|
+
type: CHANGE_SITE,
|
|
72
|
+
payload: {
|
|
73
|
+
site,
|
|
74
|
+
},
|
|
75
|
+
};
|
|
76
76
|
};
|
|
77
77
|
|
|
78
78
|
export const updateProfile = (changes) => {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
79
|
+
return {
|
|
80
|
+
type: UPDATE_PROFILE,
|
|
81
|
+
payload: changes,
|
|
82
|
+
};
|
|
83
83
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ADD_RECENTLY_CREATED } from
|
|
1
|
+
import { ADD_RECENTLY_CREATED } from "./types";
|
|
2
2
|
|
|
3
3
|
export const addRecentlyCreated = (feature) => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
return {
|
|
5
|
+
type: ADD_RECENTLY_CREATED,
|
|
6
|
+
payload: feature,
|
|
7
|
+
};
|
|
8
8
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { SCHEDULED_ACTIONS_LOADED } from
|
|
1
|
+
import { SCHEDULED_ACTIONS_LOADED } from "./types";
|
|
2
2
|
|
|
3
3
|
export const scheduledActionsLoaded = (scheduledActions) => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
return {
|
|
5
|
+
type: SCHEDULED_ACTIONS_LOADED,
|
|
6
|
+
payload: scheduledActions,
|
|
7
|
+
};
|
|
8
8
|
};
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { TEMPLATES_LOADED, TEMPLATE_REMOVED } from
|
|
1
|
+
import { TEMPLATES_LOADED, TEMPLATE_REMOVED } from "./types";
|
|
2
2
|
|
|
3
3
|
export const templatesLoaded = (template) => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
return {
|
|
5
|
+
type: TEMPLATES_LOADED,
|
|
6
|
+
payload: template,
|
|
7
|
+
};
|
|
8
8
|
};
|
|
9
9
|
|
|
10
10
|
export const removeTemplate = (id) => {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
return {
|
|
12
|
+
type: TEMPLATE_REMOVED,
|
|
13
|
+
payload: id,
|
|
14
|
+
};
|
|
15
15
|
};
|
|
@@ -1,95 +1,99 @@
|
|
|
1
|
-
import _ from
|
|
1
|
+
import _ from "lodash";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
} from
|
|
12
|
-
import { userActions } from
|
|
13
|
-
import { readStorageWithCookie } from
|
|
3
|
+
USERS_LOADED,
|
|
4
|
+
USER_REMOVED,
|
|
5
|
+
USERS_PURGE,
|
|
6
|
+
USERS_LOADING,
|
|
7
|
+
USERS_RESIDENT_COUNT_SET,
|
|
8
|
+
INVITE_CODES_LOADED,
|
|
9
|
+
INVITE_CODE_UPDATED,
|
|
10
|
+
INVITE_CODE_REMOVED,
|
|
11
|
+
} from "./types";
|
|
12
|
+
import { userActions } from "../apis";
|
|
13
|
+
import { readStorageWithCookie } from "../helper";
|
|
14
14
|
|
|
15
15
|
export const usersUpdate = (site) => {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
16
|
+
return (dispatch) => {
|
|
17
|
+
userActions.fetchUsers(site).then((res) => {
|
|
18
|
+
if (res.userFetchFail) {
|
|
19
|
+
} else {
|
|
20
|
+
const currentSite = readStorageWithCookie("site");
|
|
21
|
+
if (
|
|
22
|
+
res.data != null &&
|
|
23
|
+
!_.isEmpty(res.data.results.Items) &&
|
|
24
|
+
res.data.results.Items[0].site === currentSite
|
|
25
|
+
) {
|
|
26
|
+
const users = res.data.results.Items;
|
|
27
|
+
const allList = [];
|
|
28
|
+
Object.keys(users).forEach((userId) => {
|
|
29
|
+
allList.push({ ...users[userId], id: userId });
|
|
30
|
+
});
|
|
31
|
+
dispatch({
|
|
32
|
+
type: USERS_LOADED,
|
|
33
|
+
payload: allList,
|
|
34
|
+
});
|
|
35
|
+
} else {
|
|
36
|
+
dispatch({
|
|
37
|
+
type: USERS_LOADED,
|
|
38
|
+
payload: [],
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
};
|
|
40
44
|
};
|
|
41
45
|
|
|
42
46
|
export const getUserCount = (site) => {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
47
|
+
return (dispatch) => {
|
|
48
|
+
dispatch({
|
|
49
|
+
type: USERS_LOADING,
|
|
50
|
+
});
|
|
51
|
+
userActions.getSiteResidentsCount(site).then((res) => {
|
|
52
|
+
dispatch({
|
|
53
|
+
type: USERS_RESIDENT_COUNT_SET,
|
|
54
|
+
payload: res.data.results,
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
};
|
|
54
58
|
};
|
|
55
59
|
|
|
56
60
|
export const usersLoaded = (events) => {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
+
return {
|
|
62
|
+
type: USERS_LOADED,
|
|
63
|
+
payload: events,
|
|
64
|
+
};
|
|
61
65
|
};
|
|
62
66
|
|
|
63
67
|
export const userKey = (id) => {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
+
return {
|
|
69
|
+
type: USER_REMOVED,
|
|
70
|
+
payload: id,
|
|
71
|
+
};
|
|
68
72
|
};
|
|
69
73
|
|
|
70
74
|
export const inviteCodesLoaded = (inviteCodes) => {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
+
return {
|
|
76
|
+
type: INVITE_CODES_LOADED,
|
|
77
|
+
payload: inviteCodes,
|
|
78
|
+
};
|
|
75
79
|
};
|
|
76
80
|
|
|
77
81
|
export const inviteCodeUpdated = (inviteCode) => {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
+
return {
|
|
83
|
+
type: INVITE_CODE_UPDATED,
|
|
84
|
+
payload: inviteCode,
|
|
85
|
+
};
|
|
82
86
|
};
|
|
83
87
|
|
|
84
88
|
export const inviteCodeRemoved = (inviteCode) => {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
+
return {
|
|
90
|
+
type: INVITE_CODE_REMOVED,
|
|
91
|
+
payload: inviteCode,
|
|
92
|
+
};
|
|
89
93
|
};
|
|
90
94
|
|
|
91
95
|
export const clearUsers = () => {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
96
|
+
return {
|
|
97
|
+
type: USERS_PURGE,
|
|
98
|
+
};
|
|
95
99
|
};
|
package/src/actions/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
1
|
+
export * from "./AuthActions";
|
|
2
|
+
export * from "./LocalActions";
|
|
3
|
+
export * from "./UsersActions";
|
|
4
|
+
export * from "./NavActions";
|
|
5
|
+
export * from "./TemplateActions";
|
|
6
|
+
export * from "./ScheduledActionsActions";
|
package/src/actions/types.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
export const SET_AUTH =
|
|
2
|
-
export const LOGOUT =
|
|
3
|
-
export const CHANGE_SITE =
|
|
4
|
-
export const UPDATE_PROFILE =
|
|
1
|
+
export const SET_AUTH = "set_auth";
|
|
2
|
+
export const LOGOUT = "LOGOUT";
|
|
3
|
+
export const CHANGE_SITE = "CHANGE_SITE";
|
|
4
|
+
export const UPDATE_PROFILE = "UPDATE_PROFILE";
|
|
5
5
|
|
|
6
|
-
export const ADD_RECENTLY_CREATED =
|
|
6
|
+
export const ADD_RECENTLY_CREATED = "ADD_RECENTLY_CREATED";
|
|
7
7
|
|
|
8
|
-
export const USERS_LOADED =
|
|
9
|
-
export const USER_REMOVED =
|
|
10
|
-
export const USERS_PURGE =
|
|
11
|
-
export const USERS_LOADING =
|
|
12
|
-
export const USERS_RESIDENT_COUNT_SET =
|
|
8
|
+
export const USERS_LOADED = "USERS_LOADED";
|
|
9
|
+
export const USER_REMOVED = "USER_REMOVED";
|
|
10
|
+
export const USERS_PURGE = "USERS_PURGE";
|
|
11
|
+
export const USERS_LOADING = "USERS_LOADING";
|
|
12
|
+
export const USERS_RESIDENT_COUNT_SET = "USERS_RESIDENT_COUNT_SET";
|
|
13
13
|
|
|
14
|
-
export const INVITE_CODES_LOADED =
|
|
15
|
-
export const INVITE_CODE_UPDATED =
|
|
16
|
-
export const INVITE_CODE_REMOVED =
|
|
14
|
+
export const INVITE_CODES_LOADED = "INVITE_CODES_LOADED";
|
|
15
|
+
export const INVITE_CODE_UPDATED = "INVITE_CODE_UPDATED";
|
|
16
|
+
export const INVITE_CODE_REMOVED = "INVITE_CODE_REMOVED";
|
|
17
17
|
|
|
18
|
-
export const SET_NAV_DATA =
|
|
18
|
+
export const SET_NAV_DATA = "SET_NAV_DATA";
|
|
19
19
|
|
|
20
|
-
export const TEMPLATES_LOADED =
|
|
21
|
-
export const TEMPLATE_REMOVED =
|
|
20
|
+
export const TEMPLATES_LOADED = "TEMPLATES_LOADED";
|
|
21
|
+
export const TEMPLATE_REMOVED = "TEMPLATE_REMOVED";
|
|
22
22
|
|
|
23
|
-
export const SCHEDULED_ACTIONS_LOADED =
|
|
23
|
+
export const SCHEDULED_ACTIONS_LOADED = "SCHEDULED_ACTIONS_LOADED";
|