161 lines
4.3 KiB
JavaScript
161 lines
4.3 KiB
JavaScript
import Vue from 'vue';
|
|
import { mapGetters } from 'vuex';
|
|
import errorTrackingStore from '~/error_tracking/store';
|
|
import { parseBoolean } from '~/lib/utils/common_utils';
|
|
import { scrollToTargetOnResize } from '~/lib/utils/resize_observer';
|
|
import IssueApp from './components/app.vue';
|
|
import HeaderActions from './components/header_actions.vue';
|
|
import IncidentTabs from './components/incidents/incident_tabs.vue';
|
|
import SentryErrorStackTrace from './components/sentry_error_stack_trace.vue';
|
|
import { INCIDENT_TYPE, issueState } from './constants';
|
|
import apolloProvider from './graphql';
|
|
import getIssueStateQuery from './queries/get_issue_state.query.graphql';
|
|
|
|
const bootstrapApollo = (state = {}) => {
|
|
return apolloProvider.clients.defaultClient.cache.writeQuery({
|
|
query: getIssueStateQuery,
|
|
data: {
|
|
issueState: state,
|
|
},
|
|
});
|
|
};
|
|
|
|
export function initIncidentApp(issueData = {}) {
|
|
const el = document.getElementById('js-issuable-app');
|
|
|
|
if (!el) {
|
|
return undefined;
|
|
}
|
|
|
|
bootstrapApollo({ ...issueState, issueType: el.dataset.issueType });
|
|
|
|
const {
|
|
canCreateIncident,
|
|
canUpdate,
|
|
iid,
|
|
projectNamespace,
|
|
projectPath,
|
|
projectId,
|
|
slaFeatureAvailable,
|
|
uploadMetricsFeatureAvailable,
|
|
} = issueData;
|
|
|
|
const fullPath = `${projectNamespace}/${projectPath}`;
|
|
|
|
return new Vue({
|
|
el,
|
|
apolloProvider,
|
|
provide: {
|
|
issueType: INCIDENT_TYPE,
|
|
canCreateIncident,
|
|
canUpdate,
|
|
fullPath,
|
|
iid,
|
|
projectId,
|
|
slaFeatureAvailable: parseBoolean(slaFeatureAvailable),
|
|
uploadMetricsFeatureAvailable: parseBoolean(uploadMetricsFeatureAvailable),
|
|
},
|
|
render(createElement) {
|
|
return createElement(IssueApp, {
|
|
props: {
|
|
...issueData,
|
|
descriptionComponent: IncidentTabs,
|
|
showTitleBorder: false,
|
|
},
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
export function initIssueApp(issueData, store) {
|
|
const el = document.getElementById('js-issuable-app');
|
|
|
|
if (!el) {
|
|
return undefined;
|
|
}
|
|
|
|
if (gon?.features?.fixCommentScroll) {
|
|
scrollToTargetOnResize();
|
|
}
|
|
|
|
bootstrapApollo({ ...issueState, issueType: el.dataset.issueType });
|
|
|
|
const { canCreateIncident, ...issueProps } = issueData;
|
|
|
|
return new Vue({
|
|
el,
|
|
apolloProvider,
|
|
store,
|
|
provide: {
|
|
canCreateIncident,
|
|
},
|
|
computed: {
|
|
...mapGetters(['getNoteableData']),
|
|
},
|
|
render(createElement) {
|
|
return createElement(IssueApp, {
|
|
props: {
|
|
...issueProps,
|
|
isConfidential: this.getNoteableData?.confidential,
|
|
isLocked: this.getNoteableData?.discussion_locked,
|
|
issuableStatus: this.getNoteableData?.state,
|
|
id: this.getNoteableData?.id,
|
|
},
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
export function initHeaderActions(store, type = '') {
|
|
const el = document.querySelector('.js-issue-header-actions');
|
|
|
|
if (!el) {
|
|
return undefined;
|
|
}
|
|
|
|
bootstrapApollo({ ...issueState, issueType: el.dataset.issueType });
|
|
|
|
const canCreate =
|
|
type === INCIDENT_TYPE ? el.dataset.canCreateIncident : el.dataset.canCreateIssue;
|
|
|
|
return new Vue({
|
|
el,
|
|
apolloProvider,
|
|
store,
|
|
provide: {
|
|
canCreateIssue: parseBoolean(canCreate),
|
|
canDestroyIssue: parseBoolean(el.dataset.canDestroyIssue),
|
|
canPromoteToEpic: parseBoolean(el.dataset.canPromoteToEpic),
|
|
canReopenIssue: parseBoolean(el.dataset.canReopenIssue),
|
|
canReportSpam: parseBoolean(el.dataset.canReportSpam),
|
|
canUpdateIssue: parseBoolean(el.dataset.canUpdateIssue),
|
|
iid: el.dataset.iid,
|
|
isIssueAuthor: parseBoolean(el.dataset.isIssueAuthor),
|
|
issuePath: el.dataset.issuePath,
|
|
issueType: el.dataset.issueType,
|
|
newIssuePath: el.dataset.newIssuePath,
|
|
projectPath: el.dataset.projectPath,
|
|
projectId: el.dataset.projectId,
|
|
reportAbusePath: el.dataset.reportAbusePath,
|
|
submitAsSpamPath: el.dataset.submitAsSpamPath,
|
|
},
|
|
render: (createElement) => createElement(HeaderActions),
|
|
});
|
|
}
|
|
|
|
export function initSentryErrorStackTrace() {
|
|
const el = document.querySelector('#js-sentry-error-stack-trace');
|
|
|
|
if (!el) {
|
|
return undefined;
|
|
}
|
|
|
|
const { issueStackTracePath } = el.dataset;
|
|
|
|
return new Vue({
|
|
el,
|
|
store: errorTrackingStore,
|
|
render: (createElement) =>
|
|
createElement(SentryErrorStackTrace, { props: { issueStackTracePath } }),
|
|
});
|
|
}
|