summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/stores/artifacts_list/getters.js
blob: 8921637b93b54919db21028d43454fdbc457cddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { s__, n__ } from '~/locale';

export const title = state => {
  if (state.isLoading) {
    return s__('BuildArtifacts|Loading artifacts');
  }

  if (state.hasError) {
    return s__('BuildArtifacts|An error occurred while fetching the artifacts');
  }

  return n__('View exposed artifact', 'View %d exposed artifacts', state.artifacts.length);
};

// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};