182 lines
4.3 KiB
JavaScript
182 lines
4.3 KiB
JavaScript
import Vue from 'vue';
|
|
|
|
import createFlash from '~/flash';
|
|
import { convertObjectPropsToCamelCase } from '~/lib/utils/common_utils';
|
|
import { parseRailsFormFields } from '~/lib/utils/forms';
|
|
import { __, sprintf } from '~/locale';
|
|
|
|
import AccessTokenTableApp from './components/access_token_table_app.vue';
|
|
import ExpiresAtField from './components/expires_at_field.vue';
|
|
import NewAccessTokenApp from './components/new_access_token_app.vue';
|
|
import TokensApp from './components/tokens_app.vue';
|
|
import { FEED_TOKEN, INCOMING_EMAIL_TOKEN, STATIC_OBJECT_TOKEN } from './constants';
|
|
|
|
export const initAccessTokenTableApp = () => {
|
|
const el = document.querySelector('#js-access-token-table-app');
|
|
|
|
if (!el) {
|
|
return null;
|
|
}
|
|
|
|
const {
|
|
accessTokenType,
|
|
accessTokenTypePlural,
|
|
initialActiveAccessTokens: initialActiveAccessTokensJson,
|
|
noActiveTokensMessage: noTokensMessage,
|
|
} = el.dataset;
|
|
|
|
// Default values
|
|
const noActiveTokensMessage =
|
|
noTokensMessage ||
|
|
sprintf(__('This user has no active %{accessTokenTypePlural}.'), { accessTokenTypePlural });
|
|
const showRole = 'showRole' in el.dataset;
|
|
|
|
const initialActiveAccessTokens = convertObjectPropsToCamelCase(
|
|
JSON.parse(initialActiveAccessTokensJson),
|
|
{
|
|
deep: true,
|
|
},
|
|
);
|
|
|
|
return new Vue({
|
|
el,
|
|
name: 'AccessTokenTableRoot',
|
|
provide: {
|
|
accessTokenType,
|
|
accessTokenTypePlural,
|
|
initialActiveAccessTokens,
|
|
noActiveTokensMessage,
|
|
showRole,
|
|
},
|
|
render(h) {
|
|
return h(AccessTokenTableApp);
|
|
},
|
|
});
|
|
};
|
|
|
|
export const initExpiresAtField = () => {
|
|
const el = document.querySelector('.js-access-tokens-expires-at');
|
|
|
|
if (!el) {
|
|
return null;
|
|
}
|
|
|
|
const { expiresAt: inputAttrs } = parseRailsFormFields(el);
|
|
const { minDate, maxDate } = el.dataset;
|
|
|
|
return new Vue({
|
|
el,
|
|
render(h) {
|
|
return h(ExpiresAtField, {
|
|
props: {
|
|
inputAttrs,
|
|
minDate: minDate ? new Date(minDate) : undefined,
|
|
maxDate: maxDate ? new Date(maxDate) : undefined,
|
|
},
|
|
});
|
|
},
|
|
});
|
|
};
|
|
|
|
export const initNewAccessTokenApp = () => {
|
|
const el = document.querySelector('#js-new-access-token-app');
|
|
|
|
if (!el) {
|
|
return null;
|
|
}
|
|
|
|
const { accessTokenType } = el.dataset;
|
|
|
|
return new Vue({
|
|
el,
|
|
name: 'NewAccessTokenRoot',
|
|
provide: {
|
|
accessTokenType,
|
|
},
|
|
render(h) {
|
|
return h(NewAccessTokenApp);
|
|
},
|
|
});
|
|
};
|
|
|
|
export const initProjectsField = () => {
|
|
const el = document.querySelector('.js-access-tokens-projects');
|
|
|
|
if (!el) {
|
|
return null;
|
|
}
|
|
|
|
const { projects: inputAttrs } = parseRailsFormFields(el);
|
|
|
|
if (window.gon.features.personalAccessTokensScopedToProjects) {
|
|
return new Promise((resolve) => {
|
|
Promise.all([
|
|
import('./components/projects_field.vue'),
|
|
import('vue-apollo'),
|
|
import('~/lib/graphql'),
|
|
])
|
|
.then(
|
|
([
|
|
{ default: ProjectsField },
|
|
{ default: VueApollo },
|
|
{ default: createDefaultClient },
|
|
]) => {
|
|
const apolloProvider = new VueApollo({
|
|
defaultClient: createDefaultClient(),
|
|
});
|
|
|
|
Vue.use(VueApollo);
|
|
|
|
resolve(
|
|
new Vue({
|
|
el,
|
|
apolloProvider,
|
|
render(h) {
|
|
return h(ProjectsField, {
|
|
props: {
|
|
inputAttrs,
|
|
},
|
|
});
|
|
},
|
|
}),
|
|
);
|
|
},
|
|
)
|
|
.catch(() => {
|
|
createFlash({
|
|
message: __(
|
|
'An error occurred while loading the access tokens form, please try again.',
|
|
),
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
export const initTokensApp = () => {
|
|
const el = document.getElementById('js-tokens-app');
|
|
|
|
if (!el) return false;
|
|
|
|
const tokensData = convertObjectPropsToCamelCase(JSON.parse(el.dataset.tokensData), {
|
|
deep: true,
|
|
});
|
|
|
|
const tokenTypes = {
|
|
[FEED_TOKEN]: tokensData[FEED_TOKEN],
|
|
[INCOMING_EMAIL_TOKEN]: tokensData[INCOMING_EMAIL_TOKEN],
|
|
[STATIC_OBJECT_TOKEN]: tokensData[STATIC_OBJECT_TOKEN],
|
|
};
|
|
|
|
return new Vue({
|
|
el,
|
|
provide: {
|
|
tokenTypes,
|
|
},
|
|
render(createElement) {
|
|
return createElement(TokensApp);
|
|
},
|
|
});
|
|
};
|