Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
51b98110
Commit
51b98110
authored
Jan 09, 2020
by
Nicolò Maria Mezzopera
Committed by
Phil Hughes
Jan 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move shared constants to shared folder
- shared constants - shared utils
parent
9e71803b
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
151 additions
and
16 deletions
+151
-16
ee/app/assets/javascripts/packages/details/components/app.vue
...pp/assets/javascripts/packages/details/components/app.vue
+19
-5
ee/app/assets/javascripts/packages/details/constants.js
ee/app/assets/javascripts/packages/details/constants.js
+0
-6
ee/app/assets/javascripts/packages/details/utils.js
ee/app/assets/javascripts/packages/details/utils.js
+2
-1
ee/app/assets/javascripts/packages/list/components/packages_list.vue
...ts/javascripts/packages/list/components/packages_list.vue
+14
-1
ee/app/assets/javascripts/packages/shared/constants.js
ee/app/assets/javascripts/packages/shared/constants.js
+16
-0
ee/app/assets/javascripts/packages/shared/utils.js
ee/app/assets/javascripts/packages/shared/utils.js
+6
-0
ee/spec/frontend/packages/details/components/app_spec.js
ee/spec/frontend/packages/details/components/app_spec.js
+45
-1
ee/spec/frontend/packages/list/components/packages_list_spec.js
...c/frontend/packages/list/components/packages_list_spec.js
+30
-0
ee/spec/frontend/packages/mock_data.js
ee/spec/frontend/packages/mock_data.js
+2
-2
ee/spec/frontend/packages/shared/utils_spec.js
ee/spec/frontend/packages/shared/utils_spec.js
+17
-0
No files found.
ee/app/assets/javascripts/packages/details/components/app.vue
View file @
51b98110
...
...
@@ -9,6 +9,7 @@ import {
GlTable
,
}
from
'
@gitlab/ui
'
;
import
_
from
'
underscore
'
;
import
Tracking
from
'
~/tracking
'
;
import
PackageInformation
from
'
./information.vue
'
;
import
NpmInstallation
from
'
./npm_installation.vue
'
;
import
MavenInstallation
from
'
./maven_installation.vue
'
;
...
...
@@ -17,7 +18,8 @@ import { numberToHumanSize } from '~/lib/utils/number_utils';
import
timeagoMixin
from
'
~/vue_shared/mixins/timeago
'
;
import
{
generatePackageInfo
}
from
'
../utils
'
;
import
{
__
,
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
PackageType
}
from
'
../constants
'
;
import
{
PackageType
,
TrackingActions
}
from
'
../../shared/constants
'
;
import
{
packageTypeToTrackCategory
}
from
'
../../shared/utils
'
;
export
default
{
name
:
'
PackagesApp
'
,
...
...
@@ -36,7 +38,8 @@ export default {
GlTooltip
:
GlTooltipDirective
,
GlModal
:
GlModalDirective
,
},
mixins
:
[
timeagoMixin
],
mixins
:
[
timeagoMixin
,
Tracking
.
mixin
()],
trackingActions
:
{
...
TrackingActions
},
props
:
{
packageEntity
:
{
type
:
Object
,
...
...
@@ -145,6 +148,11 @@ export default {
created
:
x
.
created_at
,
}));
},
tracking
()
{
return
{
category
:
packageTypeToTrackCategory
(
this
.
packageEntity
.
package_type
),
};
},
},
methods
:
{
formatSize
(
size
)
{
...
...
@@ -233,9 +241,13 @@ export default {
>
<template
#name
="
items
"
>
<icon
name=
"doc-code"
class=
"space-right"
/>
<gl-link
:href=
"items.item.downloadPath"
class=
"js-file-download"
>
{{
items
.
item
.
name
}}
</gl-link>
<gl-link
:href=
"items.item.downloadPath"
class=
"js-file-download"
@
click=
"track($options.trackingActions.PULL_PACKAGE)"
>
{{
items
.
item
.
name
}}
</gl-link>
</
template
>
<
template
#created=
"items"
>
...
...
@@ -253,10 +265,12 @@ export default {
<div
class=
"float-right"
>
<gl-button
@
click=
"cancelDelete()"
>
{{ __('Cancel') }}
</gl-button>
<gl-button
ref=
"modal-delete-button"
data-method=
"delete"
:to=
"destroyPath"
variant=
"danger"
data-qa-selector=
"delete_modal_button"
@
click=
"track($options.trackingActions.DELETE_PACKAGE)"
>
{{ __('Delete') }}
</gl-button
>
</div>
...
...
ee/app/assets/javascripts/packages/details/constants.js
View file @
51b98110
export
const
PackageType
=
{
CONAN
:
'
conan
'
,
MAVEN
:
'
maven
'
,
NPM
:
'
npm
'
,
};
export
const
TrackingLabels
=
{
CODE_INSTRUCTION
:
'
code_instruction
'
,
MAVEN_INSTALLATION
:
'
maven_installation
'
,
...
...
ee/app/assets/javascripts/packages/details/utils.js
View file @
51b98110
import
{
__
}
from
'
~/locale
'
;
import
{
formatDate
}
from
'
~/lib/utils/datetime_utility
'
;
import
{
PackageType
,
TrackingActions
}
from
'
./constants
'
;
import
{
TrackingActions
}
from
'
./constants
'
;
import
{
PackageType
}
from
'
../shared/constants
'
;
export
const
trackInstallationTabChange
=
{
methods
:
{
...
...
ee/app/assets/javascripts/packages/list/components/packages_list.vue
View file @
51b98110
<
script
>
import
{
mapState
}
from
'
vuex
'
;
import
{
GlTable
,
GlPagination
,
GlButton
,
GlSorting
,
GlSortingItem
,
GlModal
}
from
'
@gitlab/ui
'
;
import
Tracking
from
'
~/tracking
'
;
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
TimeAgoTooltip
from
'
~/vue_shared/components/time_ago_tooltip.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
LIST_KEY_NAME
,
LIST_KEY_PROJECT
,
...
...
@@ -18,6 +19,8 @@ import {
LIST_LABEL_CREATED_AT
,
LIST_LABEL_ACTIONS
,
}
from
'
../constants
'
;
import
{
TrackingActions
}
from
'
../../shared/constants
'
;
import
{
packageTypeToTrackCategory
}
from
'
../../shared/utils
'
;
export
default
{
components
:
{
...
...
@@ -30,6 +33,7 @@ export default {
GlModal
,
Icon
,
},
mixins
:
[
Tracking
.
mixin
()],
data
()
{
return
{
modalId
:
'
confirm-delete-pacakge
'
,
...
...
@@ -126,6 +130,14 @@ export default {
false
,
);
},
tracking
()
{
const
category
=
this
.
itemToBeDeleted
?
packageTypeToTrackCategory
(
this
.
itemToBeDeleted
.
package_type
)
:
undefined
;
return
{
category
,
};
},
},
methods
:
{
onDirectionChange
()
{
...
...
@@ -140,6 +152,7 @@ export default {
},
deleteItemConfirmation
()
{
this
.
$emit
(
'
package:delete
'
,
this
.
itemToBeDeleted
.
id
);
this
.
track
(
TrackingActions
.
DELETE_PACKAGE
);
this
.
itemToBeDeleted
=
null
;
},
deleteItemCanceled
()
{
...
...
ee/app/assets/javascripts/packages/shared/constants.js
0 → 100644
View file @
51b98110
export
const
PackageType
=
{
MAVEN
:
'
maven
'
,
NPM
:
'
npm
'
,
CONAN
:
'
conan
'
,
};
export
const
TrackingActions
=
{
DELETE_PACKAGE
:
'
delete_package
'
,
PULL_PACKAGE
:
'
pull_package
'
,
};
export
const
TrackingCategories
=
{
[
PackageType
.
MAVEN
]:
'
MavenPackages
'
,
[
PackageType
.
NPM
]:
'
NpmPackages
'
,
[
PackageType
.
CONAN
]:
'
ConanPackages
'
,
};
ee/app/assets/javascripts/packages/shared/utils.js
0 → 100644
View file @
51b98110
import
{
TrackingCategories
}
from
'
./constants
'
;
// eslint-disable-next-line import/prefer-default-export
export
const
packageTypeToTrackCategory
=
type
=>
// eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings
`UI::
${
TrackingCategories
[
type
]}
`
;
ee/spec/frontend/packages/details/components/app_spec.js
View file @
51b98110
import
{
mount
}
from
'
@vue/test-utils
'
;
import
{
GlModal
}
from
'
@gitlab/ui
'
;
import
Tracking
from
'
~/tracking
'
;
import
PackagesApp
from
'
ee/packages/details/components/app.vue
'
;
import
PackageInformation
from
'
ee/packages/details/components/information.vue
'
;
import
NpmInstallation
from
'
ee/packages/details/components/npm_installation.vue
'
;
import
MavenInstallation
from
'
ee/packages/details/components/maven_installation.vue
'
;
import
{
mavenPackage
,
mavenFiles
,
npmPackage
,
npmFiles
}
from
'
../../mock_data
'
;
import
*
as
SharedUtils
from
'
ee/packages/shared/utils
'
;
import
{
TrackingActions
}
from
'
ee/packages/shared/constants
'
;
import
{
mavenPackage
,
mavenFiles
,
npmPackage
,
npmFiles
,
conanPackage
}
from
'
../../mock_data
'
;
describe
(
'
PackagesApp
'
,
()
=>
{
let
wrapper
;
...
...
@@ -44,6 +47,7 @@ describe('PackagesApp', () => {
const
firstFileDownloadLink
=
()
=>
wrapper
.
find
(
'
.js-file-download
'
);
const
deleteButton
=
()
=>
wrapper
.
find
(
'
.js-delete-button
'
);
const
deleteModal
=
()
=>
wrapper
.
find
(
GlModal
);
const
modalDeleteButton
=
()
=>
wrapper
.
find
({
ref
:
'
modal-delete-button
'
});
afterEach
(()
=>
{
wrapper
.
destroy
();
...
...
@@ -136,4 +140,44 @@ describe('PackagesApp', () => {
expect
(
deleteModal
()).
toExist
();
});
});
describe
(
'
tracking
'
,
()
=>
{
let
eventSpy
;
let
utilSpy
;
const
category
=
'
foo
'
;
beforeEach
(()
=>
{
eventSpy
=
jest
.
spyOn
(
Tracking
,
'
event
'
);
utilSpy
=
jest
.
spyOn
(
SharedUtils
,
'
packageTypeToTrackCategory
'
).
mockReturnValue
(
category
);
});
it
(
'
tracking category calls packageTypeToTrackCategory
'
,
()
=>
{
createComponent
({
packageEntity
:
conanPackage
});
expect
(
wrapper
.
vm
.
tracking
.
category
).
toBe
(
category
);
expect
(
utilSpy
).
toHaveBeenCalledWith
(
'
conan
'
);
});
it
(
`delete button on delete modal call event with
${
TrackingActions
.
DELETE_PACKAGE
}
`
,
()
=>
{
createComponent
({
packageEntity
:
conanPackage
,
canDelete
:
true
,
destroyPath
:
'
foo
'
});
deleteButton
().
trigger
(
'
click
'
);
return
wrapper
.
vm
.
$nextTick
().
then
(()
=>
{
modalDeleteButton
().
trigger
(
'
click
'
);
expect
(
eventSpy
).
toHaveBeenCalledWith
(
category
,
TrackingActions
.
DELETE_PACKAGE
,
expect
.
any
(
Object
),
);
});
});
it
(
`file download link call event with
${
TrackingActions
.
PULL_PACKAGE
}
`
,
()
=>
{
createComponent
({
packageEntity
:
conanPackage
});
firstFileDownloadLink
().
trigger
(
'
click
'
);
expect
(
eventSpy
).
toHaveBeenCalledWith
(
category
,
TrackingActions
.
PULL_PACKAGE
,
expect
.
any
(
Object
),
);
});
});
});
ee/spec/frontend/packages/list/components/packages_list_spec.js
View file @
51b98110
import
Vue
from
'
vue
'
;
import
_
from
'
underscore
'
;
import
Tracking
from
'
~/tracking
'
;
import
{
mount
}
from
'
@vue/test-utils
'
;
import
PackagesList
from
'
ee/packages/list/components/packages_list.vue
'
;
import
*
as
SharedUtils
from
'
ee/packages/shared/utils
'
;
import
{
TrackingActions
}
from
'
ee/packages/shared/constants
'
;
import
stubChildren
from
'
helpers/stub_children
'
;
import
{
packageList
}
from
'
../../mock_data
'
;
...
...
@@ -126,6 +129,7 @@ describe('packages_list', () => {
wrapper
.
vm
.
deleteItemConfirmation
();
expect
(
wrapper
.
vm
.
itemToBeDeleted
).
toEqual
(
null
);
});
it
(
'
deleteItemConfirmation emit package:delete
'
,
()
=>
{
wrapper
.
setData
({
itemToBeDeleted
:
{
id
:
2
}
});
wrapper
.
vm
.
deleteItemConfirmation
();
...
...
@@ -179,4 +183,30 @@ describe('packages_list', () => {
expect
(
table
.
classes
()).
toContain
(
'
b-table-stacked-md
'
);
});
});
describe
(
'
tracking
'
,
()
=>
{
let
eventSpy
;
let
utilSpy
;
const
category
=
'
foo
'
;
beforeEach
(()
=>
{
eventSpy
=
jest
.
spyOn
(
Tracking
,
'
event
'
);
utilSpy
=
jest
.
spyOn
(
SharedUtils
,
'
packageTypeToTrackCategory
'
).
mockReturnValue
(
category
);
wrapper
.
setData
({
itemToBeDeleted
:
{
package_type
:
'
conan
'
}
});
});
it
(
'
tracking category calls packageTypeToTrackCategory
'
,
()
=>
{
expect
(
wrapper
.
vm
.
tracking
.
category
).
toBe
(
category
);
expect
(
utilSpy
).
toHaveBeenCalledWith
(
'
conan
'
);
});
it
(
'
deleteItemConfirmation calls event
'
,
()
=>
{
wrapper
.
vm
.
deleteItemConfirmation
();
expect
(
eventSpy
).
toHaveBeenCalledWith
(
category
,
TrackingActions
.
DELETE_PACKAGE
,
expect
.
any
(
Object
),
);
});
});
});
ee/spec/frontend/packages/mock_data.js
View file @
51b98110
...
...
@@ -50,8 +50,6 @@ export const npmFiles = [
},
];
export
const
packageList
=
[
mavenPackage
,
npmPackage
];
export
const
conanPackage
=
{
conan_metadatum
:
{
package_channel
:
'
stable
'
,
...
...
@@ -67,3 +65,5 @@ export const conanPackage = {
updated_at
:
''
,
version
:
'
1.0.0
'
,
};
export
const
packageList
=
[
mavenPackage
,
npmPackage
,
conanPackage
];
ee/spec/frontend/packages/shared/utils_spec.js
0 → 100644
View file @
51b98110
import
{
packageTypeToTrackCategory
}
from
'
ee/packages/shared/utils
'
;
import
{
PackageType
,
TrackingCategories
}
from
'
ee/packages/shared/constants
'
;
describe
(
'
Packages shared utils
'
,
()
=>
{
describe
(
'
packageTypeToTrackCategory
'
,
()
=>
{
it
(
'
prepend UI to package category
'
,
()
=>
{
expect
(
packageTypeToTrackCategory
()).
toMatchInlineSnapshot
(
`"UI::undefined"`
);
});
it
.
each
(
Object
.
keys
(
PackageType
))(
'
returns a correct category string for %s
'
,
packageKey
=>
{
const
packageName
=
PackageType
[
packageKey
];
expect
(
packageTypeToTrackCategory
(
packageName
)).
toBe
(
`UI::
${
TrackingCategories
[
packageName
]}
`
,
);
});
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment