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 => {
|
2021-11-18 22:05:49 +05:30
|
|
|
|
gl.startup_calls[apiCall] = {
|
|
|
|
|
fetchCall: fetch(apiCall, {
|
|
|
|
|
// Emulate XHR for Rails AJAX request checks
|
|
|
|
|
headers: {
|
|
|
|
|
'X-Requested-With': 'XMLHttpRequest'
|
|
|
|
|
},
|
|
|
|
|
// fetch won’t 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.
|
|
|
|
|
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) {
|
2021-11-18 22:05:49 +05:30
|
|
|
|
const headers = #{page_startup_graphql_headers.to_json};
|
2021-01-03 14:25:43 +05:30
|
|
|
|
const url = `#{api_graphql_url}`
|
|
|
|
|
|
|
|
|
|
const opts = {
|
|
|
|
|
method: "POST",
|
2021-11-18 22:05:49 +05:30
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
...headers,
|
|
|
|
|
}
|
2021-01-03 14:25:43 +05:30
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
})
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
|