42 lines
939 B
PHP
42 lines
939 B
PHP
<?php
|
|
|
|
|
|
namespace WPML\TM\ATE\Review;
|
|
|
|
|
|
use WPML\Collect\Support\Traits\Macroable;
|
|
use WPML\FP\Fns;
|
|
use WPML\FP\Logic;
|
|
use WPML\FP\Lst;
|
|
use WPML\FP\Obj;
|
|
use function WPML\FP\curryN;
|
|
use function WPML\FP\pipe;
|
|
|
|
/**
|
|
* Class ReviewStatus
|
|
* @package WPML\TM\ATE\Review
|
|
*
|
|
* @method static callable|bool needsReview( ...$reviewStatus ) - Curried :: string->bool
|
|
* @method static callable|bool doesJobNeedReview( ...$job ) - Curried :: \stdClass->bool
|
|
*/
|
|
class ReviewStatus {
|
|
use Macroable;
|
|
|
|
const NEEDS_REVIEW = 'NEEDS_REVIEW';
|
|
const EDITING = 'EDITING';
|
|
const ACCEPTED = 'ACCEPTED';
|
|
|
|
public static function init() {
|
|
|
|
self::macro( 'needsReview', Lst::includes( Fns::__, [ ReviewStatus::NEEDS_REVIEW, ReviewStatus::EDITING ] ) );
|
|
|
|
self::macro( 'doesJobNeedReview', curryN( 1, Logic::ifElse(
|
|
Fns::identity(),
|
|
pipe( Obj::prop( 'review_status' ), self::needsReview() ),
|
|
Fns::always(false)
|
|
) ));
|
|
}
|
|
}
|
|
|
|
ReviewStatus::init();
|