Page MenuHomePhabricator

Reimplement Countdown transactions using Modular Transaction framework
ClosedPublic

Authored by amckinley on Apr 12 2017, 11:45 PM.
Tags
None
Referenced Files
F13202509: D17671.diff
Tue, May 14, 10:46 PM
F13201345: D17671.id42500.diff
Tue, May 14, 11:04 AM
F13193326: D17671.diff
Sun, May 12, 1:16 PM
F13180301: D17671.id42500.diff
Wed, May 8, 11:04 PM
F13180049: D17671.id42514.diff
Wed, May 8, 10:00 PM
Unknown Object (File)
Sat, May 4, 6:57 PM
Unknown Object (File)
Wed, May 1, 12:25 AM
Unknown Object (File)
Sat, Apr 27, 4:36 PM
Subscribers
Tokens
"Hungry Hippo" token, awarded by epriestley.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Actual test plan to come after @epriestley confirms that this is more-or-less on the right track.

Couple of really minor inlines but this all looks great to me.

src/applications/countdown/editor/PhabricatorCountdownEditor.php
16–17

You should be able to throw these away -- modular transactions figure these out automatically.

src/applications/countdown/xaction/PhabricatorCountdownEpochTransaction.php
10

Just put an (int)$object->... cast here...

19–21

...and then you should be able to get rid of this.

52

This one should be newRequiredError() I think.

The difference between "required" and "invalid" is that some edits are allowed to go through even if required fields are missing. For example, you can award a token or subscribe to a countdown even if it somehow has missing information.

So generally if a field is empty, but shouldn't be empty, use newRequiredError(). If it has an improper value, use newInvalidError().

src/applications/countdown/xaction/PhabricatorCountdownTitleTransaction.php
19

You can omit quotes in ModularTransactions -- we used to have to quote everything, but renderOldValue() and renderNewValue() now give these a nice italic style. This also disambiguates cases where someone renames something to "quote quote '" quotes " double quote because they are oh-so-clever.

37–48

(These are right.)

Test plan could use slightly fewer owls but this looks good to me and I couldn't figure out any way to break it locally. 🐦

src/applications/countdown/xaction/PhabricatorCountdownEpochTransaction.php
40–42

I think you can get rid of this -- this kind of transaction will never generate a separate mail section because it doesn't implement newChangeDetailView(), since it isn't a big block of text that needs a complictated diff to show changes.

64–66

(No callers?)

This revision is now accepted and ready to land.Apr 13 2017, 2:15 AM

Tested creating a Countdown and modifying all three fields: title, description, end time. See

Screen Shot 2017-04-13 at 10.45.00 AM.png (870×2 px, 169 KB)
.
Confirmed that only description edits render details.

This revision was automatically updated to reflect the committed changes.