'text', 'readOnly' => false, 'autofocus' => false, 'required' => false, 'autocomplete' => true, ], $config ); // Parent constructor parent::__construct( $config ); // Properties $this->type = $this->getSaneType( $config ); // Traits $this->initializeIconElement( $config ); $this->initializeIndicatorElement( $config ); $this->initializeFlaggedElement( array_merge( [ 'flagged' => $this ], $config ) ); // Initialization $this ->addClasses( [ 'oo-ui-textInputWidget', 'oo-ui-textInputWidget-type-' . $this->type, 'oo-ui-textInputWidget-php', ] ) ->appendContent( $this->icon, $this->indicator ); $this->setReadOnly( $config['readOnly'] ); $this->setRequired( $config['required'] ); if ( isset( $config['placeholder'] ) ) { $this->input->setAttributes( [ 'placeholder' => $config['placeholder'] ] ); } if ( isset( $config['maxLength'] ) ) { $this->input->setAttributes( [ 'maxlength' => $config['maxLength'] ] ); } if ( $config['autofocus'] ) { $this->input->setAttributes( [ 'autofocus' => 'autofocus' ] ); } if ( !$config['autocomplete'] ) { $this->input->setAttributes( [ 'autocomplete' => 'off' ] ); } if ( isset( $config['spellcheck'] ) ) { $this->input->setAttributes( [ 'spellcheck' => $config['spellcheck'] ? 'true' : 'false' ] ); } } /** * Check if the widget is read-only. * * @return bool */ public function isReadOnly() { return $this->readOnly; } /** * Set the read-only state of the widget. This should probably change the widget's appearance and * prevent it from being used. * * @param bool $state Make input read-only * @return $this */ public function setReadOnly( $state ) { $this->readOnly = (bool)$state; if ( $this->readOnly ) { $this->input->setAttributes( [ 'readonly' => 'readonly' ] ); } else { $this->input->removeAttributes( [ 'readonly' ] ); } return $this; } /** * Check if the widget is required. * * @return bool */ public function isRequired() { return $this->required; } /** * Set the required state of the widget. * * @param bool $state Make input required * @return $this */ public function setRequired( $state ) { $this->required = (bool)$state; if ( $this->required ) { $this->input->setAttributes( [ 'required' => 'required', 'aria-required' => 'true' ] ); if ( $this->getIndicator() === null ) { $this->setIndicator( 'required' ); } } else { $this->input->removeAttributes( [ 'required', 'aria-required' ] ); if ( $this->getIndicator() === 'required' ) { $this->setIndicator( null ); } } return $this; } protected function getInputElement( $config ) { if ( $this->getSaneType( $config ) === 'number' ) { return ( new Tag( 'input' ) )->setAttributes( [ 'step' => 'any', 'type' => 'number', ] ); } else { return ( new Tag( 'input' ) )->setAttributes( [ 'type' => $this->getSaneType( $config ) ] ); } } protected function getSaneType( $config ) { $allowedTypes = [ 'text', 'password', 'email', 'url', 'number' ]; return in_array( $config['type'], $allowedTypes ) ? $config['type'] : 'text'; } public function getConfig( &$config ) { if ( $this->type !== 'text' ) { $config['type'] = $this->type; } if ( $this->isReadOnly() ) { $config['readOnly'] = true; } $placeholder = $this->input->getAttribute( 'placeholder' ); if ( $placeholder !== null ) { $config['placeholder'] = $placeholder; } $maxlength = $this->input->getAttribute( 'maxlength' ); if ( $maxlength !== null ) { $config['maxLength'] = $maxlength; } $autofocus = $this->input->getAttribute( 'autofocus' ); if ( $autofocus !== null ) { $config['autofocus'] = true; } $required = $this->input->getAttribute( 'required' ); $ariarequired = $this->input->getAttribute( 'aria-required' ); if ( ( $required !== null ) || ( $ariarequired !== null ) ) { $config['required'] = true; } $autocomplete = $this->input->getAttribute( 'autocomplete' ); if ( $autocomplete !== null ) { $config['autocomplete'] = false; } return parent::getConfig( $config ); } }