@selfcommunity/react-ui 0.5.7-alpha.6 → 0.5.7-alpha.8
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/lib/cjs/components/Footer/Footer.d.ts.map +1 -1
- package/lib/cjs/components/Footer/Footer.js +8 -38
- package/lib/cjs/components/Footer/Footer.js.map +1 -1
- package/lib/esm/components/Footer/Footer.d.ts.map +1 -1
- package/lib/esm/components/Footer/Footer.js +8 -38
- package/lib/esm/components/Footer/Footer.js.map +1 -1
- package/lib/umd/react-ui.js +7 -7
- package/lib/umd/react-ui.js.map +1 -1
- package/package.json +5 -5
- package/lib/cjs/components/Footer/DetailDialog/index.d.ts +0 -23
- package/lib/cjs/components/Footer/DetailDialog/index.d.ts.map +0 -1
- package/lib/cjs/components/Footer/DetailDialog/index.js +0 -44
- package/lib/cjs/components/Footer/DetailDialog/index.js.map +0 -1
- package/lib/esm/components/Footer/DetailDialog/index.d.ts +0 -23
- package/lib/esm/components/Footer/DetailDialog/index.d.ts.map +0 -1
- package/lib/esm/components/Footer/DetailDialog/index.js +0 -38
- package/lib/esm/components/Footer/DetailDialog/index.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"AA+CA,MAAM,WAAW,WAAW;IAC1B;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC;CAClB;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,OAAO,EAAE,WAAW,GAAG,GAAG,CAAC,OAAO,CAgFhE"}
|
|
@@ -43,11 +43,12 @@ const styles_1 = require("@mui/material/styles");
|
|
|
43
43
|
const material_1 = require("@mui/material");
|
|
44
44
|
const classnames_1 = __importDefault(require("classnames"));
|
|
45
45
|
const api_services_1 = require("@selfcommunity/api-services");
|
|
46
|
+
const types_1 = require("@selfcommunity/types");
|
|
46
47
|
const utils_1 = require("@selfcommunity/utils");
|
|
47
48
|
const react_core_1 = require("@selfcommunity/react-core");
|
|
48
49
|
const Errors_1 = require("../../constants/Errors");
|
|
49
50
|
const Skeleton_1 = __importDefault(require("./Skeleton"));
|
|
50
|
-
const
|
|
51
|
+
const react_intl_1 = require("react-intl");
|
|
51
52
|
const PREFIX = 'SCFooter';
|
|
52
53
|
const classes = {
|
|
53
54
|
root: `${PREFIX}-root`,
|
|
@@ -99,7 +100,6 @@ function Footer(inProps) {
|
|
|
99
100
|
name: PREFIX
|
|
100
101
|
});
|
|
101
102
|
const { className } = props, rest = __rest(props, ["className"]);
|
|
102
|
-
const activePages = '2099-01-01';
|
|
103
103
|
// CONTEXT
|
|
104
104
|
const scRoutingContext = (0, react_core_1.useSCRouting)();
|
|
105
105
|
// PREFERENCES
|
|
@@ -107,17 +107,7 @@ function Footer(inProps) {
|
|
|
107
107
|
const copyRight = scPreferences.preferences[react_core_1.SCPreferences.TEXT_APPLICATION_COPYRIGHT].value;
|
|
108
108
|
//STATE
|
|
109
109
|
const [pages, setPages] = (0, react_1.useState)([]);
|
|
110
|
-
const [legalPages, setLegalPages] = (0, react_1.useState)([]);
|
|
111
110
|
const [loading, setLoading] = (0, react_1.useState)(true);
|
|
112
|
-
const [openLegalPageDialog, setOpenLegalPageDialog] = (0, react_1.useState)(false);
|
|
113
|
-
const ids = [7, 5, 4];
|
|
114
|
-
const filteredLegalPages = legalPages.filter((i) => ids.includes(i.id));
|
|
115
|
-
const [detailObj, setDetailObj] = (0, react_1.useState)(null);
|
|
116
|
-
// HANDLERS
|
|
117
|
-
function handleOpenLegalPageDialog(item) {
|
|
118
|
-
setOpenLegalPageDialog(true);
|
|
119
|
-
setDetailObj(item);
|
|
120
|
-
}
|
|
121
111
|
/**
|
|
122
112
|
* Fetches custom pages
|
|
123
113
|
*/
|
|
@@ -140,32 +130,11 @@ function Footer(inProps) {
|
|
|
140
130
|
utils_1.Logger.error(Errors_1.SCOPE_SC_UI, error);
|
|
141
131
|
});
|
|
142
132
|
}
|
|
143
|
-
function fetchLegalPages() {
|
|
144
|
-
setLoading(true);
|
|
145
|
-
api_services_1.http
|
|
146
|
-
.request({
|
|
147
|
-
url: api_services_1.Endpoints.GetLegalPages.url(),
|
|
148
|
-
method: api_services_1.Endpoints.GetLegalPages.method,
|
|
149
|
-
params: {
|
|
150
|
-
valid_to: activePages
|
|
151
|
-
}
|
|
152
|
-
})
|
|
153
|
-
.then((res) => {
|
|
154
|
-
setLegalPages(res.data.results);
|
|
155
|
-
//console.log(res.data.results, 'legal');
|
|
156
|
-
setLoading(false);
|
|
157
|
-
})
|
|
158
|
-
.catch((error) => {
|
|
159
|
-
setLoading(false);
|
|
160
|
-
utils_1.Logger.error(Errors_1.SCOPE_SC_UI, error);
|
|
161
|
-
});
|
|
162
|
-
}
|
|
163
133
|
/**
|
|
164
134
|
* On mount, fetches legal and custom pages
|
|
165
135
|
*/
|
|
166
136
|
(0, react_1.useEffect)(() => {
|
|
167
137
|
fetchCustomPages();
|
|
168
|
-
fetchLegalPages();
|
|
169
138
|
}, []);
|
|
170
139
|
/**
|
|
171
140
|
* Renders root object
|
|
@@ -176,11 +145,12 @@ function Footer(inProps) {
|
|
|
176
145
|
return (react_1.default.createElement(Root, Object.assign({}, rest, { className: (0, classnames_1.default)(classes.root, className) }),
|
|
177
146
|
react_1.default.createElement(material_1.Grid, { container: true, spacing: 1, justifyContent: "center" },
|
|
178
147
|
pages.map((page, index) => (react_1.default.createElement(material_1.Grid, { item: true, key: index },
|
|
179
|
-
react_1.default.createElement(react_core_1.Link, { className: classes.linkItem, to: page.alternative_url ? page.alternative_url : scRoutingContext.url(react_core_1.SCRoutes.CUSTOM_PAGES_ROUTE_NAME, page) },
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
148
|
+
react_1.default.createElement(react_core_1.Link, { className: classes.linkItem, to: page.alternative_url ? page.alternative_url : scRoutingContext.url(react_core_1.SCRoutes.CUSTOM_PAGES_ROUTE_NAME, page) },
|
|
149
|
+
react_1.default.createElement(react_intl_1.FormattedMessage, { id: `ui.footer.customPages.${page.slug}`, defaultMessage: `ui.footer.customPages.${page.slug}` }))))),
|
|
150
|
+
Object.values(types_1.SCLegalPagePoliciesType).map((policy, index) => (react_1.default.createElement(material_1.Grid, { item: true, key: index },
|
|
151
|
+
react_1.default.createElement(react_core_1.Link, { className: classes.linkItem, to: scRoutingContext.url(react_core_1.SCRoutes.LEGAL_PAGES_ROUTE_NAME, { policy: policy }) },
|
|
152
|
+
react_1.default.createElement(react_intl_1.FormattedMessage, { id: `ui.footer.legalPages.${policy}`, defaultMessage: `ui.footer.legalPages.${policy}` })))))),
|
|
153
|
+
react_1.default.createElement(material_1.Typography, { textAlign: "center", className: classes.copyright, variant: "subtitle2" }, copyRight)));
|
|
184
154
|
}
|
|
185
155
|
exports.default = Footer;
|
|
186
156
|
//# sourceMappingURL=Footer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Footer.js","sourceRoot":"","sources":["../../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAAiD;AACjD,wCAA0C;AAC1C,iDAA4C;AAC5C,4CAAoD;AACpD,4DAAoC;AACpC,8DAA0E;AAC1E,gDAA4C;AAC5C,0DAQmC;AACnC,mDAAmD;AACnD,0DAAwC;AACxC,
|
|
1
|
+
{"version":3,"file":"Footer.js","sourceRoot":"","sources":["../../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"AA+CA,MAAM,WAAW,WAAW;IAC1B;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC;CAClB;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,OAAO,EAAE,WAAW,GAAG,GAAG,CAAC,OAAO,CAgFhE"}
|
|
@@ -15,11 +15,12 @@ import { styled } from '@mui/material/styles';
|
|
|
15
15
|
import { Box, Grid, Typography } from '@mui/material';
|
|
16
16
|
import classNames from 'classnames';
|
|
17
17
|
import { http, Endpoints } from '@selfcommunity/api-services';
|
|
18
|
+
import { SCLegalPagePoliciesType } from '@selfcommunity/types';
|
|
18
19
|
import { Logger } from '@selfcommunity/utils';
|
|
19
20
|
import { SCRoutes, Link, useSCRouting, SCPreferences, useSCPreferences } from '@selfcommunity/react-core';
|
|
20
21
|
import { SCOPE_SC_UI } from '../../constants/Errors';
|
|
21
22
|
import FooterSkeleton from './Skeleton';
|
|
22
|
-
import
|
|
23
|
+
import { FormattedMessage } from 'react-intl';
|
|
23
24
|
const PREFIX = 'SCFooter';
|
|
24
25
|
const classes = {
|
|
25
26
|
root: `${PREFIX}-root`,
|
|
@@ -71,7 +72,6 @@ export default function Footer(inProps) {
|
|
|
71
72
|
name: PREFIX
|
|
72
73
|
});
|
|
73
74
|
const { className } = props, rest = __rest(props, ["className"]);
|
|
74
|
-
const activePages = '2099-01-01';
|
|
75
75
|
// CONTEXT
|
|
76
76
|
const scRoutingContext = useSCRouting();
|
|
77
77
|
// PREFERENCES
|
|
@@ -79,17 +79,7 @@ export default function Footer(inProps) {
|
|
|
79
79
|
const copyRight = scPreferences.preferences[SCPreferences.TEXT_APPLICATION_COPYRIGHT].value;
|
|
80
80
|
//STATE
|
|
81
81
|
const [pages, setPages] = useState([]);
|
|
82
|
-
const [legalPages, setLegalPages] = useState([]);
|
|
83
82
|
const [loading, setLoading] = useState(true);
|
|
84
|
-
const [openLegalPageDialog, setOpenLegalPageDialog] = useState(false);
|
|
85
|
-
const ids = [7, 5, 4];
|
|
86
|
-
const filteredLegalPages = legalPages.filter((i) => ids.includes(i.id));
|
|
87
|
-
const [detailObj, setDetailObj] = useState(null);
|
|
88
|
-
// HANDLERS
|
|
89
|
-
function handleOpenLegalPageDialog(item) {
|
|
90
|
-
setOpenLegalPageDialog(true);
|
|
91
|
-
setDetailObj(item);
|
|
92
|
-
}
|
|
93
83
|
/**
|
|
94
84
|
* Fetches custom pages
|
|
95
85
|
*/
|
|
@@ -112,32 +102,11 @@ export default function Footer(inProps) {
|
|
|
112
102
|
Logger.error(SCOPE_SC_UI, error);
|
|
113
103
|
});
|
|
114
104
|
}
|
|
115
|
-
function fetchLegalPages() {
|
|
116
|
-
setLoading(true);
|
|
117
|
-
http
|
|
118
|
-
.request({
|
|
119
|
-
url: Endpoints.GetLegalPages.url(),
|
|
120
|
-
method: Endpoints.GetLegalPages.method,
|
|
121
|
-
params: {
|
|
122
|
-
valid_to: activePages
|
|
123
|
-
}
|
|
124
|
-
})
|
|
125
|
-
.then((res) => {
|
|
126
|
-
setLegalPages(res.data.results);
|
|
127
|
-
//console.log(res.data.results, 'legal');
|
|
128
|
-
setLoading(false);
|
|
129
|
-
})
|
|
130
|
-
.catch((error) => {
|
|
131
|
-
setLoading(false);
|
|
132
|
-
Logger.error(SCOPE_SC_UI, error);
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
105
|
/**
|
|
136
106
|
* On mount, fetches legal and custom pages
|
|
137
107
|
*/
|
|
138
108
|
useEffect(() => {
|
|
139
109
|
fetchCustomPages();
|
|
140
|
-
fetchLegalPages();
|
|
141
110
|
}, []);
|
|
142
111
|
/**
|
|
143
112
|
* Renders root object
|
|
@@ -148,10 +117,11 @@ export default function Footer(inProps) {
|
|
|
148
117
|
return (React.createElement(Root, Object.assign({}, rest, { className: classNames(classes.root, className) }),
|
|
149
118
|
React.createElement(Grid, { container: true, spacing: 1, justifyContent: "center" },
|
|
150
119
|
pages.map((page, index) => (React.createElement(Grid, { item: true, key: index },
|
|
151
|
-
React.createElement(Link, { className: classes.linkItem, to: page.alternative_url ? page.alternative_url : scRoutingContext.url(SCRoutes.CUSTOM_PAGES_ROUTE_NAME, page) },
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
120
|
+
React.createElement(Link, { className: classes.linkItem, to: page.alternative_url ? page.alternative_url : scRoutingContext.url(SCRoutes.CUSTOM_PAGES_ROUTE_NAME, page) },
|
|
121
|
+
React.createElement(FormattedMessage, { id: `ui.footer.customPages.${page.slug}`, defaultMessage: `ui.footer.customPages.${page.slug}` }))))),
|
|
122
|
+
Object.values(SCLegalPagePoliciesType).map((policy, index) => (React.createElement(Grid, { item: true, key: index },
|
|
123
|
+
React.createElement(Link, { className: classes.linkItem, to: scRoutingContext.url(SCRoutes.LEGAL_PAGES_ROUTE_NAME, { policy: policy }) },
|
|
124
|
+
React.createElement(FormattedMessage, { id: `ui.footer.legalPages.${policy}`, defaultMessage: `ui.footer.legalPages.${policy}` })))))),
|
|
125
|
+
React.createElement(Typography, { textAlign: "center", className: classes.copyright, variant: "subtitle2" }, copyRight)));
|
|
156
126
|
}
|
|
157
127
|
//# sourceMappingURL=Footer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Footer.js","sourceRoot":"","sources":["../../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,EAAC,SAAS,EAAE,QAAQ,EAAC,MAAM,OAAO,CAAC;AACjD,OAAO,EAAC,aAAa,EAAC,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAC,MAAM,EAAC,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EAAC,GAAG,EAAE,IAAI,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AACpD,OAAO,UAAU,MAAM,YAAY,CAAC;AACpC,OAAO,EAAC,IAAI,EAAE,SAAS,EAAe,MAAM,6BAA6B,CAAC;AAC1E,OAAO,EAAC,MAAM,EAAC,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EACL,QAAQ,EAER,IAAI,EACJ,YAAY,EACZ,aAAa,EAEb,gBAAgB,EACjB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAC,WAAW,EAAC,MAAM,wBAAwB,CAAC;AACnD,OAAO,cAAc,MAAM,YAAY,CAAC;AACxC,OAAO,
|
|
1
|
+
{"version":3,"file":"Footer.js","sourceRoot":"","sources":["../../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"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"}
|