aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionCarousel3DView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-02-24 10:45:37 -0500
committerbobzel <zzzman@gmail.com>2021-02-24 10:45:37 -0500
commit477fa6b85e24046edbebc44b49aba8c286558cd0 (patch)
treefe159492e26fe87f5bb18cb0a2d8ca8b2b249a24 /src/client/views/collections/CollectionCarousel3DView.tsx
parent667e0a8cfc12a86e953f0382a36254ff9afbdcf3 (diff)
fixed carouself view which wasn't displaying vertically oriented documents. cleaned up collectionTime script to not capture variables (causing doc's to be create)
Diffstat (limited to 'src/client/views/collections/CollectionCarousel3DView.tsx')
-rw-r--r--src/client/views/collections/CollectionCarousel3DView.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/views/collections/CollectionCarousel3DView.tsx b/src/client/views/collections/CollectionCarousel3DView.tsx
index 9b1e3b80d..c5a05da00 100644
--- a/src/client/views/collections/CollectionCarousel3DView.tsx
+++ b/src/client/views/collections/CollectionCarousel3DView.tsx
@@ -40,7 +40,7 @@ export class CollectionCarousel3DView extends CollectionSubView(Carousel3DDocume
@computed get content() {
const currentIndex = NumCast(this.layoutDoc._itemIndex);
const displayDoc = (childPair: { layout: Doc, data: Doc }) => {
- const script = ScriptField.MakeScript("child._showCaption = 'caption'", { child: Doc.name }, { child: childPair.layout });
+ const script = ScriptField.MakeScript("this._showCaption = 'caption'", { this: Doc.name });
const onChildClick = script && (() => script);
return <DocumentView {...OmitKeys(this.props, ["NativeWidth", "NativeHeight"]).omit}
onDoubleClick={this.onChildDoubleClick}
@@ -63,8 +63,8 @@ export class CollectionCarousel3DView extends CollectionSubView(Carousel3DDocume
<div key={childPair.layout[Id]}
className={`collectionCarousel3DView-item${index === currentIndex ? "-active" : ""} ${index}`}
style={index === currentIndex ?
- { opacity: '1', transform: 'scale(1.3)' } :
- { opacity: '0.5', transform: 'scale(0.6)', userSelect: 'none' }}>
+ { opacity: '1', transform: 'scale(1.3)', width: this.panelWidth() } :
+ { opacity: '0.5', transform: 'scale(0.6)', userSelect: 'none', width: this.panelWidth() }}>
{displayDoc(childPair)}
</div>);
}));
@@ -166,10 +166,10 @@ export class CollectionCarousel3DView extends CollectionSubView(Carousel3DDocume
render() {
const index = NumCast(this.layoutDoc._itemIndex);
- const translateX = 33 * (1 - index);
+ const translateX = this.panelWidth() * (1 - index);
return <div className="collectionCarousel3DView-outer" onClick={this.onClick} onPointerDown={this.onPointerDown} ref={this.createDashEventsTarget}>
- <div className="carousel-wrapper" style={{ transform: `translateX(calc(${translateX}%` }}>
+ <div className="carousel-wrapper" style={{ transform: `translateX(${translateX}px)` }}>
{this.content}
</div>
{this.props.Document._chromeStatus !== "replaced" ? this.buttons : (null)}