@rpg-engine/long-bow 0.6.95 → 0.6.97
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/long-bow.cjs.development.js +42 -49
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +42 -49
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ChatRevamp/ChatRevamp.tsx +68 -95
|
@@ -26528,36 +26528,35 @@ var ChatRevamp = function ChatRevamp(_ref) {
|
|
|
26528
26528
|
setShowRecentChats = _useState[1];
|
|
26529
26529
|
var isPrivate = activeTab === 'private';
|
|
26530
26530
|
var isTrade = activeTab === 'trade';
|
|
26531
|
+
var toggleRecentChats = function toggleRecentChats() {
|
|
26532
|
+
setShowRecentChats(function (prev) {
|
|
26533
|
+
return !prev;
|
|
26534
|
+
});
|
|
26535
|
+
};
|
|
26531
26536
|
var handlePreviousChatCharacterClick = function handlePreviousChatCharacterClick(character) {
|
|
26532
26537
|
if (!onPreviousChatCharacterClick) return;
|
|
26533
26538
|
onPreviousChatCharacterClick(character);
|
|
26534
26539
|
hideSearchCharacterUI();
|
|
26535
26540
|
};
|
|
26536
|
-
return React__default.createElement(
|
|
26541
|
+
return React__default.createElement(React__default.Fragment, null, React__default.createElement(TabContainer, null, tabs.map(function (tab, index) {
|
|
26537
26542
|
return React__default.createElement(Tab, {
|
|
26538
26543
|
key: tab.label + "_" + index,
|
|
26539
26544
|
active: tab.id === activeTab,
|
|
26540
|
-
|
|
26545
|
+
onPointerDown: function onPointerDown() {
|
|
26541
26546
|
return onChangeTab(tab.id);
|
|
26542
26547
|
}
|
|
26543
26548
|
}, tab.label);
|
|
26544
26549
|
})), React__default.createElement(PrivateChatContainer, {
|
|
26545
26550
|
width: (styles == null ? void 0 : styles.width) || '80%',
|
|
26546
26551
|
height: (styles == null ? void 0 : styles.height) || 'auto'
|
|
26547
|
-
},
|
|
26552
|
+
}, React__default.createElement(RecentChatTabContainer, {
|
|
26548
26553
|
isPrivate: isPrivate,
|
|
26549
26554
|
isOpen: showRecentChats
|
|
26550
|
-
}, React__default.createElement(RecentChatTopBar, {
|
|
26551
|
-
|
|
26552
|
-
}, React__default.createElement(BurgerIconContainer, {
|
|
26553
|
-
onClick: function onClick() {
|
|
26554
|
-
return setShowRecentChats(function (t) {
|
|
26555
|
-
return !t;
|
|
26556
|
-
});
|
|
26557
|
-
},
|
|
26555
|
+
}, React__default.createElement(RecentChatTopBar, null, React__default.createElement(BurgerIconContainer, {
|
|
26556
|
+
onPointerDown: toggleRecentChats,
|
|
26558
26557
|
hasUnseenMessages: (unseenMessageCharacterIds == null ? void 0 : unseenMessageCharacterIds.length) > 0 || false
|
|
26559
26558
|
}, React__default.createElement(BurgerLineIcon, null), React__default.createElement(BurgerLineIcon, null), React__default.createElement(BurgerLineIcon, null)), showRecentChats && React__default.createElement(SearchButton$1, {
|
|
26560
|
-
|
|
26559
|
+
onPointerDown: function onPointerDown() {
|
|
26561
26560
|
return showSearchCharacterUI();
|
|
26562
26561
|
}
|
|
26563
26562
|
}, React__default.createElement(rx.RxMagnifyingGlass, {
|
|
@@ -26570,16 +26569,16 @@ var ChatRevamp = function ChatRevamp(_ref) {
|
|
|
26570
26569
|
key: character._id
|
|
26571
26570
|
}, React__default.createElement(ListElement$1, {
|
|
26572
26571
|
active: character._id === recentSelectedChatCharacterId,
|
|
26573
|
-
|
|
26572
|
+
onPointerDown: function onPointerDown() {
|
|
26574
26573
|
return handlePreviousChatCharacterClick(character);
|
|
26575
26574
|
}
|
|
26576
26575
|
}, React__default.createElement(StatusDot, {
|
|
26577
26576
|
isUnseen: (unseenMessageCharacterIds == null ? void 0 : unseenMessageCharacterIds.includes(character._id)) || false
|
|
26578
|
-
}), React__default.createElement(
|
|
26579
|
-
|
|
26580
|
-
|
|
26581
|
-
}, character.name))
|
|
26582
|
-
|
|
26577
|
+
}), React__default.createElement(Ellipsis, {
|
|
26578
|
+
maxWidth: "140px",
|
|
26579
|
+
maxLines: 1
|
|
26580
|
+
}, character.name)), React__default.createElement(CloseButton$1, {
|
|
26581
|
+
onPointerDown: function onPointerDown() {
|
|
26583
26582
|
return onRemoveRecentChatCharacter == null ? void 0 : onRemoveRecentChatCharacter(character);
|
|
26584
26583
|
}
|
|
26585
26584
|
}, React__default.createElement(rx.RxCross2, {
|
|
@@ -26603,30 +26602,24 @@ var ChatRevamp = function ChatRevamp(_ref) {
|
|
|
26603
26602
|
onBlur: onBlur
|
|
26604
26603
|
})));
|
|
26605
26604
|
};
|
|
26606
|
-
var ChatContainer$1 = /*#__PURE__*/styled__default.div.withConfig({
|
|
26607
|
-
displayName: "ChatRevamp__ChatContainer",
|
|
26608
|
-
componentId: "sc-1sdiknw-0"
|
|
26609
|
-
})(["display:flex;flex-direction:column;gap:10px;max-width:1200px;"]);
|
|
26610
26605
|
var TabContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
26611
26606
|
displayName: "ChatRevamp__TabContainer",
|
|
26612
|
-
componentId: "sc-1sdiknw-
|
|
26607
|
+
componentId: "sc-1sdiknw-0"
|
|
26613
26608
|
})(["width:100%;display:flex;gap:10px;"]);
|
|
26614
26609
|
var Tab = /*#__PURE__*/styled__default.button.withConfig({
|
|
26615
26610
|
displayName: "ChatRevamp__Tab",
|
|
26616
|
-
componentId: "sc-1sdiknw-
|
|
26617
|
-
})(["width:120px;color:white;font-size:0.8rem;all:unset;padding:0.6rem;font-size:0.8rem;border-radius:5px 5px 0 0;border-width:0.25rem 0.25rem 0 0.25rem;border-style:solid;border-color:", ";background-color:", ";color:", ";
|
|
26611
|
+
componentId: "sc-1sdiknw-1"
|
|
26612
|
+
})(["width:120px;color:white;font-size:0.8rem;all:unset;padding:0.6rem;font-size:0.8rem;border-radius:5px 5px 0 0;border-width:0.25rem 0.25rem 0 0.25rem;border-style:solid;border-color:", ";background-color:", ";color:", ";"], function (props) {
|
|
26618
26613
|
return props.active ? '#c65102' : uiColors.gray;
|
|
26619
26614
|
}, function (props) {
|
|
26620
26615
|
return props.active ? uiColors.orange : 'transparent';
|
|
26621
26616
|
}, function (props) {
|
|
26622
26617
|
return props.active ? 'white' : uiColors.raisinBlack;
|
|
26623
|
-
}, function (props) {
|
|
26624
|
-
return props.active ? uiColors.orange : uiColors.lightGray;
|
|
26625
26618
|
});
|
|
26626
26619
|
var PrivateChatContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
26627
26620
|
displayName: "ChatRevamp__PrivateChatContainer",
|
|
26628
|
-
componentId: "sc-1sdiknw-
|
|
26629
|
-
})(["width:", ";min-height:", " !important;padding:10px;background-color:rgba(0,0,0,0.2);height:auto;display:flex;gap:10px;
|
|
26621
|
+
componentId: "sc-1sdiknw-2"
|
|
26622
|
+
})(["width:", ";min-height:", " !important;padding:10px;background-color:rgba(0,0,0,0.2);height:auto;display:flex;gap:10px;"], function (_ref2) {
|
|
26630
26623
|
var width = _ref2.width;
|
|
26631
26624
|
return width;
|
|
26632
26625
|
}, function (_ref3) {
|
|
@@ -26635,62 +26628,62 @@ var PrivateChatContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
|
26635
26628
|
});
|
|
26636
26629
|
var RecentChatTabContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
26637
26630
|
displayName: "ChatRevamp__RecentChatTabContainer",
|
|
26638
|
-
componentId: "sc-1sdiknw-
|
|
26639
|
-
})(["display:", ";flex-direction:column;border-right:1px solid ", ";outline:none;width:", "
|
|
26631
|
+
componentId: "sc-1sdiknw-3"
|
|
26632
|
+
})(["display:", ";flex-direction:column;border-right:1px solid ", ";outline:none;width:", ";max-width:200px;min-width:", ";transition:all 0.3s ease-in-out;overflow:hidden;@media (max-width:768px){width:", ";min-width:", ";}"], function (props) {
|
|
26640
26633
|
return props.isPrivate ? 'flex' : 'none';
|
|
26641
26634
|
}, uiColors.gray, function (props) {
|
|
26642
|
-
return props.isOpen ? '
|
|
26635
|
+
return props.isOpen ? '25%' : '30px';
|
|
26643
26636
|
}, function (props) {
|
|
26644
|
-
return props.isOpen ? '
|
|
26637
|
+
return props.isOpen ? '180px' : '30px';
|
|
26638
|
+
}, function (props) {
|
|
26639
|
+
return props.isOpen ? '50%' : '30px';
|
|
26640
|
+
}, function (props) {
|
|
26641
|
+
return props.isOpen ? '150px' : '30px';
|
|
26645
26642
|
});
|
|
26646
26643
|
var RecentChatTopBar = /*#__PURE__*/styled__default.div.withConfig({
|
|
26647
26644
|
displayName: "ChatRevamp__RecentChatTopBar",
|
|
26648
|
-
componentId: "sc-1sdiknw-
|
|
26645
|
+
componentId: "sc-1sdiknw-4"
|
|
26649
26646
|
})(["display:flex;align-items:center;justify-content:space-between;height:30px;"]);
|
|
26650
26647
|
var SearchButton$1 = /*#__PURE__*/styled__default.button.withConfig({
|
|
26651
26648
|
displayName: "ChatRevamp__SearchButton",
|
|
26652
|
-
componentId: "sc-1sdiknw-
|
|
26649
|
+
componentId: "sc-1sdiknw-5"
|
|
26653
26650
|
})(["border:none;background-color:transparent;display:flex;flex-direction:column;align-items:flex-end;gap:2px;padding:4px;position:relative;"]);
|
|
26654
26651
|
var BurgerIconContainer = /*#__PURE__*/styled__default.button.withConfig({
|
|
26655
26652
|
displayName: "ChatRevamp__BurgerIconContainer",
|
|
26656
|
-
componentId: "sc-1sdiknw-
|
|
26653
|
+
componentId: "sc-1sdiknw-6"
|
|
26657
26654
|
})(["border:none;background-color:transparent;display:flex;flex-direction:column;align-items:flex-end;padding:4px;gap:2px;position:relative;&:after{content:'';width:6px;height:6px;position:absolute;top:0;right:2px;border-radius:50%;background-color:", ";display:", ";}"], uiColors.lightGreen, function (props) {
|
|
26658
26655
|
return props.hasUnseenMessages ? 'block' : 'none';
|
|
26659
26656
|
});
|
|
26660
26657
|
var BurgerLineIcon = /*#__PURE__*/styled__default.span.withConfig({
|
|
26661
26658
|
displayName: "ChatRevamp__BurgerLineIcon",
|
|
26662
|
-
componentId: "sc-1sdiknw-
|
|
26659
|
+
componentId: "sc-1sdiknw-7"
|
|
26663
26660
|
})(["width:1rem;height:2px;background-color:#ffffff;"]);
|
|
26664
26661
|
var RecentChatLogContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
26665
26662
|
displayName: "ChatRevamp__RecentChatLogContainer",
|
|
26666
|
-
componentId: "sc-1sdiknw-
|
|
26663
|
+
componentId: "sc-1sdiknw-8"
|
|
26667
26664
|
})(["border:none;list-style:none;display:flex;opacity:", ";flex-direction:column;gap:0.5rem;transition:opacity 0.3s ease-in-out;padding:0;margin:0;flex:1;"], function (props) {
|
|
26668
26665
|
return props.isOpen ? 1 : 0;
|
|
26669
26666
|
});
|
|
26670
26667
|
var ListElementContainer = /*#__PURE__*/styled__default.div.withConfig({
|
|
26671
26668
|
displayName: "ChatRevamp__ListElementContainer",
|
|
26672
|
-
componentId: "sc-1sdiknw-
|
|
26673
|
-
})(["display:flex;justify-content:space-between;align-items:center;
|
|
26669
|
+
componentId: "sc-1sdiknw-9"
|
|
26670
|
+
})(["display:flex;justify-content:space-between;align-items:center;"]);
|
|
26674
26671
|
var ListElement$1 = /*#__PURE__*/styled__default.button.withConfig({
|
|
26675
26672
|
displayName: "ChatRevamp__ListElement",
|
|
26676
|
-
componentId: "sc-1sdiknw-
|
|
26677
|
-
})(["margin:0.5rem 0 !important;font-size:", " !important;padding:
|
|
26673
|
+
componentId: "sc-1sdiknw-10"
|
|
26674
|
+
})(["margin:0.5rem 0 !important;font-size:", " !important;padding:2px;all:unset;color:", ";width:100%;position:relative;display:flex;align-items:center;gap:4px;&:hover{color:#ff0;}max-width:calc(100% - 24px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;"], uiFonts.size.small, function (props) {
|
|
26678
26675
|
return props.active ? uiColors.yellow : uiColors.white;
|
|
26679
26676
|
});
|
|
26680
|
-
var EllipsisWrapper = /*#__PURE__*/styled__default.div.withConfig({
|
|
26681
|
-
displayName: "ChatRevamp__EllipsisWrapper",
|
|
26682
|
-
componentId: "sc-1sdiknw-12"
|
|
26683
|
-
})(["flex:1;min-width:0;"]);
|
|
26684
26677
|
var StatusDot = /*#__PURE__*/styled__default.span.withConfig({
|
|
26685
26678
|
displayName: "ChatRevamp__StatusDot",
|
|
26686
|
-
componentId: "sc-1sdiknw-
|
|
26679
|
+
componentId: "sc-1sdiknw-11"
|
|
26687
26680
|
})(["width:6px;height:6px;border-radius:50%;background-color:", ";display:inline-block;margin-right:6px;"], function (props) {
|
|
26688
26681
|
return props.isUnseen ? uiColors.lightGreen : uiColors.gray;
|
|
26689
26682
|
});
|
|
26690
26683
|
var CloseButton$1 = /*#__PURE__*/styled__default.button.withConfig({
|
|
26691
26684
|
displayName: "ChatRevamp__CloseButton",
|
|
26692
|
-
componentId: "sc-1sdiknw-
|
|
26693
|
-
})(["all:unset;font-size:", ";margin:0 0.5rem;transition:all 0.2s ease-in-out;background-color:", ";color:", "
|
|
26685
|
+
componentId: "sc-1sdiknw-12"
|
|
26686
|
+
})(["all:unset;font-size:", ";margin:0 0.5rem;transition:all 0.2s ease-in-out;background-color:", ";color:", ";&:hover{background-color:", ";color:", ";}"], uiFonts.size.xxsmall, uiColors.red, uiColors.white, uiColors.white, uiColors.red);
|
|
26694
26687
|
|
|
26695
26688
|
var CheckButton = function CheckButton(_ref) {
|
|
26696
26689
|
var items = _ref.items,
|