Skip to content

Commit

Permalink
Merge pull request #5079 from vector-im/feature/bma/konfetti2
Browse files Browse the repository at this point in the history
WIP and low priority: upgrade konfetti to 2.0.2
  • Loading branch information
bmarty authored Apr 6, 2022
2 parents 02401f7 + 930ce06 commit c849cc5
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 17 deletions.
1 change: 1 addition & 0 deletions changelog.d/5079.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade konfetti lib from 1.3.2 to 2.0.2
3 changes: 2 additions & 1 deletion vector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,8 @@ dependencies {
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'

// Chat effects
implementation 'nl.dionsegijn:konfetti:1.3.2'
implementation 'nl.dionsegijn:konfetti-xml:2.0.2'

implementation 'com.github.jetradarmobile:android-snowfall:1.2.1'
// DI
implementation libs.dagger.hilt
Expand Down
37 changes: 24 additions & 13 deletions vector/src/main/java/im/vector/app/core/animations/Konfetti.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,14 @@ import android.content.Context
import androidx.annotation.ColorInt
import androidx.core.content.ContextCompat
import im.vector.app.R
import nl.dionsegijn.konfetti.KonfettiView
import nl.dionsegijn.konfetti.models.Shape
import nl.dionsegijn.konfetti.models.Size
import nl.dionsegijn.konfetti.core.Angle
import nl.dionsegijn.konfetti.core.Party
import nl.dionsegijn.konfetti.core.Position
import nl.dionsegijn.konfetti.core.Spread
import nl.dionsegijn.konfetti.core.emitter.Emitter
import nl.dionsegijn.konfetti.core.models.Shape
import nl.dionsegijn.konfetti.core.models.Size
import nl.dionsegijn.konfetti.xml.KonfettiView

fun KonfettiView.play() {
val confettiColors = listOf(
Expand All @@ -35,16 +40,22 @@ fun KonfettiView.play() {
R.color.palette_prune,
R.color.palette_kiwi
)
build()
.addColors(confettiColors.toColorInt(context))
.setDirection(0.0, 359.0)
.setSpeed(2f, 5f)
.setFadeOutEnabled(true)
.setTimeToLive(2000L)
.addShapes(Shape.Square, Shape.Circle)
.addSizes(Size(12))
.setPosition(-50f, width + 50f, -50f, -50f)
.streamFor(150, 3000L)
val emitterConfig = Emitter(2000).perSecond(100)
val party = Party(
emitter = emitterConfig,
colors = confettiColors.toColorInt(context),
angle = Angle.Companion.BOTTOM,
spread = Spread.ROUND,
shapes = listOf(Shape.Square, Shape.Circle),
size = listOf(Size(12)),
speed = 2f,
maxSpeed = 5f,
fadeOutEnabled = true,
timeToLive = 2000L,
position = Position.Relative(0.0, 0.0).between(Position.Relative(1.0, 0.0)),
)
reset()
start(party)
}

@ColorInt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
android:layout_height="match_parent"
android:background="?colorSecondary">

<nl.dionsegijn.konfetti.KonfettiView
<nl.dionsegijn.konfetti.xml.KonfettiView
android:id="@+id/viewKonfetti"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent">

<nl.dionsegijn.konfetti.KonfettiView
<nl.dionsegijn.konfetti.xml.KonfettiView
android:id="@+id/viewKonfetti"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand Down
2 changes: 1 addition & 1 deletion vector/src/main/res/layout/fragment_timeline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
app:layout_constraintEnd_toEndOf="parent"
app:tint="@android:color/black" />

<nl.dionsegijn.konfetti.KonfettiView
<nl.dionsegijn.konfetti.xml.KonfettiView
android:id="@+id/viewKonfetti"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand Down

0 comments on commit c849cc5

Please sign in to comment.