nestiq-component-library 1.1.157 → 1.1.158
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/dist/components/NewPropertyCard/NewPropertyCard.d.ts +3 -0
- package/dist/components/SharePopup/SharePopup.d.ts +3 -0
- package/dist/index.es.js +19 -14
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +19 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NewPropertyCard/NewPropertyCard.tsx +18 -8
- package/src/components/SharePopup/SharePopup.tsx +7 -2
|
@@ -33,6 +33,9 @@ interface PopupProps {
|
|
|
33
33
|
onclickSuccess: () => void;
|
|
34
34
|
onClick: () => void;
|
|
35
35
|
onFloorPlanClick: () => void;
|
|
36
|
+
options?: {
|
|
37
|
+
override_share_link?: string;
|
|
38
|
+
};
|
|
36
39
|
}
|
|
37
40
|
export default function PropertyCard(props: PopupProps): React.JSX.Element;
|
|
38
41
|
export {};
|
package/dist/index.es.js
CHANGED
|
@@ -72,7 +72,8 @@ var css_248z$7 = ".shareSection {\r\n height: 340px;\r\n padding: 40px;\r\n b
|
|
|
72
72
|
styleInject(css_248z$7);
|
|
73
73
|
|
|
74
74
|
function SharePopup(props) {
|
|
75
|
-
var _a
|
|
75
|
+
var _a;
|
|
76
|
+
var _b = useState(true), showPopUp = _b[0]; _b[1];
|
|
76
77
|
var handleClose = function () {
|
|
77
78
|
props.onClick();
|
|
78
79
|
};
|
|
@@ -110,7 +111,7 @@ function SharePopup(props) {
|
|
|
110
111
|
React.createElement("span", { className: "socialMediaIconText" }, "E-Mail")))),
|
|
111
112
|
React.createElement("div", { className: "col-10 mx-auto" },
|
|
112
113
|
React.createElement("div", { className: " row align-items-center position-relative" },
|
|
113
|
-
React.createElement("input", { ref: urlInputRef, type: "text", className: "popup_search-input rounded-4 border border-0 ", placeholder: "Enter link here", value: window.location.href, readOnly: true }),
|
|
114
|
+
React.createElement("input", { ref: urlInputRef, type: "text", className: "popup_search-input rounded-4 border border-0 ", placeholder: "Enter link here", value: ((_a = props === null || props === void 0 ? void 0 : props.options) === null || _a === void 0 ? void 0 : _a.override_location) || window.location.href, readOnly: true }),
|
|
114
115
|
React.createElement("button", { onClick: copyToClipboard, className: "popupcustom-button border border-0 position-absolute me-2 col-lg-3 col-md-3 col-sm-3 rounded-4 fs-6", type: "button", id: "button" },
|
|
115
116
|
React.createElement("strong", null, "Kopieren")))))))));
|
|
116
117
|
}
|
|
@@ -466,14 +467,14 @@ var iconLayers = "/static/media/layer_icon.9b56c187199c44b5.svg";
|
|
|
466
467
|
var immooly = "/static/media/imooly.890e3dd01ea33574.svg";
|
|
467
468
|
|
|
468
469
|
function PropertyCard(props) {
|
|
469
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
|
470
|
-
var
|
|
471
|
-
var
|
|
472
|
-
var
|
|
470
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
471
|
+
var _j = useState(false); _j[0]; _j[1];
|
|
472
|
+
var _k = useState(null), mainImage = _k[0], setMainImage = _k[1];
|
|
473
|
+
var _l = useState(0), currentImageIndex = _l[0], setCurrentImageIndex = _l[1];
|
|
473
474
|
var imageListRef = useRef(null);
|
|
474
|
-
var _l = useState(false); _l[0]; _l[1];
|
|
475
475
|
var _m = useState(false); _m[0]; _m[1];
|
|
476
|
-
var _o = useState(false)
|
|
476
|
+
var _o = useState(false); _o[0]; _o[1];
|
|
477
|
+
var _p = useState(false), sharePopUp = _p[0], setSharePopUp = _p[1];
|
|
477
478
|
var pictureUrls = ((_b = (_a = props.property) === null || _a === void 0 ? void 0 : _a.pictures) === null || _b === void 0 ? void 0 : _b.length) > 0
|
|
478
479
|
? props.property.pictures.map(function (picture) { return "".concat(props.baseUrl).concat(picture.contentUrl); })
|
|
479
480
|
: [noImageIcon];
|
|
@@ -486,11 +487,13 @@ function PropertyCard(props) {
|
|
|
486
487
|
};
|
|
487
488
|
var handleSharePopUp = function () {
|
|
488
489
|
setSharePopUp(true);
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
490
|
+
// const path = document.querySelector(
|
|
491
|
+
// "#root > div:nth-child(3) > div:nth-child(3) > div.d-flex.px-lg-5.px-md-3.flex-column.col-12.filter-section-wrapper.mx-auto.mt-3 > div.mt-2.d-flex.flex-column.gap-4 > div:nth-child(1) > div:nth-child(3) > div > div > div.col-10.mx-auto > div > input"
|
|
492
|
+
// );
|
|
493
|
+
// console.log(path);
|
|
494
|
+
// if (path) {
|
|
495
|
+
// path.innerHTML = window.location.href + props.property.id;
|
|
496
|
+
// }
|
|
494
497
|
};
|
|
495
498
|
var handleArrowClickInMainImage = function (direction) {
|
|
496
499
|
if (!props.property || pictureUrls.length === 0)
|
|
@@ -615,7 +618,9 @@ function PropertyCard(props) {
|
|
|
615
618
|
React.createElement("span", { className: "kontact-button-text" },
|
|
616
619
|
"Kontakt aufnehmen",
|
|
617
620
|
" "))))))),
|
|
618
|
-
sharePopUp && React.createElement(SharePopup, {
|
|
621
|
+
sharePopUp && (React.createElement(SharePopup, { options: {
|
|
622
|
+
override_location: (_h = props === null || props === void 0 ? void 0 : props.options) === null || _h === void 0 ? void 0 : _h.override_share_link,
|
|
623
|
+
}, onClick: function () { return setSharePopUp(false); } }))));
|
|
619
624
|
}
|
|
620
625
|
|
|
621
626
|
var x = "/static/media/icon_close_2.e41bb9a4db48e048.png";
|