2020-05-24 23:13:21 +05:30
|
|
|
import Vue from 'vue';
|
2021-04-17 20:07:23 +05:30
|
|
|
import createFlash from '~/flash';
|
|
|
|
import { __ } from '~/locale';
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
import ExpiresAtField from './components/expires_at_field.vue';
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
const getInputAttrs = (el) => {
|
2021-01-29 00:20:46 +05:30
|
|
|
const input = el.querySelector('input');
|
|
|
|
|
|
|
|
return {
|
|
|
|
id: input.id,
|
|
|
|
name: input.name,
|
2021-04-17 20:07:23 +05:30
|
|
|
value: input.value,
|
2021-01-29 00:20:46 +05:30
|
|
|
placeholder: input.placeholder,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
export const initExpiresAtField = () => {
|
2021-01-29 00:20:46 +05:30
|
|
|
const el = document.querySelector('.js-access-tokens-expires-at');
|
|
|
|
|
|
|
|
if (!el) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const inputAttrs = getInputAttrs(el);
|
|
|
|
|
|
|
|
return new Vue({
|
|
|
|
el,
|
|
|
|
render(h) {
|
|
|
|
return h(ExpiresAtField, {
|
|
|
|
props: {
|
|
|
|
inputAttrs,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
2020-05-24 23:13:21 +05:30
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
export const initProjectsField = () => {
|
|
|
|
const el = document.querySelector('.js-access-tokens-projects');
|
|
|
|
|
|
|
|
if (!el) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const inputAttrs = getInputAttrs(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;
|
|
|
|
};
|