Page MenuHomePhabricator

[native] [refactor] [ENG-530] refactor container margin bottom if statement
ClosedPublic

Authored by benschac on May 10 2022, 10:36 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 9:48 PM
Unknown Object (File)
Sat, Apr 6, 2:15 PM
Unknown Object (File)
Wed, Apr 3, 12:23 PM
Unknown Object (File)
Wed, Apr 3, 11:42 AM
Unknown Object (File)
Mar 27 2024, 8:53 AM
Unknown Object (File)
Mar 27 2024, 8:46 AM
Unknown Object (File)
Mar 10 2024, 8:57 PM
Unknown Object (File)
Mar 8 2024, 8:20 AM

Details

Summary

use if else syntax the that's used project wide.

before:

image.png (320×566 px, 28 KB)

after:

image.png (320×470 px, 28 KB)

Test Plan

Cluster margin should work as expected in chat view.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

native/chat/composed-message.react.js
78 ↗(On Diff #12525)

Additionally, I need to add another condition in here and using an if else is easier to read here.

[native] [fix] [ENG-1123] update chat bubble design

tomek requested changes to this revision.May 11 2022, 5:46 AM

This is not only a refactor, but it also changes the logic. In the previous version, when item.endsCluster then marginBottom: 5 + clusterEndHeight, but now marginBottom: clusterEndHeight. Is that intentional?

This revision now requires changes to proceed.May 11 2022, 5:46 AM
In D3997#112145, @palys-swm wrote:

This is not only a refactor, but it also changes the logic. In the previous version, when item.endsCluster then marginBottom: 5 + clusterEndHeight, but now marginBottom: clusterEndHeight. Is that intentional?

You're right, thanks for catching this.

This revision is now accepted and ready to land.May 11 2022, 6:08 AM