-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add link to ship page (#19) #71
Open
jan-krueger
wants to merge
5
commits into
dolkensp:release
Choose a base branch
from
starcitizendotguide:feature-ship-link
base: release
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1a9f3d3
add link to ship page (#19)
jan-krueger 98d42a2
switch to axis because request is deprecated
jan-krueger 99ae916
add fleetyard links
jan-krueger 7b6c22b
find missig fleetyard links for special edition ships
jan-krueger 1030379
undo fleetyard changes
jan-krueger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
const fs = require('fs'); | ||
const axios = require('axios'); | ||
|
||
const URL = 'https://robertsspaceindustries.com/ship-matrix/index' | ||
const fields = { | ||
'name': 'name', | ||
'url': 'url', | ||
'thumbnail': 'media.0.images.heap_infobox' | ||
}; | ||
|
||
axios.get(URL) | ||
.then((response) => { | ||
let parsedBody = response.data; | ||
|
||
if(parsedBody.success === 1) { | ||
let ships = parsedBody.data; | ||
|
||
let processedShips = []; | ||
for(let i = 0; i < ships.length; i++) { | ||
let ship = ships[i]; | ||
let data = {}; | ||
|
||
for (let key in fields) { | ||
let path = fields[key].split('.'); | ||
let current = ship; | ||
for (let j = 0; j < path.length; j++) { | ||
current = current[path[j]]; | ||
} | ||
data[key] = current; | ||
} | ||
|
||
processedShips.push(data); | ||
} | ||
console.log("Fetched %d ships and vehicles", processedShips.length); | ||
|
||
const content = 'var HangarXPLOR = HangarXPLOR || {};' | ||
+ '\n\n' | ||
+ 'HangarXPLOR._ships = ' + JSON.stringify(processedShips, null, '\t'); | ||
fs.writeFile('src/web_resources/HangarXPLOR.Ships.js', content, "utf-8", function (error) { | ||
if (error) { | ||
console.error("Failed to write the 'HangarXPLOR.Ships.js' file", error); | ||
}; | ||
console.log("Successfully created the 'HangarXPLOR.Ships.js' file"); | ||
}); | ||
} | ||
}) | ||
.catch(error => { | ||
if(error) { | ||
console.log(error); | ||
return; | ||
} | ||
if(error.response.status !== 200) { | ||
console.error("Failed to fetch the ship matrix because it returned a non 200 status code. Status code: ", error.response.status); | ||
return; | ||
} | ||
|
||
console.log("Failed because an error occured: ", error); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this idea, but I'll have to double check the sort works as required.
The actual order of the items in the list is important - you generally need variants to appear BEFORE the base versions so that the replacement logic works.