This repository was archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmy-template.tsx
69 lines (58 loc) · 1.48 KB
/
my-template.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import {Component, Element, Event, EventEmitter, Method, h, Host} from '@stencil/core';
import {
DeckdeckgoSlide,
hideLazyLoadImages,
afterSwipe,
beforeSwipe,
lazyLoadContent,
hideAllRevealElements,
showAllRevealElements,
} from '@deckdeckgo/slide-utils';
@Component({
tag: 'my-template',
styleUrl: 'my-template.scss',
shadow: true,
})
export class MyTemplate implements DeckdeckgoSlide {
@Element() private el: HTMLElement;
@Event() private slideDidLoad: EventEmitter<void>;
async componentDidLoad() {
await hideLazyLoadImages(this.el);
this.slideDidLoad.emit();
}
@Method()
beforeSwipe(enter: boolean, reveal: boolean): Promise<boolean> {
return beforeSwipe(this.el, enter, reveal);
}
@Method()
afterSwipe(): Promise<void> {
return afterSwipe();
}
@Method()
lazyLoadContent(): Promise<void> {
return lazyLoadContent(this.el);
}
@Method()
revealContent(): Promise<void> {
return showAllRevealElements(this.el);
}
@Method()
hideContent(): Promise<void> {
return hideAllRevealElements(this.el);
}
render() {
return (
<Host class={{'deckgo-slide-container': true}}>
<div class="deckgo-slide">
<slot name="title"></slot>
<slot name="content"></slot>
<slot name="notes"></slot>
<slot name="actions"></slot>
<slot name="background"></slot>
<slot name="header"></slot>
<slot name="footer"></slot>
</div>
</Host>
);
}
}