Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding custom event handler #104

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions examples/basic/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ const fireworks = new Fireworks(app, {

// resizeObserver.observe(app)

fireworks.addEventListener('explosion', () => {
console.log('One firework just exploded!')
})

fireworks.start()

const start = el(
Expand Down
26 changes: 26 additions & 0 deletions packages/fireworks-js/src/fireworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export class Fireworks {
private readonly resize: Resize
private readonly mouse: Mouse
private readonly raf: RequestAnimationFrame
private readonly events: FireworksTypes.Events = {}

constructor(
container: Element | HTMLCanvasElement,
Expand Down Expand Up @@ -160,6 +161,26 @@ export class Fireworks {
this.updateOptions({ boundaries })
}

addEventListener(
type: keyof FireworksTypes.Events,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions
): void {
if (!this.events[type]) {
this.events[type] = new Event(type)
}

this.canvas.addEventListener(type, listener, options)
}

removeEventListener(
type: keyof FireworksTypes.Events,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions
): void {
this.canvas.removeEventListener(type, listener, options)
}

private createCanvas(el: Element | HTMLCanvasElement): void {
if (el instanceof HTMLCanvasElement) {
if (!el.isConnected) {
Expand All @@ -180,6 +201,7 @@ export class Fireworks {
if (!this.ctx || !this.running) return

const { opacity, lineStyle, lineWidth } = this.opts
const tracesStart = this.traces.length
this.ctx.globalCompositeOperation = 'destination-out'
this.ctx.fillStyle = `rgba(0, 0, 0, ${opacity})`
this.ctx.fillRect(0, 0, this.width, this.height)
Expand All @@ -191,6 +213,10 @@ export class Fireworks {
this.initTrace()
this.drawTrace()
this.drawExplosion()

if (tracesStart > this.traces.length && this.events.explosion) {
this.canvas.dispatchEvent(this.events.explosion)
}
}

private createTrace(): void {
Expand Down
6 changes: 6 additions & 0 deletions packages/fireworks-js/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ export namespace FireworksTypes {
brightness: MinMax
decay: MinMax
}

export interface Events {
explosion?: Event
}
}

export type FireworksOptions = RecursivePartial<FireworksTypes.Options>
Expand All @@ -103,6 +107,8 @@ export interface FireworksHandlers
| 'updateBoundaries'
| 'updateSize'
| 'currentOptions'
| 'addEventListener'
| 'removeEventListener'
> {
waitStop(): Promise<void>
stop(): void
Expand Down
6 changes: 6 additions & 0 deletions packages/preact/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ const Fireworks = React.forwardRef<FireworksHandlers, FireworksProps>(
},
updateBoundaries(boundaries) {
fireworks.current!.updateBoundaries(boundaries)
},
addEventListener(type, listener, options) {
fireworks.current!.addEventListener(type, listener, options)
},
removeEventListener(type, listener, options) {
fireworks.current!.removeEventListener(type, listener, options)
}
}))

Expand Down
6 changes: 6 additions & 0 deletions packages/react/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ const Fireworks = React.forwardRef<FireworksHandlers, FireworksProps>(
},
updateBoundaries(boundaries) {
fireworks.current!.updateBoundaries(boundaries)
},
addEventListener(type, listener, options) {
fireworks.current!.addEventListener(type, listener, options)
},
removeEventListener(type, listener, options) {
fireworks.current!.removeEventListener(type, listener, options)
}
}))

Expand Down
6 changes: 6 additions & 0 deletions packages/vue/src/fireworks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ defineExpose<FireworksHandlers>({
},
updateBoundaries(boundaries) {
fireworks.value!.updateBoundaries(boundaries)
},
addEventListener(type, listener, options) {
fireworks.value!.addEventListener(type, listener, options)
},
removeEventListener(type, listener, options) {
fireworks.value!.removeEventListener(type, listener, options)
}
})
</script>
Expand Down