@plusscommunities/pluss-core-app 4.0.4-auth.0 → 6.0.0-auth.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/dist/module/actions/FollowerActions.js +34 -0
- package/dist/module/actions/FollowerActions.js.map +1 -0
- package/dist/module/actions/MediaActions.js +29 -0
- package/dist/module/actions/MediaActions.js.map +1 -0
- package/dist/module/actions/ResidentActions.js +26 -0
- package/dist/module/actions/ResidentActions.js.map +1 -0
- package/dist/module/actions/UserActions.js +223 -0
- package/dist/module/actions/UserActions.js.map +1 -0
- package/dist/module/actions/UserSettingsActions.js +14 -0
- package/dist/module/actions/UserSettingsActions.js.map +1 -0
- package/dist/module/actions/index.js +6 -0
- package/dist/module/actions/index.js.map +1 -0
- package/dist/module/actions/types.js +17 -0
- package/dist/module/actions/types.js.map +1 -0
- package/dist/module/apis/analyticsActions.js +20 -0
- package/dist/module/apis/analyticsActions.js.map +1 -0
- package/dist/module/apis/contactActions.js +27 -0
- package/dist/module/apis/contactActions.js.map +1 -0
- package/dist/module/apis/eventActions.js +161 -0
- package/dist/module/apis/eventActions.js.map +1 -0
- package/dist/module/apis/fileActions.js +86 -0
- package/dist/module/apis/fileActions.js.map +1 -0
- package/dist/module/apis/followerActions.js +38 -0
- package/dist/module/apis/followerActions.js.map +1 -0
- package/dist/module/apis/index.js +12 -0
- package/dist/module/apis/index.js.map +1 -0
- package/dist/module/apis/notificationActions.js +60 -0
- package/dist/module/apis/notificationActions.js.map +1 -0
- package/dist/module/apis/profileActions.js +14 -0
- package/dist/module/apis/profileActions.js.map +1 -0
- package/dist/module/apis/reactionActions.js +76 -0
- package/dist/module/apis/reactionActions.js.map +1 -0
- package/dist/module/apis/stringActions.js +30 -0
- package/dist/module/apis/stringActions.js.map +1 -0
- package/dist/module/apis/typeActions.js +15 -0
- package/dist/module/apis/typeActions.js.map +1 -0
- package/dist/module/apis/userActions.js +104 -0
- package/dist/module/apis/userActions.js.map +1 -0
- package/dist/module/assets/icons/reactions/heart.png +0 -0
- package/dist/module/assets/icons/reactions/party.png +0 -0
- package/dist/module/assets/icons/reactions/sad.png +0 -0
- package/dist/module/assets/icons/reactions/smile.png +0 -0
- package/dist/module/colours.js +168 -0
- package/dist/module/colours.js.map +1 -0
- package/dist/module/components/AddButton.js +43 -0
- package/dist/module/components/AddButton.js.map +1 -0
- package/dist/module/components/AddToCalendarButton.js +225 -0
- package/dist/module/components/AddToCalendarButton.js.map +1 -0
- package/dist/module/components/Attachment.js +54 -0
- package/dist/module/components/Attachment.js.map +1 -0
- package/dist/module/components/AudienceSelectorLauncher.js +64 -0
- package/dist/module/components/AudienceSelectorLauncher.js.map +1 -0
- package/dist/module/components/AudienceSelectorPage.js +350 -0
- package/dist/module/components/AudienceSelectorPage.js.map +1 -0
- package/dist/module/components/AutoOffsetImage.js +186 -0
- package/dist/module/components/AutoOffsetImage.js.map +1 -0
- package/dist/module/components/BackButton.js +58 -0
- package/dist/module/components/BackButton.js.map +1 -0
- package/dist/module/components/CategoryTabs.js +154 -0
- package/dist/module/components/CategoryTabs.js.map +1 -0
- package/dist/module/components/CommentReply.js +328 -0
- package/dist/module/components/CommentReply.js.map +1 -0
- package/dist/module/components/CommentSection.js +822 -0
- package/dist/module/components/CommentSection.js.map +1 -0
- package/dist/module/components/ConfirmPopup.js +108 -0
- package/dist/module/components/ConfirmPopup.js.map +1 -0
- package/dist/module/components/ConfirmationPopup.js +72 -0
- package/dist/module/components/ConfirmationPopup.js.map +1 -0
- package/dist/module/components/DropDownItem.js +74 -0
- package/dist/module/components/DropDownItem.js.map +1 -0
- package/dist/module/components/DropDownMenu.js +41 -0
- package/dist/module/components/DropDownMenu.js.map +1 -0
- package/dist/module/components/EmptyStateMain.js +50 -0
- package/dist/module/components/EmptyStateMain.js.map +1 -0
- package/dist/module/components/EmptyStateWidget.js +47 -0
- package/dist/module/components/EmptyStateWidget.js.map +1 -0
- package/dist/module/components/FontScaleButton.js +36 -0
- package/dist/module/components/FontScaleButton.js.map +1 -0
- package/dist/module/components/FontScalePopup.js +75 -0
- package/dist/module/components/FontScalePopup.js.map +1 -0
- package/dist/module/components/FormCard.js +25 -0
- package/dist/module/components/FormCard.js.map +1 -0
- package/dist/module/components/FormCardSection.js +212 -0
- package/dist/module/components/FormCardSection.js.map +1 -0
- package/dist/module/components/FormCardSectionOptionLauncher.js +72 -0
- package/dist/module/components/FormCardSectionOptionLauncher.js.map +1 -0
- package/dist/module/components/FormattedText.js +131 -0
- package/dist/module/components/FormattedText.js.map +1 -0
- package/dist/module/components/GenericInput.js +148 -0
- package/dist/module/components/GenericInput.js.map +1 -0
- package/dist/module/components/GenericInputSection.js +158 -0
- package/dist/module/components/GenericInputSection.js.map +1 -0
- package/dist/module/components/Header.js +458 -0
- package/dist/module/components/Header.js.map +1 -0
- package/dist/module/components/ImagePopup.js +240 -0
- package/dist/module/components/ImagePopup.js.map +1 -0
- package/dist/module/components/ImageUploadProgress.js +68 -0
- package/dist/module/components/ImageUploadProgress.js.map +1 -0
- package/dist/module/components/ImageUploader.js +795 -0
- package/dist/module/components/ImageUploader.js.map +1 -0
- package/dist/module/components/InlineButton.js +65 -0
- package/dist/module/components/InlineButton.js.map +1 -0
- package/dist/module/components/Input.js +154 -0
- package/dist/module/components/Input.js.map +1 -0
- package/dist/module/components/LoadingCircles.js +220 -0
- package/dist/module/components/LoadingCircles.js.map +1 -0
- package/dist/module/components/LoadingIndicator.js +86 -0
- package/dist/module/components/LoadingIndicator.js.map +1 -0
- package/dist/module/components/LoadingStateWidget.js +46 -0
- package/dist/module/components/LoadingStateWidget.js.map +1 -0
- package/dist/module/components/MediaPlayer.js +418 -0
- package/dist/module/components/MediaPlayer.js.map +1 -0
- package/dist/module/components/MiddlePopup.js +43 -0
- package/dist/module/components/MiddlePopup.js.map +1 -0
- package/dist/module/components/PDFPopup.js +191 -0
- package/dist/module/components/PDFPopup.js.map +1 -0
- package/dist/module/components/PlussChat.js +986 -0
- package/dist/module/components/PlussChat.js.map +1 -0
- package/dist/module/components/PlussChatMessage.js +262 -0
- package/dist/module/components/PlussChatMessage.js.map +1 -0
- package/dist/module/components/PlussChatTime.js +58 -0
- package/dist/module/components/PlussChatTime.js.map +1 -0
- package/dist/module/components/Popup.js +125 -0
- package/dist/module/components/Popup.js.map +1 -0
- package/dist/module/components/PopupMenu.js +119 -0
- package/dist/module/components/PopupMenu.js.map +1 -0
- package/dist/module/components/PositionedImage.js +313 -0
- package/dist/module/components/PositionedImage.js.map +1 -0
- package/dist/module/components/ProfilePic.js +106 -0
- package/dist/module/components/ProfilePic.js.map +1 -0
- package/dist/module/components/RadioButton.js +77 -0
- package/dist/module/components/RadioButton.js.map +1 -0
- package/dist/module/components/Reaction.js +116 -0
- package/dist/module/components/Reaction.js.map +1 -0
- package/dist/module/components/Reactions.js +71 -0
- package/dist/module/components/Reactions.js.map +1 -0
- package/dist/module/components/SharingTools.js +154 -0
- package/dist/module/components/SharingTools.js.map +1 -0
- package/dist/module/components/Spinner.js +22 -0
- package/dist/module/components/Spinner.js.map +1 -0
- package/dist/module/components/StickyFooter.js +34 -0
- package/dist/module/components/StickyFooter.js.map +1 -0
- package/dist/module/components/TextStyle.js +45 -0
- package/dist/module/components/TextStyle.js.map +1 -0
- package/dist/module/components/Toggle.js +65 -0
- package/dist/module/components/Toggle.js.map +1 -0
- package/dist/module/components/TouchableSearchBar.js +67 -0
- package/dist/module/components/TouchableSearchBar.js.map +1 -0
- package/dist/module/components/UserListPopup.js +135 -0
- package/dist/module/components/UserListPopup.js.map +1 -0
- package/dist/module/components/UserListing.js +267 -0
- package/dist/module/components/UserListing.js.map +1 -0
- package/dist/module/components/VideoPopup.js +113 -0
- package/dist/module/components/VideoPopup.js.map +1 -0
- package/dist/module/components/WarningPopup.js +82 -0
- package/dist/module/components/WarningPopup.js.map +1 -0
- package/dist/module/components/expo-image-picker-multiple/ImageBrowser.js +289 -0
- package/dist/module/components/expo-image-picker-multiple/ImageBrowser.js.map +1 -0
- package/dist/module/components/expo-image-picker-multiple/ImageTile.js +116 -0
- package/dist/module/components/expo-image-picker-multiple/ImageTile.js.map +1 -0
- package/dist/module/components/index.js +55 -0
- package/dist/module/components/index.js.map +1 -0
- package/dist/module/components/react-native-expo-image-cropper/ExpoImageManipulator.js +385 -0
- package/dist/module/components/react-native-expo-image-cropper/ExpoImageManipulator.js.map +1 -0
- package/dist/module/components/react-native-expo-image-cropper/ImageCropOverlay.js +387 -0
- package/dist/module/components/react-native-expo-image-cropper/ImageCropOverlay.js.map +1 -0
- package/dist/module/config.js +32 -0
- package/dist/module/config.js.map +1 -0
- package/dist/module/constants.js +19 -0
- package/dist/module/constants.js.map +1 -0
- package/dist/module/fonts/index.js +2 -0
- package/dist/module/fonts/index.js.map +1 -0
- package/dist/module/fonts/pluss60-icons.js +5 -0
- package/dist/module/fonts/pluss60-icons.js.map +1 -0
- package/dist/module/fonts/pluss60-icons.json +1097 -0
- package/dist/module/helper.js +397 -0
- package/dist/module/helper.js.map +1 -0
- package/dist/module/index.js +13 -0
- package/dist/module/index.js.map +1 -0
- package/dist/module/js/images/detectFaces.js +30 -0
- package/dist/module/js/images/detectFaces.js.map +1 -0
- package/dist/module/js/images/findLandmarkRange.js +93 -0
- package/dist/module/js/images/findLandmarkRange.js.map +1 -0
- package/dist/module/js/images/getScaledOffset.js +81 -0
- package/dist/module/js/images/getScaledOffset.js.map +1 -0
- package/dist/module/js/site/getSiteLevelFromState.js +29 -0
- package/dist/module/js/site/getSiteLevelFromState.js.map +1 -0
- package/dist/module/js/site/isTVEnabled.js +10 -0
- package/dist/module/js/site/isTVEnabled.js.map +1 -0
- package/dist/module/session.js +58 -0
- package/dist/module/session.js.map +1 -0
- package/dist/module/styles.js +67 -0
- package/dist/module/styles.js.map +1 -0
- package/package.json +20 -24
- package/src/js/images/detectFaces.js +8 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","PureComponent","View","TouchableOpacity","connect","stylez","Pl60Icon","getMainBrandingColourFromState","BackButton","render","size","props","diameter","radius","noClick","createElement","style","backButton","backgroundColor","colourBrandingMain","height","width","borderRadius","color","name","flipped","backButtonIcon","iconStyle","onPress","mapStateToProps","state"],"sources":["BackButton.js"],"sourcesContent":["import React, { PureComponent } from 'react';\nimport { View, TouchableOpacity } from 'react-native';\nimport { connect } from 'react-redux';\nimport stylez from '../styles';\nimport { Pl60Icon } from '../fonts';\nimport { getMainBrandingColourFromState } from '../colours';\n\n/* \nProps- \n onPress - onPress action\n diameter - size of button\n color - default will be aveoMain\n style - custom style for container\n*/\n\nclass BackButton extends PureComponent {\n render() {\n const size = this.props.diameter || 32;\n const radius = size / 2;\n if (this.props.noClick) {\n return (\n <View\n style={[\n stylez.backButton,\n { backgroundColor: this.props.colourBrandingMain, height: size, width: size, borderRadius: radius },\n this.props.color && { backgroundColor: this.props.color },\n this.props.style,\n ]}\n >\n <Pl60Icon name={this.props.flipped ? 'chevron_right' : 'chevron_left'} style={[stylez.backButtonIcon, this.props.iconStyle]} />\n </View>\n );\n }\n return (\n <TouchableOpacity\n style={[\n stylez.backButton,\n { backgroundColor: this.props.colourBrandingMain, height: size, width: size, borderRadius: radius },\n this.props.color && { backgroundColor: this.props.color },\n this.props.style,\n ]}\n onPress={this.props.onPress}\n >\n <Pl60Icon name={this.props.flipped ? 'chevron_right' : 'chevron_left'} style={[stylez.backButtonIcon, this.props.iconStyle]} />\n </TouchableOpacity>\n );\n }\n}\n\nconst mapStateToProps = state => {\n return {\n colourBrandingMain: getMainBrandingColourFromState(state),\n };\n};\n\nconst backButton = connect(mapStateToProps, {})(BackButton);\nexport { backButton as BackButton };\n"],"mappings":"AAAA,OAAOA,KAAK,IAAIC,aAAa,QAAQ,OAAO;AAC5C,SAASC,IAAI,EAAEC,gBAAgB,QAAQ,cAAc;AACrD,SAASC,OAAO,QAAQ,aAAa;AACrC,OAAOC,MAAM,MAAM,WAAW;AAC9B,SAASC,QAAQ,QAAQ,UAAU;AACnC,SAASC,8BAA8B,QAAQ,YAAY;;AAE3D;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAMC,UAAU,SAASP,aAAa,CAAC;EACrCQ,MAAMA,CAAA,EAAG;IACP,MAAMC,IAAI,GAAG,IAAI,CAACC,KAAK,CAACC,QAAQ,IAAI,EAAE;IACtC,MAAMC,MAAM,GAAGH,IAAI,GAAG,CAAC;IACvB,IAAI,IAAI,CAACC,KAAK,CAACG,OAAO,EAAE;MACtB,oBACEd,KAAA,CAAAe,aAAA,CAACb,IAAI;QACHc,KAAK,EAAE,CACLX,MAAM,CAACY,UAAU,EACjB;UAAEC,eAAe,EAAE,IAAI,CAACP,KAAK,CAACQ,kBAAkB;UAAEC,MAAM,EAAEV,IAAI;UAAEW,KAAK,EAAEX,IAAI;UAAEY,YAAY,EAAET;QAAO,CAAC,EACnG,IAAI,CAACF,KAAK,CAACY,KAAK,IAAI;UAAEL,eAAe,EAAE,IAAI,CAACP,KAAK,CAACY;QAAM,CAAC,EACzD,IAAI,CAACZ,KAAK,CAACK,KAAK;MAChB,gBAEFhB,KAAA,CAAAe,aAAA,CAACT,QAAQ;QAACkB,IAAI,EAAE,IAAI,CAACb,KAAK,CAACc,OAAO,GAAG,eAAe,GAAG,cAAe;QAACT,KAAK,EAAE,CAACX,MAAM,CAACqB,cAAc,EAAE,IAAI,CAACf,KAAK,CAACgB,SAAS;MAAE,CAAE,CAC1H,CAAC;IAEX;IACA,oBACE3B,KAAA,CAAAe,aAAA,CAACZ,gBAAgB;MACfa,KAAK,EAAE,CACLX,MAAM,CAACY,UAAU,EACjB;QAAEC,eAAe,EAAE,IAAI,CAACP,KAAK,CAACQ,kBAAkB;QAAEC,MAAM,EAAEV,IAAI;QAAEW,KAAK,EAAEX,IAAI;QAAEY,YAAY,EAAET;MAAO,CAAC,EACnG,IAAI,CAACF,KAAK,CAACY,KAAK,IAAI;QAAEL,eAAe,EAAE,IAAI,CAACP,KAAK,CAACY;MAAM,CAAC,EACzD,IAAI,CAACZ,KAAK,CAACK,KAAK,CAChB;MACFY,OAAO,EAAE,IAAI,CAACjB,KAAK,CAACiB;IAAQ,gBAE5B5B,KAAA,CAAAe,aAAA,CAACT,QAAQ;MAACkB,IAAI,EAAE,IAAI,CAACb,KAAK,CAACc,OAAO,GAAG,eAAe,GAAG,cAAe;MAACT,KAAK,EAAE,CAACX,MAAM,CAACqB,cAAc,EAAE,IAAI,CAACf,KAAK,CAACgB,SAAS;IAAE,CAAE,CAC9G,CAAC;EAEvB;AACF;AAEA,MAAME,eAAe,GAAGC,KAAK,IAAI;EAC/B,OAAO;IACLX,kBAAkB,EAAEZ,8BAA8B,CAACuB,KAAK;EAC1D,CAAC;AACH,CAAC;AAED,MAAMb,UAAU,GAAGb,OAAO,CAACyB,eAAe,EAAE,CAAC,CAAC,CAAC,CAACrB,UAAU,CAAC;AAC3D,SAASS,UAAU,IAAIT,UAAU"}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
import _ from 'lodash';
|
|
3
|
+
import { Text, TouchableOpacity, View, ScrollView } from 'react-native';
|
|
4
|
+
import { connect } from 'react-redux';
|
|
5
|
+
import { TEXT_LIGHT, COLOUR_GREEN, getMainBrandingColourFromState } from '../colours';
|
|
6
|
+
import { getSiteSettingFromState } from '../helper';
|
|
7
|
+
// import { HAS_GRADIENT_HEADER } from '../../config';
|
|
8
|
+
import Config from '../config';
|
|
9
|
+
class CategoryTabs extends Component {
|
|
10
|
+
constructor(props) {
|
|
11
|
+
super(props);
|
|
12
|
+
this.state = {
|
|
13
|
+
categoryKeys: [],
|
|
14
|
+
selectedCategory: this.props.initialCategory
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
UNSAFE_componentWillMount() {
|
|
18
|
+
this.setState({
|
|
19
|
+
selectedCategory: !_.isUndefined(this.props.currentTab) && !_.isEmpty(this.props.currentTab) ? this.props.currentTab : this.props.initialCategory,
|
|
20
|
+
categoryKeys: this.props.categoryKeys
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
componentDidMount() {
|
|
24
|
+
this.setState({
|
|
25
|
+
selectedCategory: !_.isUndefined(this.props.currentTab) && !_.isEmpty(this.props.currentTab) ? this.props.currentTab : this.props.initialCategory
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
UNSAFE_componentWillReceiveProps(nextProps) {
|
|
29
|
+
if (!_.isUndefined(nextProps.currentTab) && !_.isEmpty(nextProps.currentTab)) {
|
|
30
|
+
this.setState({
|
|
31
|
+
selectedCategory: nextProps.currentTab
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
selectCategory(key) {
|
|
36
|
+
this.setState({
|
|
37
|
+
selectedCategory: key
|
|
38
|
+
});
|
|
39
|
+
this.props.onSelect(key);
|
|
40
|
+
}
|
|
41
|
+
renderCounter(key) {
|
|
42
|
+
if (this.props.categoryCounter && this.props.categoryCounter[key] && this.props.categoryCounter[key] === true && this.props.counterValues && this.props.counterValues[key] > 0) {
|
|
43
|
+
return /*#__PURE__*/React.createElement(View, {
|
|
44
|
+
style: styles.counter
|
|
45
|
+
}, /*#__PURE__*/React.createElement(Text, {
|
|
46
|
+
style: styles.counterText
|
|
47
|
+
}, this.props.counterValues[key]));
|
|
48
|
+
}
|
|
49
|
+
return null;
|
|
50
|
+
}
|
|
51
|
+
renderCategories(noScrollStyle) {
|
|
52
|
+
const getTextColour = key => {
|
|
53
|
+
if (this.state.selectedCategory === key) {
|
|
54
|
+
return this.props.headerType !== 'white' ? '#fff' : this.props.colourBrandingMain;
|
|
55
|
+
}
|
|
56
|
+
return this.props.headerType !== 'white' ? '#fff' : TEXT_LIGHT;
|
|
57
|
+
};
|
|
58
|
+
const getBottomBorderColour = key => {
|
|
59
|
+
if (this.state.selectedCategory === key) {
|
|
60
|
+
return this.props.headerType !== 'white' ? '#fff' : this.props.colourBrandingMain;
|
|
61
|
+
}
|
|
62
|
+
return this.props.headerType !== 'white' ? this.props.colourBrandingMain : '#fff';
|
|
63
|
+
};
|
|
64
|
+
return this.state.categoryKeys.map((key, index) => {
|
|
65
|
+
return /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
66
|
+
key: index
|
|
67
|
+
// style={[{ minHeight: this.props.height || 30, justifyContent: 'center' }, noScrollStyle && { flex: 1 }]}
|
|
68
|
+
,
|
|
69
|
+
style: [{
|
|
70
|
+
flex: 1,
|
|
71
|
+
minHeight: this.props.height || 30,
|
|
72
|
+
justifyContent: 'center'
|
|
73
|
+
}, this.props.catWrapperStyle],
|
|
74
|
+
onPress: this.selectCategory.bind(this, key)
|
|
75
|
+
}, /*#__PURE__*/React.createElement(View, {
|
|
76
|
+
style: [{
|
|
77
|
+
borderBottomColor: getBottomBorderColour(key),
|
|
78
|
+
borderBottomWidth: noScrollStyle ? 0 : 2,
|
|
79
|
+
marginRight: noScrollStyle ? 0 : 16,
|
|
80
|
+
marginLeft: index === 0 && !noScrollStyle ? 16 : 0,
|
|
81
|
+
justifyContent: 'center',
|
|
82
|
+
alignContent: 'center',
|
|
83
|
+
minHeight: 30,
|
|
84
|
+
flexDirection: 'row',
|
|
85
|
+
backgroundColor: this.props.headerType !== 'white' ? this.props.colourBrandingMain : undefined
|
|
86
|
+
}, this.props.style]
|
|
87
|
+
}, /*#__PURE__*/React.createElement(View, {
|
|
88
|
+
style: [noScrollStyle && styles.innerContainer, {
|
|
89
|
+
flex: 1,
|
|
90
|
+
borderColor: getBottomBorderColour(key),
|
|
91
|
+
justifyContent: 'center'
|
|
92
|
+
}, this.props.catStyle]
|
|
93
|
+
}, /*#__PURE__*/React.createElement(Text, {
|
|
94
|
+
style: [{
|
|
95
|
+
fontFamily: 'sf-semibold',
|
|
96
|
+
fontSize: 15,
|
|
97
|
+
color: getTextColour(key),
|
|
98
|
+
textAlign: 'center',
|
|
99
|
+
paddingVertical: 8,
|
|
100
|
+
width: 'auto'
|
|
101
|
+
}, this.props.textStyle, this.props.colourBrandingHeader && this.state.selectedCategory !== key && {
|
|
102
|
+
color: this.props.colourBrandingMain,
|
|
103
|
+
opacity: 0.5
|
|
104
|
+
}]
|
|
105
|
+
}, key), this.renderCounter(key))));
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
render() {
|
|
109
|
+
if (this.props.noScroll) {
|
|
110
|
+
// return (<View style={{ flexDirection: 'row', paddingLeft: 16, paddingRight: 16 }}>
|
|
111
|
+
return /*#__PURE__*/React.createElement(View, {
|
|
112
|
+
style: {
|
|
113
|
+
flexDirection: 'row',
|
|
114
|
+
justifyContent: 'space-evenly'
|
|
115
|
+
}
|
|
116
|
+
}, this.renderCategories(true));
|
|
117
|
+
}
|
|
118
|
+
return /*#__PURE__*/React.createElement(ScrollView, {
|
|
119
|
+
horizontal: true
|
|
120
|
+
}, this.renderCategories(false));
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
const styles = {
|
|
124
|
+
counter: {
|
|
125
|
+
backgroundColor: COLOUR_GREEN,
|
|
126
|
+
height: 16,
|
|
127
|
+
minWidth: 16,
|
|
128
|
+
borderRadius: 8,
|
|
129
|
+
marginLeft: 4,
|
|
130
|
+
marginTop: 4,
|
|
131
|
+
justifyContent: 'center',
|
|
132
|
+
alignContent: 'center'
|
|
133
|
+
},
|
|
134
|
+
counterText: {
|
|
135
|
+
color: '#fff',
|
|
136
|
+
textAlign: 'center',
|
|
137
|
+
fontSize: 12,
|
|
138
|
+
fontFamily: 'sf-semibold'
|
|
139
|
+
},
|
|
140
|
+
innerContainer: {
|
|
141
|
+
borderBottomWidth: 2,
|
|
142
|
+
flexDirection: 'row',
|
|
143
|
+
paddingHorizontal: 8
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
const mapStateToProps = state => {
|
|
147
|
+
return {
|
|
148
|
+
colourBrandingMain: getMainBrandingColourFromState(state),
|
|
149
|
+
headerType: getSiteSettingFromState(state, 'HeaderType', getSiteSettingFromState(state, 'UseGradientHeader', Config.env.hasGradientHeader) ? 'gradient' : 'white')
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
const categoryTabs = connect(mapStateToProps, {})(CategoryTabs);
|
|
153
|
+
export { categoryTabs as CategoryTabs };
|
|
154
|
+
//# sourceMappingURL=CategoryTabs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Component","_","Text","TouchableOpacity","View","ScrollView","connect","TEXT_LIGHT","COLOUR_GREEN","getMainBrandingColourFromState","getSiteSettingFromState","Config","CategoryTabs","constructor","props","state","categoryKeys","selectedCategory","initialCategory","UNSAFE_componentWillMount","setState","isUndefined","currentTab","isEmpty","componentDidMount","UNSAFE_componentWillReceiveProps","nextProps","selectCategory","key","onSelect","renderCounter","categoryCounter","counterValues","createElement","style","styles","counter","counterText","renderCategories","noScrollStyle","getTextColour","headerType","colourBrandingMain","getBottomBorderColour","map","index","flex","minHeight","height","justifyContent","catWrapperStyle","onPress","bind","borderBottomColor","borderBottomWidth","marginRight","marginLeft","alignContent","flexDirection","backgroundColor","undefined","innerContainer","borderColor","catStyle","fontFamily","fontSize","color","textAlign","paddingVertical","width","textStyle","colourBrandingHeader","opacity","render","noScroll","horizontal","minWidth","borderRadius","marginTop","paddingHorizontal","mapStateToProps","env","hasGradientHeader","categoryTabs"],"sources":["CategoryTabs.js"],"sourcesContent":["import React, { Component } from 'react';\nimport _ from 'lodash';\nimport { Text, TouchableOpacity, View, ScrollView } from 'react-native';\nimport { connect } from 'react-redux';\nimport { TEXT_LIGHT, COLOUR_GREEN, getMainBrandingColourFromState } from '../colours';\nimport { getSiteSettingFromState } from '../helper';\n// import { HAS_GRADIENT_HEADER } from '../../config';\nimport Config from '../config';\n\nclass CategoryTabs extends Component {\n constructor(props) {\n super(props);\n this.state = {\n categoryKeys: [],\n selectedCategory: this.props.initialCategory,\n };\n }\n\n UNSAFE_componentWillMount() {\n this.setState({\n selectedCategory:\n !_.isUndefined(this.props.currentTab) && !_.isEmpty(this.props.currentTab) ? this.props.currentTab : this.props.initialCategory,\n categoryKeys: this.props.categoryKeys,\n });\n }\n\n componentDidMount() {\n this.setState({\n selectedCategory:\n !_.isUndefined(this.props.currentTab) && !_.isEmpty(this.props.currentTab) ? this.props.currentTab : this.props.initialCategory,\n });\n }\n\n UNSAFE_componentWillReceiveProps(nextProps) {\n if (!_.isUndefined(nextProps.currentTab) && !_.isEmpty(nextProps.currentTab)) {\n this.setState({ selectedCategory: nextProps.currentTab });\n }\n }\n\n selectCategory(key) {\n this.setState({\n selectedCategory: key,\n });\n this.props.onSelect(key);\n }\n\n renderCounter(key) {\n if (\n this.props.categoryCounter &&\n this.props.categoryCounter[key] &&\n this.props.categoryCounter[key] === true &&\n this.props.counterValues &&\n this.props.counterValues[key] > 0\n ) {\n return (\n <View style={styles.counter}>\n <Text style={styles.counterText}>{this.props.counterValues[key]}</Text>\n </View>\n );\n }\n return null;\n }\n\n renderCategories(noScrollStyle) {\n const getTextColour = key => {\n if (this.state.selectedCategory === key) {\n return this.props.headerType !== 'white' ? '#fff' : this.props.colourBrandingMain;\n }\n return this.props.headerType !== 'white' ? '#fff' : TEXT_LIGHT;\n };\n const getBottomBorderColour = key => {\n if (this.state.selectedCategory === key) {\n return this.props.headerType !== 'white' ? '#fff' : this.props.colourBrandingMain;\n }\n return this.props.headerType !== 'white' ? this.props.colourBrandingMain : '#fff';\n };\n return this.state.categoryKeys.map((key, index) => {\n return (\n <TouchableOpacity\n key={index}\n // style={[{ minHeight: this.props.height || 30, justifyContent: 'center' }, noScrollStyle && { flex: 1 }]}\n style={[{ flex: 1, minHeight: this.props.height || 30, justifyContent: 'center' }, this.props.catWrapperStyle]}\n onPress={this.selectCategory.bind(this, key)}\n >\n <View\n style={[\n {\n borderBottomColor: getBottomBorderColour(key),\n borderBottomWidth: noScrollStyle ? 0 : 2,\n marginRight: noScrollStyle ? 0 : 16,\n marginLeft: index === 0 && !noScrollStyle ? 16 : 0,\n justifyContent: 'center',\n alignContent: 'center',\n minHeight: 30,\n flexDirection: 'row',\n backgroundColor: this.props.headerType !== 'white' ? this.props.colourBrandingMain : undefined,\n },\n this.props.style,\n ]}\n >\n <View\n style={[\n noScrollStyle && styles.innerContainer,\n {\n flex: 1,\n borderColor: getBottomBorderColour(key),\n justifyContent: 'center',\n },\n this.props.catStyle,\n ]}\n >\n <Text\n style={[\n {\n fontFamily: 'sf-semibold',\n fontSize: 15,\n color: getTextColour(key),\n textAlign: 'center',\n paddingVertical: 8,\n width: 'auto',\n },\n this.props.textStyle,\n this.props.colourBrandingHeader &&\n this.state.selectedCategory !== key && { color: this.props.colourBrandingMain, opacity: 0.5 },\n ]}\n >\n {key}\n </Text>\n {this.renderCounter(key)}\n </View>\n </View>\n </TouchableOpacity>\n );\n });\n }\n\n render() {\n if (this.props.noScroll) {\n // return (<View style={{ flexDirection: 'row', paddingLeft: 16, paddingRight: 16 }}>\n return <View style={{ flexDirection: 'row', justifyContent: 'space-evenly' }}>{this.renderCategories(true)}</View>;\n }\n return <ScrollView horizontal>{this.renderCategories(false)}</ScrollView>;\n }\n}\n\nconst styles = {\n counter: {\n backgroundColor: COLOUR_GREEN,\n height: 16,\n minWidth: 16,\n borderRadius: 8,\n marginLeft: 4,\n marginTop: 4,\n justifyContent: 'center',\n alignContent: 'center',\n },\n counterText: {\n color: '#fff',\n textAlign: 'center',\n fontSize: 12,\n fontFamily: 'sf-semibold',\n },\n innerContainer: {\n borderBottomWidth: 2,\n flexDirection: 'row',\n paddingHorizontal: 8,\n },\n};\n\nconst mapStateToProps = state => {\n return {\n colourBrandingMain: getMainBrandingColourFromState(state),\n headerType: getSiteSettingFromState(\n state,\n 'HeaderType',\n getSiteSettingFromState(state, 'UseGradientHeader', Config.env.hasGradientHeader) ? 'gradient' : 'white',\n ),\n };\n};\n\nconst categoryTabs = connect(mapStateToProps, {})(CategoryTabs);\nexport { categoryTabs as CategoryTabs };\n"],"mappings":"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"}
|
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
2
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
3
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
4
|
+
import React, { Component } from 'react';
|
|
5
|
+
import { connect } from 'react-redux';
|
|
6
|
+
import { Keyboard, TextInput, View, ImageBackground, TouchableOpacity, Dimensions } from 'react-native';
|
|
7
|
+
import { Icon } from 'react-native-elements';
|
|
8
|
+
import { getBottomSpace } from 'react-native-iphone-x-helper';
|
|
9
|
+
import _ from 'lodash';
|
|
10
|
+
import { getApiError } from '../session';
|
|
11
|
+
import { getShadowStyle } from '../helper';
|
|
12
|
+
import { TEXT_BLUEGREY, TEXT_DARKEST, BG_GREY } from '../colours';
|
|
13
|
+
import { Spinner } from './Spinner';
|
|
14
|
+
import ImageUploader from './ImageUploader';
|
|
15
|
+
import { reactionActions } from '../apis';
|
|
16
|
+
const SCREEN_HEIGHT = Dimensions.get('window').height;
|
|
17
|
+
class CommentReply extends Component {
|
|
18
|
+
constructor(props) {
|
|
19
|
+
super(props);
|
|
20
|
+
_defineProperty(this, "onUploadStarted", () => {
|
|
21
|
+
this.setState({
|
|
22
|
+
uploadingCommentImage: true
|
|
23
|
+
});
|
|
24
|
+
setTimeout(() => {
|
|
25
|
+
if (!this.props.noScroll) {
|
|
26
|
+
var _this$props$scrollVie;
|
|
27
|
+
(_this$props$scrollVie = this.props.scrollView) === null || _this$props$scrollVie === void 0 || (_this$props$scrollVie = _this$props$scrollVie.current) === null || _this$props$scrollVie === void 0 || _this$props$scrollVie.scrollToEnd({
|
|
28
|
+
animated: true
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
}, 500);
|
|
32
|
+
});
|
|
33
|
+
_defineProperty(this, "onUploadSuccess", uri => {
|
|
34
|
+
this.setState({
|
|
35
|
+
uploadingCommentImage: false,
|
|
36
|
+
commentImageInput: uri.replace('/general/', '/general1400/')
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
_defineProperty(this, "onUploadFailed", () => {
|
|
40
|
+
this.setState({
|
|
41
|
+
uploadingCommentImage: false,
|
|
42
|
+
commentImageInput: null
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
this.state = {
|
|
46
|
+
commentImageInput: '',
|
|
47
|
+
commentInput: '',
|
|
48
|
+
uploadingCommentImage: false,
|
|
49
|
+
commentsLoading: true,
|
|
50
|
+
addingComment: false
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
componentDidMount() {
|
|
54
|
+
if (this.props.commentSection && this.props.commentSection.current) {
|
|
55
|
+
this.setState({
|
|
56
|
+
commentsLoading: this.props.commentSection.current.isLoading()
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
focusInput() {
|
|
61
|
+
this.refs.replyInput.focus();
|
|
62
|
+
}
|
|
63
|
+
loadingStarted() {
|
|
64
|
+
this.setState({
|
|
65
|
+
commentsLoading: true
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
loadingCompleted() {
|
|
69
|
+
this.setState({
|
|
70
|
+
commentsLoading: false
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
shouldShowImageInput() {
|
|
74
|
+
return this.state.uploadingCommentImage || !_.isEmpty(this.state.commentImageInput);
|
|
75
|
+
}
|
|
76
|
+
addComment() {
|
|
77
|
+
setTimeout(() => {
|
|
78
|
+
if (!this.props.noScroll) {
|
|
79
|
+
var _this$props$scrollVie2;
|
|
80
|
+
(_this$props$scrollVie2 = this.props.scrollView) === null || _this$props$scrollVie2 === void 0 || (_this$props$scrollVie2 = _this$props$scrollVie2.current) === null || _this$props$scrollVie2 === void 0 || _this$props$scrollVie2.scrollToEnd({
|
|
81
|
+
animated: true
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
}, 500);
|
|
85
|
+
const text = this.state.commentInput;
|
|
86
|
+
const image = this.state.commentImageInput;
|
|
87
|
+
this.setState({
|
|
88
|
+
addingComment: true,
|
|
89
|
+
commentInput: '',
|
|
90
|
+
commentImageInput: ''
|
|
91
|
+
});
|
|
92
|
+
Keyboard.dismiss();
|
|
93
|
+
if (this.props.commentSection) {
|
|
94
|
+
var _this$props$commentSe;
|
|
95
|
+
(_this$props$commentSe = this.props.commentSection) === null || _this$props$commentSe === void 0 || (_this$props$commentSe = _this$props$commentSe.current) === null || _this$props$commentSe === void 0 || _this$props$commentSe.startedAddingComment();
|
|
96
|
+
}
|
|
97
|
+
reactionActions.addComment(this.props.entityId, this.props.entityType, this.props.entityName, this.props.site, text, image, this.props.threadId).then(res => {
|
|
98
|
+
if (this.props.commentSection) {
|
|
99
|
+
var _this$props$commentSe2;
|
|
100
|
+
(_this$props$commentSe2 = this.props.commentSection) === null || _this$props$commentSe2 === void 0 || (_this$props$commentSe2 = _this$props$commentSe2.current) === null || _this$props$commentSe2 === void 0 || _this$props$commentSe2.commentAdded(res.data);
|
|
101
|
+
}
|
|
102
|
+
this.setState({
|
|
103
|
+
addingComment: false
|
|
104
|
+
});
|
|
105
|
+
setTimeout(() => {
|
|
106
|
+
if (!this.props.noScroll) {
|
|
107
|
+
var _this$props$scrollVie3;
|
|
108
|
+
(_this$props$scrollVie3 = this.props.scrollView) === null || _this$props$scrollVie3 === void 0 || (_this$props$scrollVie3 = _this$props$scrollVie3.current) === null || _this$props$scrollVie3 === void 0 || _this$props$scrollVie3.scrollToEnd({
|
|
109
|
+
animated: true
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
}, 500);
|
|
113
|
+
}).catch(err => {
|
|
114
|
+
console.log(getApiError(err));
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
removeImage() {
|
|
118
|
+
this.setState({
|
|
119
|
+
commentImageInput: null
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
showUploadMenu() {
|
|
123
|
+
if (this.state.uploadingCommentImage || !_.isEmpty(this.state.commentImageInput)) {
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
this.commentImageUploader.showUploadMenu();
|
|
127
|
+
}
|
|
128
|
+
renderImageAttachment() {
|
|
129
|
+
if (_.isEmpty(this.state.commentImageInput) && !this.state.uploadingCommentImage) {
|
|
130
|
+
return null;
|
|
131
|
+
}
|
|
132
|
+
if (this.state.uploadingCommentImage) {
|
|
133
|
+
return /*#__PURE__*/React.createElement(View, {
|
|
134
|
+
style: [styles.accessoryImage, styles.accessoryImageBorder, {
|
|
135
|
+
borderWidth: 1,
|
|
136
|
+
borderColor: BG_GREY
|
|
137
|
+
}]
|
|
138
|
+
}, /*#__PURE__*/React.createElement(Spinner, null));
|
|
139
|
+
}
|
|
140
|
+
return /*#__PURE__*/React.createElement(ImageBackground, {
|
|
141
|
+
style: styles.accessoryImage,
|
|
142
|
+
imageStyle: styles.accessoryImageBorder,
|
|
143
|
+
source: {
|
|
144
|
+
uri: this.state.commentImageInput
|
|
145
|
+
}
|
|
146
|
+
}, /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
147
|
+
style: styles.accessoryImageClose,
|
|
148
|
+
onPress: this.removeImage.bind(this),
|
|
149
|
+
hitSlop: {
|
|
150
|
+
top: 8,
|
|
151
|
+
right: 8,
|
|
152
|
+
bottom: 8,
|
|
153
|
+
left: 8
|
|
154
|
+
}
|
|
155
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
156
|
+
name: "remove",
|
|
157
|
+
type: "font-awesome",
|
|
158
|
+
iconStyle: styles.accessoryImageCloseIcon,
|
|
159
|
+
style: styles.accessoryImageCloseIconContainer
|
|
160
|
+
})));
|
|
161
|
+
}
|
|
162
|
+
renderImageUploader() {
|
|
163
|
+
return /*#__PURE__*/React.createElement(ImageUploader, {
|
|
164
|
+
ref: ref => this.commentImageUploader = ref,
|
|
165
|
+
onUploadStarted: this.onUploadStarted,
|
|
166
|
+
onUploadSuccess: this.onUploadSuccess,
|
|
167
|
+
onUploadFailed: this.onUploadFailed,
|
|
168
|
+
onLibrarySelected: this.onUploadSuccess,
|
|
169
|
+
quality: 0.8,
|
|
170
|
+
allowsEditing: false,
|
|
171
|
+
fileName: "commentImage",
|
|
172
|
+
popupTitle: "Add Image",
|
|
173
|
+
userId: this.props.user.uid,
|
|
174
|
+
hideLibrary: true
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
render() {
|
|
178
|
+
if (_.includes(this.props.user.hidden, 'addComment')) {
|
|
179
|
+
return null;
|
|
180
|
+
}
|
|
181
|
+
if (this.state.commentsLoading) {
|
|
182
|
+
return null;
|
|
183
|
+
}
|
|
184
|
+
return /*#__PURE__*/React.createElement(View, {
|
|
185
|
+
style: [styles.inputContainer, getShadowStyle(), this.props.style]
|
|
186
|
+
}, /*#__PURE__*/React.createElement(View, {
|
|
187
|
+
style: [styles.input, {
|
|
188
|
+
marginRight: _.isEmpty(this.state.commentInput) && _.isEmpty(this.state.commentImageInput) ? 40 : 80
|
|
189
|
+
}]
|
|
190
|
+
}, /*#__PURE__*/React.createElement(TextInput, {
|
|
191
|
+
ref: "replyInput",
|
|
192
|
+
placeholder: "Enter your comment here",
|
|
193
|
+
value: this.state.commentInput,
|
|
194
|
+
onFocus: () => {
|
|
195
|
+
if (!this.props.noScroll) {
|
|
196
|
+
var _this$props$scrollVie4;
|
|
197
|
+
(_this$props$scrollVie4 = this.props.scrollView) === null || _this$props$scrollVie4 === void 0 || (_this$props$scrollVie4 = _this$props$scrollVie4.current) === null || _this$props$scrollVie4 === void 0 || _this$props$scrollVie4.scrollToEnd({
|
|
198
|
+
animated: true
|
|
199
|
+
});
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
onChangeText: value => {
|
|
203
|
+
if (!this.props.noScroll) {
|
|
204
|
+
var _this$props$scrollVie5;
|
|
205
|
+
(_this$props$scrollVie5 = this.props.scrollView) === null || _this$props$scrollVie5 === void 0 || (_this$props$scrollVie5 = _this$props$scrollVie5.current) === null || _this$props$scrollVie5 === void 0 || _this$props$scrollVie5.scrollToEnd({
|
|
206
|
+
animated: false
|
|
207
|
+
});
|
|
208
|
+
}
|
|
209
|
+
this.setState({
|
|
210
|
+
commentInput: value
|
|
211
|
+
});
|
|
212
|
+
},
|
|
213
|
+
style: styles.inputText,
|
|
214
|
+
autoCapitalize: "sentences",
|
|
215
|
+
multiline: true,
|
|
216
|
+
autoCorrect: true,
|
|
217
|
+
autoGrow: true
|
|
218
|
+
})), (!_.isEmpty(this.state.commentInput) || !_.isEmpty(this.state.commentImageInput)) && !this.state.addingComment && /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
219
|
+
onPress: this.addComment.bind(this),
|
|
220
|
+
style: [styles.sendContainer, {
|
|
221
|
+
right: 4,
|
|
222
|
+
padding: 4,
|
|
223
|
+
width: 40,
|
|
224
|
+
height: 40
|
|
225
|
+
}]
|
|
226
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
227
|
+
name: "paper-plane",
|
|
228
|
+
type: "font-awesome",
|
|
229
|
+
iconStyle: [styles.send, {
|
|
230
|
+
width: 40
|
|
231
|
+
}]
|
|
232
|
+
})), /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
233
|
+
onPress: this.showUploadMenu.bind(this),
|
|
234
|
+
style: [styles.sendContainer, {
|
|
235
|
+
right: _.isEmpty(this.state.commentInput) && _.isEmpty(this.state.commentImageInput) ? 4 : 44,
|
|
236
|
+
padding: 4,
|
|
237
|
+
width: 40,
|
|
238
|
+
height: 40
|
|
239
|
+
}]
|
|
240
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
241
|
+
name: "picture-o",
|
|
242
|
+
type: "font-awesome",
|
|
243
|
+
iconStyle: [styles.send, {
|
|
244
|
+
width: 40
|
|
245
|
+
}]
|
|
246
|
+
})), this.renderImageAttachment(), this.renderImageUploader());
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
const styles = {
|
|
250
|
+
accessoryImage: {
|
|
251
|
+
marginTop: 8,
|
|
252
|
+
width: 60,
|
|
253
|
+
height: 60
|
|
254
|
+
},
|
|
255
|
+
accessoryImageBorder: {
|
|
256
|
+
borderRadius: 2
|
|
257
|
+
},
|
|
258
|
+
accessoryImageClose: {
|
|
259
|
+
width: 14,
|
|
260
|
+
height: 14,
|
|
261
|
+
borderRadius: 7,
|
|
262
|
+
position: 'absolute',
|
|
263
|
+
top: -7,
|
|
264
|
+
right: -7,
|
|
265
|
+
backgroundColor: TEXT_BLUEGREY
|
|
266
|
+
},
|
|
267
|
+
accessoryImageCloseIconContainer: {
|
|
268
|
+
width: 14,
|
|
269
|
+
height: 14,
|
|
270
|
+
alignItems: 'center',
|
|
271
|
+
justifyContent: 'center'
|
|
272
|
+
},
|
|
273
|
+
accessoryImageCloseIcon: {
|
|
274
|
+
fontSize: 10,
|
|
275
|
+
color: '#fff',
|
|
276
|
+
textAlign: 'center'
|
|
277
|
+
},
|
|
278
|
+
inputContainer: {
|
|
279
|
+
backgroundColor: '#fff',
|
|
280
|
+
paddingVertical: 8,
|
|
281
|
+
paddingHorizontal: 8,
|
|
282
|
+
paddingBottom: 8 + getBottomSpace(),
|
|
283
|
+
flexGrow: 1
|
|
284
|
+
},
|
|
285
|
+
inputText: {
|
|
286
|
+
color: TEXT_DARKEST,
|
|
287
|
+
fontSize: 14,
|
|
288
|
+
fontFamily: 'sf-medium'
|
|
289
|
+
},
|
|
290
|
+
input: {
|
|
291
|
+
fontSize: 14,
|
|
292
|
+
color: TEXT_DARKEST,
|
|
293
|
+
fontFamily: 'sf-medium',
|
|
294
|
+
margin: 0,
|
|
295
|
+
backgroundColor: BG_GREY,
|
|
296
|
+
borderRadius: 5,
|
|
297
|
+
padding: 8,
|
|
298
|
+
maxHeight: SCREEN_HEIGHT / 3
|
|
299
|
+
},
|
|
300
|
+
sendContainer: {
|
|
301
|
+
position: 'absolute',
|
|
302
|
+
top: 8,
|
|
303
|
+
right: 8,
|
|
304
|
+
height: 30,
|
|
305
|
+
width: 30,
|
|
306
|
+
alignItems: 'center',
|
|
307
|
+
justifyContent: 'center',
|
|
308
|
+
backgroundColor: '#fff'
|
|
309
|
+
},
|
|
310
|
+
send: {
|
|
311
|
+
color: TEXT_BLUEGREY,
|
|
312
|
+
fontSize: 24,
|
|
313
|
+
textAlign: 'center'
|
|
314
|
+
}
|
|
315
|
+
};
|
|
316
|
+
const mapStateToProps = state => {
|
|
317
|
+
const {
|
|
318
|
+
user
|
|
319
|
+
} = state;
|
|
320
|
+
return {
|
|
321
|
+
user
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
const commentReply = connect(mapStateToProps, {}, null, {
|
|
325
|
+
forwardRef: true
|
|
326
|
+
})(CommentReply);
|
|
327
|
+
export { commentReply as CommentReply };
|
|
328
|
+
//# sourceMappingURL=CommentReply.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Component","connect","Keyboard","TextInput","View","ImageBackground","TouchableOpacity","Dimensions","Icon","getBottomSpace","_","getApiError","getShadowStyle","TEXT_BLUEGREY","TEXT_DARKEST","BG_GREY","Spinner","ImageUploader","reactionActions","SCREEN_HEIGHT","get","height","CommentReply","constructor","props","_defineProperty","setState","uploadingCommentImage","setTimeout","noScroll","_this$props$scrollVie","scrollView","current","scrollToEnd","animated","uri","commentImageInput","replace","state","commentInput","commentsLoading","addingComment","componentDidMount","commentSection","isLoading","focusInput","refs","replyInput","focus","loadingStarted","loadingCompleted","shouldShowImageInput","isEmpty","addComment","_this$props$scrollVie2","text","image","dismiss","_this$props$commentSe","startedAddingComment","entityId","entityType","entityName","site","threadId","then","res","_this$props$commentSe2","commentAdded","data","_this$props$scrollVie3","catch","err","console","log","removeImage","showUploadMenu","commentImageUploader","renderImageAttachment","createElement","style","styles","accessoryImage","accessoryImageBorder","borderWidth","borderColor","imageStyle","source","accessoryImageClose","onPress","bind","hitSlop","top","right","bottom","left","name","type","iconStyle","accessoryImageCloseIcon","accessoryImageCloseIconContainer","renderImageUploader","ref","onUploadStarted","onUploadSuccess","onUploadFailed","onLibrarySelected","quality","allowsEditing","fileName","popupTitle","userId","user","uid","hideLibrary","render","includes","hidden","inputContainer","input","marginRight","placeholder","value","onFocus","_this$props$scrollVie4","onChangeText","_this$props$scrollVie5","inputText","autoCapitalize","multiline","autoCorrect","autoGrow","sendContainer","padding","width","send","marginTop","borderRadius","position","backgroundColor","alignItems","justifyContent","fontSize","color","textAlign","paddingVertical","paddingHorizontal","paddingBottom","flexGrow","fontFamily","margin","maxHeight","mapStateToProps","commentReply","forwardRef"],"sources":["CommentReply.js"],"sourcesContent":["import React, { Component } from 'react';\nimport { connect } from 'react-redux';\nimport { Keyboard, TextInput, View, ImageBackground, TouchableOpacity, Dimensions } from 'react-native';\nimport { Icon } from 'react-native-elements';\nimport { getBottomSpace } from 'react-native-iphone-x-helper';\nimport _ from 'lodash';\nimport { getApiError } from '../session';\nimport { getShadowStyle } from '../helper';\nimport { TEXT_BLUEGREY, TEXT_DARKEST, BG_GREY } from '../colours';\nimport { Spinner } from './Spinner';\nimport ImageUploader from './ImageUploader';\nimport { reactionActions } from '../apis';\n\nconst SCREEN_HEIGHT = Dimensions.get('window').height;\n\nclass CommentReply extends Component {\n constructor(props) {\n super(props);\n\n this.state = {\n commentImageInput: '',\n commentInput: '',\n uploadingCommentImage: false,\n commentsLoading: true,\n addingComment: false,\n };\n }\n\n componentDidMount() {\n if (this.props.commentSection && this.props.commentSection.current) {\n this.setState({\n commentsLoading: this.props.commentSection.current.isLoading(),\n });\n }\n }\n\n onUploadStarted = () => {\n this.setState({\n uploadingCommentImage: true,\n });\n setTimeout(() => {\n if (!this.props.noScroll) {\n this.props.scrollView?.current?.scrollToEnd({ animated: true });\n }\n }, 500);\n };\n\n onUploadSuccess = uri => {\n this.setState({\n uploadingCommentImage: false,\n commentImageInput: uri.replace('/general/', '/general1400/'),\n });\n };\n\n onUploadFailed = () => {\n this.setState({\n uploadingCommentImage: false,\n commentImageInput: null,\n });\n };\n\n focusInput() {\n this.refs.replyInput.focus();\n }\n\n loadingStarted() {\n this.setState({\n commentsLoading: true,\n });\n }\n\n loadingCompleted() {\n this.setState({\n commentsLoading: false,\n });\n }\n\n shouldShowImageInput() {\n return this.state.uploadingCommentImage || !_.isEmpty(this.state.commentImageInput);\n }\n\n addComment() {\n setTimeout(() => {\n if (!this.props.noScroll) {\n this.props.scrollView?.current?.scrollToEnd({ animated: true });\n }\n }, 500);\n const text = this.state.commentInput;\n const image = this.state.commentImageInput;\n this.setState({\n addingComment: true,\n commentInput: '',\n commentImageInput: '',\n });\n Keyboard.dismiss();\n if (this.props.commentSection) {\n this.props.commentSection?.current?.startedAddingComment();\n }\n reactionActions\n .addComment(this.props.entityId, this.props.entityType, this.props.entityName, this.props.site, text, image, this.props.threadId)\n .then(res => {\n if (this.props.commentSection) {\n this.props.commentSection?.current?.commentAdded(res.data);\n }\n this.setState({\n addingComment: false,\n });\n setTimeout(() => {\n if (!this.props.noScroll) {\n this.props.scrollView?.current?.scrollToEnd({ animated: true });\n }\n }, 500);\n })\n .catch(err => {\n console.log(getApiError(err));\n });\n }\n\n removeImage() {\n this.setState({\n commentImageInput: null,\n });\n }\n\n showUploadMenu() {\n if (this.state.uploadingCommentImage || !_.isEmpty(this.state.commentImageInput)) {\n return;\n }\n this.commentImageUploader.showUploadMenu();\n }\n\n renderImageAttachment() {\n if (_.isEmpty(this.state.commentImageInput) && !this.state.uploadingCommentImage) {\n return null;\n }\n if (this.state.uploadingCommentImage) {\n return (\n <View style={[styles.accessoryImage, styles.accessoryImageBorder, { borderWidth: 1, borderColor: BG_GREY }]}>\n <Spinner />\n </View>\n );\n }\n return (\n <ImageBackground\n style={styles.accessoryImage}\n imageStyle={styles.accessoryImageBorder}\n source={{ uri: this.state.commentImageInput }}\n >\n <TouchableOpacity\n style={styles.accessoryImageClose}\n onPress={this.removeImage.bind(this)}\n hitSlop={{ top: 8, right: 8, bottom: 8, left: 8 }}\n >\n <Icon\n name=\"remove\"\n type=\"font-awesome\"\n iconStyle={styles.accessoryImageCloseIcon}\n style={styles.accessoryImageCloseIconContainer}\n />\n </TouchableOpacity>\n </ImageBackground>\n );\n }\n\n renderImageUploader() {\n return (\n <ImageUploader\n ref={ref => (this.commentImageUploader = ref)}\n onUploadStarted={this.onUploadStarted}\n onUploadSuccess={this.onUploadSuccess}\n onUploadFailed={this.onUploadFailed}\n onLibrarySelected={this.onUploadSuccess}\n quality={0.8}\n allowsEditing={false}\n fileName=\"commentImage\"\n popupTitle=\"Add Image\"\n userId={this.props.user.uid}\n hideLibrary\n />\n );\n }\n\n render() {\n if (_.includes(this.props.user.hidden, 'addComment')) {\n return null;\n }\n if (this.state.commentsLoading) {\n return null;\n }\n return (\n <View style={[styles.inputContainer, getShadowStyle(), this.props.style]}>\n <View\n style={[\n styles.input,\n {\n marginRight: _.isEmpty(this.state.commentInput) && _.isEmpty(this.state.commentImageInput) ? 40 : 80,\n },\n ]}\n >\n <TextInput\n ref=\"replyInput\"\n placeholder=\"Enter your comment here\"\n value={this.state.commentInput}\n onFocus={() => {\n if (!this.props.noScroll) {\n this.props.scrollView?.current?.scrollToEnd({ animated: true });\n }\n }}\n onChangeText={value => {\n if (!this.props.noScroll) {\n this.props.scrollView?.current?.scrollToEnd({ animated: false });\n }\n this.setState({\n commentInput: value,\n });\n }}\n style={styles.inputText}\n autoCapitalize=\"sentences\"\n multiline\n autoCorrect\n autoGrow\n />\n </View>\n {(!_.isEmpty(this.state.commentInput) || !_.isEmpty(this.state.commentImageInput)) && !this.state.addingComment && (\n <TouchableOpacity\n onPress={this.addComment.bind(this)}\n style={[\n styles.sendContainer,\n {\n right: 4,\n padding: 4,\n width: 40,\n height: 40,\n },\n ]}\n >\n <Icon name=\"paper-plane\" type=\"font-awesome\" iconStyle={[styles.send, { width: 40 }]} />\n </TouchableOpacity>\n )}\n <TouchableOpacity\n onPress={this.showUploadMenu.bind(this)}\n style={[\n styles.sendContainer,\n {\n right: _.isEmpty(this.state.commentInput) && _.isEmpty(this.state.commentImageInput) ? 4 : 44,\n padding: 4,\n width: 40,\n height: 40,\n },\n ]}\n >\n <Icon name=\"picture-o\" type=\"font-awesome\" iconStyle={[styles.send, { width: 40 }]} />\n </TouchableOpacity>\n {this.renderImageAttachment()}\n {this.renderImageUploader()}\n </View>\n );\n }\n}\n\nconst styles = {\n accessoryImage: {\n marginTop: 8,\n width: 60,\n height: 60,\n },\n accessoryImageBorder: {\n borderRadius: 2,\n },\n accessoryImageClose: {\n width: 14,\n height: 14,\n borderRadius: 7,\n position: 'absolute',\n top: -7,\n right: -7,\n backgroundColor: TEXT_BLUEGREY,\n },\n accessoryImageCloseIconContainer: {\n width: 14,\n height: 14,\n alignItems: 'center',\n justifyContent: 'center',\n },\n accessoryImageCloseIcon: {\n fontSize: 10,\n color: '#fff',\n textAlign: 'center',\n },\n inputContainer: {\n backgroundColor: '#fff',\n paddingVertical: 8,\n paddingHorizontal: 8,\n paddingBottom: 8 + getBottomSpace(),\n flexGrow: 1,\n },\n inputText: {\n color: TEXT_DARKEST,\n fontSize: 14,\n fontFamily: 'sf-medium',\n },\n input: {\n fontSize: 14,\n color: TEXT_DARKEST,\n fontFamily: 'sf-medium',\n margin: 0,\n backgroundColor: BG_GREY,\n borderRadius: 5,\n padding: 8,\n maxHeight: SCREEN_HEIGHT / 3,\n },\n sendContainer: {\n position: 'absolute',\n top: 8,\n right: 8,\n height: 30,\n width: 30,\n alignItems: 'center',\n justifyContent: 'center',\n backgroundColor: '#fff',\n },\n send: {\n color: TEXT_BLUEGREY,\n fontSize: 24,\n textAlign: 'center',\n },\n};\n\nconst mapStateToProps = state => {\n const { user } = state;\n return { user };\n};\n\nconst commentReply = connect(mapStateToProps, {}, null, { forwardRef: true })(CommentReply);\nexport { commentReply as CommentReply };\n"],"mappings":";;;AAAA,OAAOA,KAAK,IAAIC,SAAS,QAAQ,OAAO;AACxC,SAASC,OAAO,QAAQ,aAAa;AACrC,SAASC,QAAQ,EAAEC,SAAS,EAAEC,IAAI,EAAEC,eAAe,EAAEC,gBAAgB,EAAEC,UAAU,QAAQ,cAAc;AACvG,SAASC,IAAI,QAAQ,uBAAuB;AAC5C,SAASC,cAAc,QAAQ,8BAA8B;AAC7D,OAAOC,CAAC,MAAM,QAAQ;AACtB,SAASC,WAAW,QAAQ,YAAY;AACxC,SAASC,cAAc,QAAQ,WAAW;AAC1C,SAASC,aAAa,EAAEC,YAAY,EAAEC,OAAO,QAAQ,YAAY;AACjE,SAASC,OAAO,QAAQ,WAAW;AACnC,OAAOC,aAAa,MAAM,iBAAiB;AAC3C,SAASC,eAAe,QAAQ,SAAS;AAEzC,MAAMC,aAAa,GAAGZ,UAAU,CAACa,GAAG,CAAC,QAAQ,CAAC,CAACC,MAAM;AAErD,MAAMC,YAAY,SAAStB,SAAS,CAAC;EACnCuB,WAAWA,CAACC,KAAK,EAAE;IACjB,KAAK,CAACA,KAAK,CAAC;IAACC,eAAA,0BAmBG,MAAM;MACtB,IAAI,CAACC,QAAQ,CAAC;QACZC,qBAAqB,EAAE;MACzB,CAAC,CAAC;MACFC,UAAU,CAAC,MAAM;QACf,IAAI,CAAC,IAAI,CAACJ,KAAK,CAACK,QAAQ,EAAE;UAAA,IAAAC,qBAAA;UACxB,CAAAA,qBAAA,OAAI,CAACN,KAAK,CAACO,UAAU,cAAAD,qBAAA,gBAAAA,qBAAA,GAArBA,qBAAA,CAAuBE,OAAO,cAAAF,qBAAA,eAA9BA,qBAAA,CAAgCG,WAAW,CAAC;YAAEC,QAAQ,EAAE;UAAK,CAAC,CAAC;QACjE;MACF,CAAC,EAAE,GAAG,CAAC;IACT,CAAC;IAAAT,eAAA,0BAEiBU,GAAG,IAAI;MACvB,IAAI,CAACT,QAAQ,CAAC;QACZC,qBAAqB,EAAE,KAAK;QAC5BS,iBAAiB,EAAED,GAAG,CAACE,OAAO,CAAC,WAAW,EAAE,eAAe;MAC7D,CAAC,CAAC;IACJ,CAAC;IAAAZ,eAAA,yBAEgB,MAAM;MACrB,IAAI,CAACC,QAAQ,CAAC;QACZC,qBAAqB,EAAE,KAAK;QAC5BS,iBAAiB,EAAE;MACrB,CAAC,CAAC;IACJ,CAAC;IAxCC,IAAI,CAACE,KAAK,GAAG;MACXF,iBAAiB,EAAE,EAAE;MACrBG,YAAY,EAAE,EAAE;MAChBZ,qBAAqB,EAAE,KAAK;MAC5Ba,eAAe,EAAE,IAAI;MACrBC,aAAa,EAAE;IACjB,CAAC;EACH;EAEAC,iBAAiBA,CAAA,EAAG;IAClB,IAAI,IAAI,CAAClB,KAAK,CAACmB,cAAc,IAAI,IAAI,CAACnB,KAAK,CAACmB,cAAc,CAACX,OAAO,EAAE;MAClE,IAAI,CAACN,QAAQ,CAAC;QACZc,eAAe,EAAE,IAAI,CAAChB,KAAK,CAACmB,cAAc,CAACX,OAAO,CAACY,SAAS,CAAC;MAC/D,CAAC,CAAC;IACJ;EACF;EA2BAC,UAAUA,CAAA,EAAG;IACX,IAAI,CAACC,IAAI,CAACC,UAAU,CAACC,KAAK,CAAC,CAAC;EAC9B;EAEAC,cAAcA,CAAA,EAAG;IACf,IAAI,CAACvB,QAAQ,CAAC;MACZc,eAAe,EAAE;IACnB,CAAC,CAAC;EACJ;EAEAU,gBAAgBA,CAAA,EAAG;IACjB,IAAI,CAACxB,QAAQ,CAAC;MACZc,eAAe,EAAE;IACnB,CAAC,CAAC;EACJ;EAEAW,oBAAoBA,CAAA,EAAG;IACrB,OAAO,IAAI,CAACb,KAAK,CAACX,qBAAqB,IAAI,CAACjB,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACF,iBAAiB,CAAC;EACrF;EAEAiB,UAAUA,CAAA,EAAG;IACXzB,UAAU,CAAC,MAAM;MACf,IAAI,CAAC,IAAI,CAACJ,KAAK,CAACK,QAAQ,EAAE;QAAA,IAAAyB,sBAAA;QACxB,CAAAA,sBAAA,OAAI,CAAC9B,KAAK,CAACO,UAAU,cAAAuB,sBAAA,gBAAAA,sBAAA,GAArBA,sBAAA,CAAuBtB,OAAO,cAAAsB,sBAAA,eAA9BA,sBAAA,CAAgCrB,WAAW,CAAC;UAAEC,QAAQ,EAAE;QAAK,CAAC,CAAC;MACjE;IACF,CAAC,EAAE,GAAG,CAAC;IACP,MAAMqB,IAAI,GAAG,IAAI,CAACjB,KAAK,CAACC,YAAY;IACpC,MAAMiB,KAAK,GAAG,IAAI,CAAClB,KAAK,CAACF,iBAAiB;IAC1C,IAAI,CAACV,QAAQ,CAAC;MACZe,aAAa,EAAE,IAAI;MACnBF,YAAY,EAAE,EAAE;MAChBH,iBAAiB,EAAE;IACrB,CAAC,CAAC;IACFlC,QAAQ,CAACuD,OAAO,CAAC,CAAC;IAClB,IAAI,IAAI,CAACjC,KAAK,CAACmB,cAAc,EAAE;MAAA,IAAAe,qBAAA;MAC7B,CAAAA,qBAAA,OAAI,CAAClC,KAAK,CAACmB,cAAc,cAAAe,qBAAA,gBAAAA,qBAAA,GAAzBA,qBAAA,CAA2B1B,OAAO,cAAA0B,qBAAA,eAAlCA,qBAAA,CAAoCC,oBAAoB,CAAC,CAAC;IAC5D;IACAzC,eAAe,CACZmC,UAAU,CAAC,IAAI,CAAC7B,KAAK,CAACoC,QAAQ,EAAE,IAAI,CAACpC,KAAK,CAACqC,UAAU,EAAE,IAAI,CAACrC,KAAK,CAACsC,UAAU,EAAE,IAAI,CAACtC,KAAK,CAACuC,IAAI,EAAER,IAAI,EAAEC,KAAK,EAAE,IAAI,CAAChC,KAAK,CAACwC,QAAQ,CAAC,CAChIC,IAAI,CAACC,GAAG,IAAI;MACX,IAAI,IAAI,CAAC1C,KAAK,CAACmB,cAAc,EAAE;QAAA,IAAAwB,sBAAA;QAC7B,CAAAA,sBAAA,OAAI,CAAC3C,KAAK,CAACmB,cAAc,cAAAwB,sBAAA,gBAAAA,sBAAA,GAAzBA,sBAAA,CAA2BnC,OAAO,cAAAmC,sBAAA,eAAlCA,sBAAA,CAAoCC,YAAY,CAACF,GAAG,CAACG,IAAI,CAAC;MAC5D;MACA,IAAI,CAAC3C,QAAQ,CAAC;QACZe,aAAa,EAAE;MACjB,CAAC,CAAC;MACFb,UAAU,CAAC,MAAM;QACf,IAAI,CAAC,IAAI,CAACJ,KAAK,CAACK,QAAQ,EAAE;UAAA,IAAAyC,sBAAA;UACxB,CAAAA,sBAAA,OAAI,CAAC9C,KAAK,CAACO,UAAU,cAAAuC,sBAAA,gBAAAA,sBAAA,GAArBA,sBAAA,CAAuBtC,OAAO,cAAAsC,sBAAA,eAA9BA,sBAAA,CAAgCrC,WAAW,CAAC;YAAEC,QAAQ,EAAE;UAAK,CAAC,CAAC;QACjE;MACF,CAAC,EAAE,GAAG,CAAC;IACT,CAAC,CAAC,CACDqC,KAAK,CAACC,GAAG,IAAI;MACZC,OAAO,CAACC,GAAG,CAAC/D,WAAW,CAAC6D,GAAG,CAAC,CAAC;IAC/B,CAAC,CAAC;EACN;EAEAG,WAAWA,CAAA,EAAG;IACZ,IAAI,CAACjD,QAAQ,CAAC;MACZU,iBAAiB,EAAE;IACrB,CAAC,CAAC;EACJ;EAEAwC,cAAcA,CAAA,EAAG;IACf,IAAI,IAAI,CAACtC,KAAK,CAACX,qBAAqB,IAAI,CAACjB,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACF,iBAAiB,CAAC,EAAE;MAChF;IACF;IACA,IAAI,CAACyC,oBAAoB,CAACD,cAAc,CAAC,CAAC;EAC5C;EAEAE,qBAAqBA,CAAA,EAAG;IACtB,IAAIpE,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACF,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAACE,KAAK,CAACX,qBAAqB,EAAE;MAChF,OAAO,IAAI;IACb;IACA,IAAI,IAAI,CAACW,KAAK,CAACX,qBAAqB,EAAE;MACpC,oBACE5B,KAAA,CAAAgF,aAAA,CAAC3E,IAAI;QAAC4E,KAAK,EAAE,CAACC,MAAM,CAACC,cAAc,EAAED,MAAM,CAACE,oBAAoB,EAAE;UAAEC,WAAW,EAAE,CAAC;UAAEC,WAAW,EAAEtE;QAAQ,CAAC;MAAE,gBAC1GhB,KAAA,CAAAgF,aAAA,CAAC/D,OAAO,MAAE,CACN,CAAC;IAEX;IACA,oBACEjB,KAAA,CAAAgF,aAAA,CAAC1E,eAAe;MACd2E,KAAK,EAAEC,MAAM,CAACC,cAAe;MAC7BI,UAAU,EAAEL,MAAM,CAACE,oBAAqB;MACxCI,MAAM,EAAE;QAAEpD,GAAG,EAAE,IAAI,CAACG,KAAK,CAACF;MAAkB;IAAE,gBAE9CrC,KAAA,CAAAgF,aAAA,CAACzE,gBAAgB;MACf0E,KAAK,EAAEC,MAAM,CAACO,mBAAoB;MAClCC,OAAO,EAAE,IAAI,CAACd,WAAW,CAACe,IAAI,CAAC,IAAI,CAAE;MACrCC,OAAO,EAAE;QAAEC,GAAG,EAAE,CAAC;QAAEC,KAAK,EAAE,CAAC;QAAEC,MAAM,EAAE,CAAC;QAAEC,IAAI,EAAE;MAAE;IAAE,gBAElDhG,KAAA,CAAAgF,aAAA,CAACvE,IAAI;MACHwF,IAAI,EAAC,QAAQ;MACbC,IAAI,EAAC,cAAc;MACnBC,SAAS,EAAEjB,MAAM,CAACkB,uBAAwB;MAC1CnB,KAAK,EAAEC,MAAM,CAACmB;IAAiC,CAChD,CACe,CACH,CAAC;EAEtB;EAEAC,mBAAmBA,CAAA,EAAG;IACpB,oBACEtG,KAAA,CAAAgF,aAAA,CAAC9D,aAAa;MACZqF,GAAG,EAAEA,GAAG,IAAK,IAAI,CAACzB,oBAAoB,GAAGyB,GAAK;MAC9CC,eAAe,EAAE,IAAI,CAACA,eAAgB;MACtCC,eAAe,EAAE,IAAI,CAACA,eAAgB;MACtCC,cAAc,EAAE,IAAI,CAACA,cAAe;MACpCC,iBAAiB,EAAE,IAAI,CAACF,eAAgB;MACxCG,OAAO,EAAE,GAAI;MACbC,aAAa,EAAE,KAAM;MACrBC,QAAQ,EAAC,cAAc;MACvBC,UAAU,EAAC,WAAW;MACtBC,MAAM,EAAE,IAAI,CAACvF,KAAK,CAACwF,IAAI,CAACC,GAAI;MAC5BC,WAAW;IAAA,CACZ,CAAC;EAEN;EAEAC,MAAMA,CAAA,EAAG;IACP,IAAIzG,CAAC,CAAC0G,QAAQ,CAAC,IAAI,CAAC5F,KAAK,CAACwF,IAAI,CAACK,MAAM,EAAE,YAAY,CAAC,EAAE;MACpD,OAAO,IAAI;IACb;IACA,IAAI,IAAI,CAAC/E,KAAK,CAACE,eAAe,EAAE;MAC9B,OAAO,IAAI;IACb;IACA,oBACEzC,KAAA,CAAAgF,aAAA,CAAC3E,IAAI;MAAC4E,KAAK,EAAE,CAACC,MAAM,CAACqC,cAAc,EAAE1G,cAAc,CAAC,CAAC,EAAE,IAAI,CAACY,KAAK,CAACwD,KAAK;IAAE,gBACvEjF,KAAA,CAAAgF,aAAA,CAAC3E,IAAI;MACH4E,KAAK,EAAE,CACLC,MAAM,CAACsC,KAAK,EACZ;QACEC,WAAW,EAAE9G,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACC,YAAY,CAAC,IAAI7B,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACF,iBAAiB,CAAC,GAAG,EAAE,GAAG;MACpG,CAAC;IACD,gBAEFrC,KAAA,CAAAgF,aAAA,CAAC5E,SAAS;MACRmG,GAAG,EAAC,YAAY;MAChBmB,WAAW,EAAC,yBAAyB;MACrCC,KAAK,EAAE,IAAI,CAACpF,KAAK,CAACC,YAAa;MAC/BoF,OAAO,EAAEA,CAAA,KAAM;QACb,IAAI,CAAC,IAAI,CAACnG,KAAK,CAACK,QAAQ,EAAE;UAAA,IAAA+F,sBAAA;UACxB,CAAAA,sBAAA,OAAI,CAACpG,KAAK,CAACO,UAAU,cAAA6F,sBAAA,gBAAAA,sBAAA,GAArBA,sBAAA,CAAuB5F,OAAO,cAAA4F,sBAAA,eAA9BA,sBAAA,CAAgC3F,WAAW,CAAC;YAAEC,QAAQ,EAAE;UAAK,CAAC,CAAC;QACjE;MACF,CAAE;MACF2F,YAAY,EAAEH,KAAK,IAAI;QACrB,IAAI,CAAC,IAAI,CAAClG,KAAK,CAACK,QAAQ,EAAE;UAAA,IAAAiG,sBAAA;UACxB,CAAAA,sBAAA,OAAI,CAACtG,KAAK,CAACO,UAAU,cAAA+F,sBAAA,gBAAAA,sBAAA,GAArBA,sBAAA,CAAuB9F,OAAO,cAAA8F,sBAAA,eAA9BA,sBAAA,CAAgC7F,WAAW,CAAC;YAAEC,QAAQ,EAAE;UAAM,CAAC,CAAC;QAClE;QACA,IAAI,CAACR,QAAQ,CAAC;UACZa,YAAY,EAAEmF;QAChB,CAAC,CAAC;MACJ,CAAE;MACF1C,KAAK,EAAEC,MAAM,CAAC8C,SAAU;MACxBC,cAAc,EAAC,WAAW;MAC1BC,SAAS;MACTC,WAAW;MACXC,QAAQ;IAAA,CACT,CACG,CAAC,EACN,CAAC,CAACzH,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACC,YAAY,CAAC,IAAI,CAAC7B,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACF,iBAAiB,CAAC,KAAK,CAAC,IAAI,CAACE,KAAK,CAACG,aAAa,iBAC7G1C,KAAA,CAAAgF,aAAA,CAACzE,gBAAgB;MACfmF,OAAO,EAAE,IAAI,CAACpC,UAAU,CAACqC,IAAI,CAAC,IAAI,CAAE;MACpCV,KAAK,EAAE,CACLC,MAAM,CAACmD,aAAa,EACpB;QACEvC,KAAK,EAAE,CAAC;QACRwC,OAAO,EAAE,CAAC;QACVC,KAAK,EAAE,EAAE;QACTjH,MAAM,EAAE;MACV,CAAC;IACD,gBAEFtB,KAAA,CAAAgF,aAAA,CAACvE,IAAI;MAACwF,IAAI,EAAC,aAAa;MAACC,IAAI,EAAC,cAAc;MAACC,SAAS,EAAE,CAACjB,MAAM,CAACsD,IAAI,EAAE;QAAED,KAAK,EAAE;MAAG,CAAC;IAAE,CAAE,CACvE,CACnB,eACDvI,KAAA,CAAAgF,aAAA,CAACzE,gBAAgB;MACfmF,OAAO,EAAE,IAAI,CAACb,cAAc,CAACc,IAAI,CAAC,IAAI,CAAE;MACxCV,KAAK,EAAE,CACLC,MAAM,CAACmD,aAAa,EACpB;QACEvC,KAAK,EAAEnF,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACC,YAAY,CAAC,IAAI7B,CAAC,CAAC0C,OAAO,CAAC,IAAI,CAACd,KAAK,CAACF,iBAAiB,CAAC,GAAG,CAAC,GAAG,EAAE;QAC7FiG,OAAO,EAAE,CAAC;QACVC,KAAK,EAAE,EAAE;QACTjH,MAAM,EAAE;MACV,CAAC;IACD,gBAEFtB,KAAA,CAAAgF,aAAA,CAACvE,IAAI;MAACwF,IAAI,EAAC,WAAW;MAACC,IAAI,EAAC,cAAc;MAACC,SAAS,EAAE,CAACjB,MAAM,CAACsD,IAAI,EAAE;QAAED,KAAK,EAAE;MAAG,CAAC;IAAE,CAAE,CACrE,CAAC,EAClB,IAAI,CAACxD,qBAAqB,CAAC,CAAC,EAC5B,IAAI,CAACuB,mBAAmB,CAAC,CACtB,CAAC;EAEX;AACF;AAEA,MAAMpB,MAAM,GAAG;EACbC,cAAc,EAAE;IACdsD,SAAS,EAAE,CAAC;IACZF,KAAK,EAAE,EAAE;IACTjH,MAAM,EAAE;EACV,CAAC;EACD8D,oBAAoB,EAAE;IACpBsD,YAAY,EAAE;EAChB,CAAC;EACDjD,mBAAmB,EAAE;IACnB8C,KAAK,EAAE,EAAE;IACTjH,MAAM,EAAE,EAAE;IACVoH,YAAY,EAAE,CAAC;IACfC,QAAQ,EAAE,UAAU;IACpB9C,GAAG,EAAE,CAAC,CAAC;IACPC,KAAK,EAAE,CAAC,CAAC;IACT8C,eAAe,EAAE9H;EACnB,CAAC;EACDuF,gCAAgC,EAAE;IAChCkC,KAAK,EAAE,EAAE;IACTjH,MAAM,EAAE,EAAE;IACVuH,UAAU,EAAE,QAAQ;IACpBC,cAAc,EAAE;EAClB,CAAC;EACD1C,uBAAuB,EAAE;IACvB2C,QAAQ,EAAE,EAAE;IACZC,KAAK,EAAE,MAAM;IACbC,SAAS,EAAE;EACb,CAAC;EACD1B,cAAc,EAAE;IACdqB,eAAe,EAAE,MAAM;IACvBM,eAAe,EAAE,CAAC;IAClBC,iBAAiB,EAAE,CAAC;IACpBC,aAAa,EAAE,CAAC,GAAG1I,cAAc,CAAC,CAAC;IACnC2I,QAAQ,EAAE;EACZ,CAAC;EACDrB,SAAS,EAAE;IACTgB,KAAK,EAAEjI,YAAY;IACnBgI,QAAQ,EAAE,EAAE;IACZO,UAAU,EAAE;EACd,CAAC;EACD9B,KAAK,EAAE;IACLuB,QAAQ,EAAE,EAAE;IACZC,KAAK,EAAEjI,YAAY;IACnBuI,UAAU,EAAE,WAAW;IACvBC,MAAM,EAAE,CAAC;IACTX,eAAe,EAAE5H,OAAO;IACxB0H,YAAY,EAAE,CAAC;IACfJ,OAAO,EAAE,CAAC;IACVkB,SAAS,EAAEpI,aAAa,GAAG;EAC7B,CAAC;EACDiH,aAAa,EAAE;IACbM,QAAQ,EAAE,UAAU;IACpB9C,GAAG,EAAE,CAAC;IACNC,KAAK,EAAE,CAAC;IACRxE,MAAM,EAAE,EAAE;IACViH,KAAK,EAAE,EAAE;IACTM,UAAU,EAAE,QAAQ;IACpBC,cAAc,EAAE,QAAQ;IACxBF,eAAe,EAAE;EACnB,CAAC;EACDJ,IAAI,EAAE;IACJQ,KAAK,EAAElI,aAAa;IACpBiI,QAAQ,EAAE,EAAE;IACZE,SAAS,EAAE;EACb;AACF,CAAC;AAED,MAAMQ,eAAe,GAAGlH,KAAK,IAAI;EAC/B,MAAM;IAAE0E;EAAK,CAAC,GAAG1E,KAAK;EACtB,OAAO;IAAE0E;EAAK,CAAC;AACjB,CAAC;AAED,MAAMyC,YAAY,GAAGxJ,OAAO,CAACuJ,eAAe,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE;EAAEE,UAAU,EAAE;AAAK,CAAC,CAAC,CAACpI,YAAY,CAAC;AAC3F,SAASmI,YAAY,IAAInI,YAAY"}
|