summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_new/utils/format_refs.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/pipeline_new/utils/format_refs.js')
-rw-r--r--app/assets/javascripts/pipeline_new/utils/format_refs.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/assets/javascripts/pipeline_new/utils/format_refs.js b/app/assets/javascripts/pipeline_new/utils/format_refs.js
new file mode 100644
index 00000000000..e217cd25413
--- /dev/null
+++ b/app/assets/javascripts/pipeline_new/utils/format_refs.js
@@ -0,0 +1,18 @@
+import { BRANCH_REF_TYPE, TAG_REF_TYPE } from '../constants';
+
+export default (refs, type) => {
+ let fullName;
+
+ return refs.map(ref => {
+ if (type === BRANCH_REF_TYPE) {
+ fullName = `refs/heads/${ref}`;
+ } else if (type === TAG_REF_TYPE) {
+ fullName = `refs/tags/${ref}`;
+ }
+
+ return {
+ shortName: ref,
+ fullName,
+ };
+ });
+};