debian-mirror-gitlab/app/views/layouts/_startup_js.html.haml

37 lines
1.2 KiB
Text
Raw Normal View History

2021-01-03 14:25:43 +05:30
- return unless page_startup_api_calls.present? || page_startup_graphql_calls.present?
2020-07-28 23:09:34 +05:30
2021-02-22 17:27:13 +05:30
= javascript_tag do
2020-07-28 23:09:34 +05:30
:plain
var gl = window.gl || {};
gl.startup_calls = #{page_startup_api_calls.to_json};
2021-01-03 14:25:43 +05:30
gl.startup_graphql_calls = #{page_startup_graphql_calls.to_json};
2020-07-28 23:09:34 +05:30
if (gl.startup_calls && window.fetch) {
Object.keys(gl.startup_calls).forEach(apiCall => {
2020-11-24 15:15:51 +05:30
// fetch wont send cookies in older browsers, unless you set the credentials init option.
// We set to `same-origin` which is default value in modern browsers.
// See https://github.com/whatwg/fetch/pull/585 for more information.
2020-07-28 23:09:34 +05:30
gl.startup_calls[apiCall] = {
2020-11-24 15:15:51 +05:30
fetchCall: fetch(apiCall, { credentials: 'same-origin' })
2020-07-28 23:09:34 +05:30
};
});
}
2021-01-03 14:25:43 +05:30
if (gl.startup_graphql_calls && window.fetch) {
const url = `#{api_graphql_url}`
const opts = {
method: "POST",
headers: { "Content-Type": "application/json", 'X-CSRF-Token': "#{form_authenticity_token}" },
};
gl.startup_graphql_calls = gl.startup_graphql_calls.map(call => ({
2021-01-29 00:20:46 +05:30
...call,
2021-01-03 14:25:43 +05:30
fetchCall: fetch(url, {
...opts,
credentials: 'same-origin',
body: JSON.stringify(call)
})
}))
}