Skip to main content

DrupalView

Index

Variables

CountDisplay

CountDisplay: (countDisplayProps: DrupalViewCountDisplayProps) => Element

Type declaration

    • Component for rendering te page-count result of Drupal-View

      @example

      Use this component inside DrupalView to render this at specific custom position:

      <DrupalView {...drupalViewProps}>
      {/* ... some other optional components ... */}
      <DrupalView.CountDisplay {...countDisplayProps} />
      {/* ... some other optional components ... */}
      </DrupalView>

      Result looks something like “1 - 6 Results of 36”


      Parameters

      Returns Element

ExposedFilters

ExposedFilters: (exposedFilterProps: ExposedFilterProps) => null | Element

Type declaration

    • Component for Rendering the Drupal-View-Exposed-Filter.

      @example

      Use this component inside DrupalView to render this at specific custom position:

      <DrupalView {...drupalViewProps}>
      {/* ... some other optional components ... */}
      <DrupalView.ExposedFilters {...exposedFilterProps} />
      {/* ... some other optional components ... */}
      </DrupalView>

      Parameters

      Returns null | Element