summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/explorer/stores/getters.js
blob: a371d0e635679352ff2440700d55158466381c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export const tags = state => {
  // to show the loader inside the table we need to pass an empty array to gl-table whenever the table is loading
  // this is to take in account isLoading = true and state.tags =[1,2,3] during pagination and delete
  return state.isLoading ? [] : state.tags;
};

export const dockerBuildCommand = state => {
  /* eslint-disable @gitlab/require-i18n-strings */
  return `docker build -t ${state.config.repositoryUrl} .`;
};

export const dockerPushCommand = state => {
  /* eslint-disable @gitlab/require-i18n-strings */
  return `docker push ${state.config.repositoryUrl}`;
};

export const dockerLoginCommand = state => {
  /* eslint-disable @gitlab/require-i18n-strings */
  return `docker login ${state.config.registryHostUrlWithPort}`;
};

export const showGarbageCollection = state => {
  return state.showGarbageCollectionTip && state.config.isAdmin;
};