Sha256: 7a3803825ac15c24a591162e736cbd9c40dfd1b96da3e6c01cc8a34877952498

Contents?: true

Size: 675 Bytes

Versions: 3

Compression:

Stored size: 675 Bytes

Contents

export const selectSubscriptionsState = state =>
  state.katello.subscriptions;

export const selectManifestModalOpened = state =>
  selectSubscriptionsState(state).manifestModalOpened;

export const selectDeleteModalOpened = state =>
  selectSubscriptionsState(state).deleteModalOpened;

export const selectSearchQuery = state =>
  selectSubscriptionsState(state).searchQuery;

export const selectTaskModalOpened = state =>
  selectSubscriptionsState(state).taskModalOpened;

export const selectDeleteButtonDisabled = state =>
  selectSubscriptionsState(state).deleteButtonDisabled;

export const selectSubscriptionsTasks = state =>
  selectSubscriptionsState(state).tasks;

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
katello-3.11.0 webpack/scenes/Subscriptions/SubscriptionsSelectors.js
katello-3.11.0.rc2 webpack/scenes/Subscriptions/SubscriptionsSelectors.js
katello-3.11.0.rc1 webpack/scenes/Subscriptions/SubscriptionsSelectors.js