summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/datetime/src/DateTimeViewsHelper.php
blob: 5e2f49b9e1d87b8818599744965bcd8bdcf8514c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php

declare(strict_types=1);

namespace Drupal\datetime;

use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\field\FieldStorageConfigInterface;
use Drupal\views\FieldViewsDataProvider;

/**
 * A helper for datetime fields integrating with views.
 */
class DateTimeViewsHelper {

  use StringTranslationTrait;

  public function __construct(
    protected readonly ?FieldViewsDataProvider $fieldViewsDataProvider,
  ) {}

  /**
   * Provides Views integration for any datetime-based fields.
   *
   * Overrides the default Views data for datetime-based fields, adding datetime
   * views plugins. Modules defining new datetime-based fields may use this
   * function to simplify Views integration.
   *
   * @param \Drupal\field\FieldStorageConfigInterface $field_storage
   *   The field storage config entity.
   * @param array $data
   *   Field view data or views_field_default_views_data($field_storage) if
   *   empty.
   * @param string $column_name
   *   The schema column name with the datetime value.
   *
   * @return array
   *   The array of field views data with the datetime plugin.
   *
   * @see datetime_field_views_data()
   * @see datetime_range_field_views_data()
   */
  public function buildViewsData(FieldStorageConfigInterface $field_storage, array $data, string $column_name): array {
    // @todo This code only covers configurable fields, handle base table fields
    //   in https://www.drupal.org/node/2489476.
    $data = empty($data) ? $this->fieldViewsDataProvider->defaultFieldImplementation($field_storage) : $data;
    foreach ($data as $table_name => $table_data) {
      // Set the 'datetime' filter type.
      $data[$table_name][$field_storage->getName() . '_' . $column_name]['filter']['id'] = 'datetime';

      // Set the 'datetime' argument type.
      $data[$table_name][$field_storage->getName() . '_' . $column_name]['argument']['id'] = 'datetime';

      // Create year, month, and day arguments.
      $group = $data[$table_name][$field_storage->getName() . '_' . $column_name]['group'];
      $arguments = [
        // Argument type => help text.
        'year' => $this->t('Date in the form of YYYY.'),
        'month' => $this->t('Date in the form of MM (01 - 12).'),
        'day' => $this->t('Date in the form of DD (01 - 31).'),
        'week' => $this->t('Date in the form of WW (01 - 53).'),
        'year_month' => $this->t('Date in the form of YYYYMM.'),
        'full_date' => $this->t('Date in the form of CCYYMMDD.'),
      ];
      foreach ($arguments as $argument_type => $help_text) {
        $column_name_text = $column_name === $field_storage->getMainPropertyName() ? '' : ':' . $column_name;
        $data[$table_name][$field_storage->getName() . '_' . $column_name . '_' . $argument_type] = [
          'title' => $this->t('@label@column (@argument)', [
            '@label' => $field_storage->getLabel(),
            '@column' => $column_name_text,
            '@argument' => $argument_type,
          ]),
          'help' => $help_text,
          'argument' => [
            'field' => $field_storage->getName() . '_' . $column_name,
            'id' => 'datetime_' . $argument_type,
            'entity_type' => $field_storage->getTargetEntityTypeId(),
            'field_name' => $field_storage->getName(),
          ],
          'group' => $group,
        ];
      }

      // Set the 'datetime' sort handler.
      $data[$table_name][$field_storage->getName() . '_' . $column_name]['sort']['id'] = 'datetime';
    }

    return $data;
  }

}