Skip to content

Commit d9c322d

Browse files
New when() helper. (#52665)
* feat(blade): New @when directive. * StyleCI * fix: move to compilesConditionals + remove default expression * fix: styleCI * fix: when() returns the value, rather than echoing it. * fix: Remove @throws tags * fix: styleCI * fix: escaping on by default * fix: remove blade directive and adds tests for when helper * StyleCI * remove default, add more tests. * Remove return type * StyleCI * Update helpers.php * move function --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
1 parent c65725d commit d9c322d

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

src/Illuminate/Collections/helpers.php

+18
Original file line numberDiff line numberDiff line change
@@ -236,3 +236,21 @@ function value($value, ...$args)
236236
return $value instanceof Closure ? $value(...$args) : $value;
237237
}
238238
}
239+
240+
if (! function_exists('when')) {
241+
/**
242+
* Output a value if the given condition is true.
243+
*
244+
* @param mixed $condition
245+
* @param \Closure|mixed $output
246+
* @return mixed
247+
*/
248+
function when($condition, $output)
249+
{
250+
if ($condition) {
251+
return value($output);
252+
}
253+
254+
return null;
255+
}
256+
}

tests/Support/SupportHelpersTest.php

+14
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,20 @@ public function testClassBasename()
100100
$this->assertSame('..', class_basename('\Foo\Bar\Baz\\..\\'));
101101
}
102102

103+
public function testWhen()
104+
{
105+
$this->assertEquals('Hello', when(true, 'Hello'));
106+
$this->assertEquals(null, when(false, 'Hello'));
107+
$this->assertEquals('There', when(1 === 1, 'There')); // strict types
108+
$this->assertEquals('There', when(1 == '1', 'There')); // loose types
109+
$this->assertEquals(null, when(1 == 2, 'There'));
110+
$this->assertEquals(null, when('1', fn () => null));
111+
$this->assertEquals(null, when(0, fn () => null));
112+
$this->assertEquals('True', when([1, 2, 3, 4], 'True')); // Array
113+
$this->assertEquals(null, when([], 'True')); // Empty Array = Falsy
114+
$this->assertEquals('True', when(new StdClass, fn () => 'True')); // Object
115+
}
116+
103117
public function testFilled()
104118
{
105119
$this->assertFalse(filled(null));

0 commit comments

Comments
 (0)