Skip to content

Commit

Permalink
Add docs Time::class. (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Feb 15, 2024
1 parent 0ad1808 commit eff0ca0
Show file tree
Hide file tree
Showing 5 changed files with 236 additions and 40 deletions.
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ In addition to basic `HTML` tags, the repository also supports the generation of
This is particularly useful for creating forms and other interactive elements on a webpage.

- [text](/docs/form/input/Text.md)
- [time](/docs/form/input/Time.md)
- [url](/docs/form/input/Url.md)
- [week](/docs/form/input/Week.md)

Expand Down
170 changes: 170 additions & 0 deletions docs/form/input/Time.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
# Time

The input element with a type attribute whose value is `time` represents a control for setting the element’s value to
a string representing a time (with no timezone information).

## Basic Usage

Instantiate the `Time` class using `Time::widget()`.

```php
$time = Time::widget();
```

## Generate field id and name

The `generateField` method is used to generate the field id and name for the `HTML` output.

Allowed arguments are:

- `modelName` - The name of the model.
- `fieldName` - The name of the field.
- `arrayable` - Whether the field is an array. For default, it is `false`.

```php
// generate field id and name
$time->generateField('model', 'field');
```

## Setting Attributes

Use the provided methods to set specific attributes for the a element.

```php
// setting class attribute
$time->class('container');
```

Or, use the `attributes` method to set multiple attributes at once.

```php
$time->attributes(['class' => 'container', 'style' => 'background-color: #eee;']);
```

## Adding value

If you want to include value in the `time` element, use the `value` method.

```php
$time->value('MyValue');
```

## Rendering

Generate the `HTML` output using the `render` method, for simple instantiation.

```php
$html = $time->render();
```

Or, use the magic `__toString` method.

```php
$html = (string) $time;
```

## Common use cases

Below are examples of common use cases:

```php
// adding multiple attributes
$time->class('external')->value('Myvalue');

// using data attributes
$time->dataAttributes(['analytics' => 'trackClick']);
```

Explore additional methods for setting various attributes such as `lang`, `name`, `style`, `title`, etc.

## Prefix and Suffix

Use `prefix` and `suffix` methods to add text before and after the `week` tag, respectively.

```php
// adding a prefix
$html = $time->content('MyContent')->prefix('MyPrefix')->render();

// adding a suffix
$html = $time->content('MyContent')->suffix('MySuffix')->render();
```

## Template

The `template` method allows you to customize the `HTML` output of the a element.

The following template tags are available:

| Tag | Description |
| ---------- | ---------------- |
| `{prefix}` | The prefix text. |
| `{tag}` | The a element. |
| `{suffix}` | The suffix text. |

```php
// using a custom template
$time->template('<div>{tag}</div>');
```

## Attributes

Refer to the [Attribute Tests](https://github.com/php-forge/html/blob/main/tests/Input/Time/AttributeTest.php) for
comprehensive examples.

The following methods are available for setting attributes:

| Method | Description |
| ------------------ | ----------------------------------------------------------------------------------------------- |
| `ariaDescribedBy()`| Set the `aria-describedby` attribute. |
| `ariaLabel()` | Set the `aria-label` attribute. |
| `attributes()` | Set multiple `attributes` at once. |
| `autofocus()` | Set the `autofocus` attribute. |
| `class()` | Set the `class` attribute. |
| `dataAttributes()` | Set multiple `data-attributes` at once. |
| `disabled()` | Set the `disabled` attribute. |
| `form()` | Set the `form` attribute. |
| `hidden()` | Set the `hidden` attribute. |
| `id()` | Set the `id` attribute. |
| `lang()` | Set the `lang` attribute. |
| `name()` | Set the `name` attribute. |
| `readOnly()` | Set the `readonly` attribute. |
| `step()` | Set the `step` attribute. |
| `style()` | Set the `style` attribute. |
| `tabIndex()` | Set the `tabindex` attribute. |
| `title()` | Set the `title` attribute. |
| `value()` | Set the `value` attribute. |

## Custom methods

Refer to the [Custom Methods Tests](https://github.com/php-forge/html/blob/main/tests/Input/Time/CustomMethodTest.php)
for comprehensive examples.

The following methods are available for customizing the `HTML` output:

| Method | Description |
| ---------------------------- | ------------------------------------------------------------------------------------- |
| `generateField()` | Generate the field id and name for the `HTML` output. |
| `prefix()` | Add text before the `textarea` element. |
| `prefixContainer()` | Set enabled or disabled for the `prefix-container` element. |
| `prefixContainerAttributes()`| Set `attributes` for the `prefix-container` element. |
| `prefixContainerClass()` | Set the `class` attribute for the `prefix-container` element. |
| `prefixContainerTag()` | Set the `tag` for the `prefix-container` element. |
| `render()` | Generates the `HTML` output. |
| `suffix()` | Add text after the `label` element. |
| `suffixContainer()` | Set enabled or disabled for the `suffix-container` element. |
| `suffixContainerAttributes()`| Set `attributes` for the `suffix-container` element. |
| `suffixContainerClass()` | Set the `class` attribute for the `suffix-container` element. |
| `suffixContainerTag()` | Set the `tag` for the `suffix-container` element. |
| `template()` | Set the template for the `HTML` output. |
| `widget()` | Instantiates the `Time::class`. |

## Validate methods

Refer to the [Validate Tests](https://github.com/php-forge/html/blob/main/tests/Input/Time/ValidateTest.php) for
comprehensive examples.

| Method | Description |
| -------------- | --------------------------------------------------------------------------------------------------- |
| `max()` | Set the `max` attribute. |
| `min()` | Set the `min` attribute. |
| `required()` | Set the `required` attribute. |
40 changes: 0 additions & 40 deletions tests/Input/Time/AttributeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,26 +153,6 @@ public function testLang(): void
);
}

public function testMax(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="time-6582f2d099e8b" type="time" max="value">
HTML,
Time::widget()->id('time-6582f2d099e8b')->max('value')->render()
);
}

public function testMin(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="time-6582f2d099e8b" type="time" min="value">
HTML,
Time::widget()->id('time-6582f2d099e8b')->min('value')->render()
);
}

public function testName(): void
{
Assert::equalsWithoutLE(
Expand All @@ -193,26 +173,6 @@ public function testReadonly(): void
);
}

public function testRender(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="time-6582f2d099e8b" type="time">
HTML,
Time::widget()->id('time-6582f2d099e8b')->render()
);
}

public function testRequired(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="time-6582f2d099e8b" type="time" required>
HTML,
Time::widget()->id('time-6582f2d099e8b')->required()->render()
);
}

public function testStep(): void
{
Assert::equalsWithoutLE(
Expand Down
20 changes: 20 additions & 0 deletions tests/Input/Time/CustomMethodTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@
*/
final class CustomMethodTest extends TestCase
{
public function testGenerateField(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="modelname-fieldname" name="ModelName[fieldName]" type="time">
HTML,
Time::widget()->generateField('ModelName', 'fieldName')->render()
);
}

public function testPrefix(): void
{
Assert::equalsWithoutLE(
Expand Down Expand Up @@ -91,6 +101,16 @@ public function testPrefixContainerTag(): void
);
}

public function testRender(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="time-6582f2d099e8b" type="time">
HTML,
Time::widget()->id('time-6582f2d099e8b')->render()
);
}

public function testSuffix(): void
{
Assert::equalsWithoutLE(
Expand Down
45 changes: 45 additions & 0 deletions tests/Input/Time/ValidateTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php

declare(strict_types=1);

namespace PHPForge\Html\Tests\Input\Time;

use PHPForge\Html\Input\Time;
use PHPForge\Support\Assert;
use PHPUnit\Framework\TestCase;

/**
* @psalm-suppress PropertyNotSetInConstructor
*/
final class ValidateTest extends TestCase
{
public function testMax(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="time-6582f2d099e8b" type="time" max="value">
HTML,
Time::widget()->id('time-6582f2d099e8b')->max('value')->render()
);
}

public function testMin(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="time-6582f2d099e8b" type="time" min="value">
HTML,
Time::widget()->id('time-6582f2d099e8b')->min('value')->render()
);
}

public function testRequired(): void
{
Assert::equalsWithoutLE(
<<<HTML
<input id="time-6582f2d099e8b" type="time" required>
HTML,
Time::widget()->id('time-6582f2d099e8b')->required()->render()
);
}
}

0 comments on commit eff0ca0

Please sign in to comment.