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
eadb8489
Commit
eadb8489
authored
Oct 13, 2021
by
Brandon Labuschagne
Committed by
Jacques Erasmus
Oct 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace Contribution Analytics bootstrap dropdown with Vue component
parent
efe2bedd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
145 additions
and
18 deletions
+145
-18
ee/app/assets/javascripts/analytics/contribution_analytics/components/date_selector.vue
...ytics/contribution_analytics/components/date_selector.vue
+36
-0
ee/app/assets/javascripts/analytics/contribution_analytics/constants.js
...javascripts/analytics/contribution_analytics/constants.js
+20
-0
ee/app/assets/javascripts/analytics/contribution_analytics/contribution_analytics_bundle.js
...s/contribution_analytics/contribution_analytics_bundle.js
+20
-0
ee/app/views/groups/contribution_analytics/show.html.haml
ee/app/views/groups/contribution_analytics/show.html.haml
+3
-18
ee/spec/frontend/analytics/contribution_analytics/components/date_selector_spec.js
...s/contribution_analytics/components/date_selector_spec.js
+66
-0
No files found.
ee/app/assets/javascripts/analytics/contribution_analytics/components/date_selector.vue
0 → 100644
View file @
eadb8489
<
script
>
import
{
GlSegmentedControl
}
from
'
@gitlab/ui
'
;
import
{
mergeUrlParams
,
redirectTo
,
getParameterByName
}
from
'
~/lib/utils/url_utility
'
;
import
{
DATE_OPTIONS
}
from
'
../constants
'
;
export
default
{
name
:
'
DateSelector
'
,
dateOptions
:
DATE_OPTIONS
,
components
:
{
GlSegmentedControl
,
},
inject
:
{
path
:
{
default
:
''
,
},
},
data
()
{
return
{
selectedDateOption
:
getParameterByName
(
'
start_date
'
)
||
DATE_OPTIONS
[
0
].
value
,
};
},
methods
:
{
loadPageWithDate
(
date
)
{
redirectTo
(
mergeUrlParams
({
start_date
:
date
},
this
.
path
));
},
},
};
</
script
>
<
template
>
<gl-segmented-control
:checked=
"selectedDateOption"
:options=
"$options.dateOptions"
@
change=
"loadPageWithDate"
/>
</
template
>
ee/app/assets/javascripts/analytics/contribution_analytics/constants.js
View file @
eadb8489
import
dateFormat
from
'
dateformat
'
;
import
{
dateFormats
}
from
'
~/analytics/shared/constants
'
;
import
{
getDateInPast
,
nMonthsBefore
}
from
'
~/lib/utils/datetime_utility
'
;
import
{
s__
}
from
'
~/locale
'
;
export
const
CHART_HEIGHT
=
350
;
export
const
CHART_HEIGHT
=
350
;
export
const
INNER_CHART_HEIGHT
=
200
;
export
const
INNER_CHART_HEIGHT
=
200
;
export
const
CHART_X_AXIS_ROTATE
=
45
;
export
const
CHART_X_AXIS_ROTATE
=
45
;
export
const
CHART_X_AXIS_NAME_TOP_PADDING
=
55
;
export
const
CHART_X_AXIS_NAME_TOP_PADDING
=
55
;
export
const
DATE_OPTIONS
=
[
{
text
:
s__
(
'
ContributionAnalytics|Last week
'
),
value
:
dateFormat
(
getDateInPast
(
new
Date
(),
7
),
dateFormats
.
isoDate
),
},
{
text
:
s__
(
'
ContributionAnalytics|Last month
'
),
value
:
dateFormat
(
nMonthsBefore
(
new
Date
(),
1
),
dateFormats
.
isoDate
),
},
{
text
:
s__
(
'
ContributionAnalytics|Last 3 months
'
),
value
:
dateFormat
(
nMonthsBefore
(
new
Date
(),
3
),
dateFormats
.
isoDate
),
},
];
ee/app/assets/javascripts/analytics/contribution_analytics/contribution_analytics_bundle.js
View file @
eadb8489
...
@@ -2,6 +2,7 @@ import { sortBy } from 'lodash';
...
@@ -2,6 +2,7 @@ import { sortBy } from 'lodash';
import
Vue
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
{
__
}
from
'
~/locale
'
;
import
{
__
}
from
'
~/locale
'
;
import
ColumnChart
from
'
./components/column_chart.vue
'
;
import
ColumnChart
from
'
./components/column_chart.vue
'
;
import
DateSelector
from
'
./components/date_selector.vue
'
;
const
sortByValue
=
(
data
)
=>
sortBy
(
data
,
(
item
)
=>
item
[
1
]).
reverse
();
const
sortByValue
=
(
data
)
=>
sortBy
(
data
,
(
item
)
=>
item
[
1
]).
reverse
();
...
@@ -29,6 +30,25 @@ export default (dataEl) => {
...
@@ -29,6 +30,25 @@ export default (dataEl) => {
});
});
});
});
const
dateSelectorEl
=
document
.
querySelector
(
'
.js-contribution-analytics-date-selector
'
);
if
(
dateSelectorEl
)
{
const
{
path
}
=
dateSelectorEl
.
dataset
;
// eslint-disable-next-line no-new
new
Vue
({
el
:
dateSelectorEl
,
components
:
{
DateSelector
,
},
provide
:
{
path
,
},
render
(
h
)
{
return
h
(
DateSelector
);
},
});
}
const
pushesEl
=
document
.
getElementById
(
'
js_pushes_chart_vue
'
);
const
pushesEl
=
document
.
getElementById
(
'
js_pushes_chart_vue
'
);
if
(
allValuesEmpty
(
formattedData
.
push
))
{
if
(
allValuesEmpty
(
formattedData
.
push
))
{
// eslint-disable-next-line no-new
// eslint-disable-next-line no-new
...
...
ee/app/views/groups/contribution_analytics/show.html.haml
View file @
eadb8489
...
@@ -5,24 +5,9 @@
...
@@ -5,24 +5,9 @@
%h3
%h3
=
_
(
'Contribution Analytics'
)
=
_
(
'Contribution Analytics'
)
.sub-header-block
.sub-header-block.gl-display-flex.gl-justify-content-space-between.gl-align-items-center
.float-right
=
s_
(
'ContributionAnalytics|Contribution analytics for issues, merge requests and push events since %{start_date}'
)
%
{
start_date:
@start_date
}
.dropdown.inline
.js-contribution-analytics-date-selector
{
data:
{
path:
group_contribution_analytics_path
}
}
%button
.gl-button.dropdown-toggle.btn.gl-text-gray-500
{
type:
'button'
,
'data-toggle'
=>
'dropdown'
}
=
sprite_icon
(
'calendar'
)
%b
.caret
%ul
.dropdown-menu.dropdown-menu-right
%li
=
link_to
group_contribution_analytics_path
(
@group
,
start_date:
Date
.
today
-
1
.
week
)
do
=
s_
(
'ContributionAnalytics|Last week'
)
%li
=
link_to
group_contribution_analytics_path
(
@group
,
start_date:
Date
.
today
-
1
.
month
)
do
=
s_
(
'ContributionAnalytics|Last month'
)
%li
=
link_to
group_contribution_analytics_path
(
@group
,
start_date:
Date
.
today
-
3
.
months
)
do
=
s_
(
'ContributionAnalytics|Last 3 months'
)
.oneline
=
s_
(
'ContributionAnalytics|Contribution analytics for issues, merge requests and push events since %{start_date}'
)
%
{
start_date:
@start_date
}
%div
{
data:
{
qa_selector:
'push_content'
}
}
%div
{
data:
{
qa_selector:
'push_content'
}
}
%h3
=
_
(
'Pushes'
)
%h3
=
_
(
'Pushes'
)
...
...
ee/spec/frontend/analytics/contribution_analytics/components/date_selector_spec.js
0 → 100644
View file @
eadb8489
import
{
GlSegmentedControl
}
from
'
@gitlab/ui
'
;
import
{
useMockLocationHelper
}
from
'
helpers/mock_window_location_helper
'
;
import
*
as
urlUtils
from
'
~/lib/utils/url_utility
'
;
import
{
shallowMountExtended
}
from
'
helpers/vue_test_utils_helper
'
;
import
DateSelector
from
'
ee/analytics/contribution_analytics/components/date_selector.vue
'
;
import
{
DATE_OPTIONS
}
from
'
ee/analytics/contribution_analytics/constants
'
;
const
path
=
'
http://path.path
'
;
describe
(
'
DateSelector
'
,
()
=>
{
let
wrapper
;
const
createComponent
=
()
=>
{
wrapper
=
shallowMountExtended
(
DateSelector
,
{
provide
:
{
path
,
},
});
};
const
findSegmentControl
=
()
=>
wrapper
.
findComponent
(
GlSegmentedControl
);
afterEach
(()
=>
{
wrapper
.
destroy
();
});
it
(
'
displays the segmented control component
'
,
()
=>
{
createComponent
();
expect
(
findSegmentControl
().
exists
()).
toBe
(
true
);
});
it
(
'
contains the correct segmented control items
'
,
()
=>
{
createComponent
();
expect
(
findSegmentControl
().
props
(
'
options
'
)).
toEqual
(
DATE_OPTIONS
);
});
describe
(
'
on item click
'
,
()
=>
{
useMockLocationHelper
();
beforeEach
(()
=>
{
jest
.
spyOn
(
urlUtils
,
'
getParameterByName
'
).
mockReturnValue
(
'
1234
'
);
createComponent
();
});
it
.
each
(
DATE_OPTIONS
)(
'
redirects to the correct URL
'
,
({
value
})
=>
{
const
spy
=
jest
.
spyOn
(
urlUtils
,
'
redirectTo
'
);
findSegmentControl
().
vm
.
$emit
(
'
change
'
,
value
);
expect
(
spy
).
toHaveBeenCalledWith
(
`
${
path
}
?start_date=
${
value
}
`
);
});
});
describe
.
each
(
DATE_OPTIONS
)(
'
default selected option
'
,
({
value
})
=>
{
beforeEach
(()
=>
{
jest
.
spyOn
(
urlUtils
,
'
getParameterByName
'
).
mockReturnValue
(
value
);
createComponent
();
});
it
(
'
sets the correct selected option
'
,
()
=>
{
expect
(
findSegmentControl
().
props
(
'
checked
'
)).
toBe
(
value
);
});
});
});
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