Skip to content

Commit

Permalink
69 show the earth on the frontpage 2d map (#94)
Browse files Browse the repository at this point in the history
* feat(frontend): 🚧 WIP leaflet integration

* feat(frontend): 🚧 WIP swap to OpenLayers for better dark light mode and customizing map look

* fix(frontend): 🐛 fix darkmode map implementation

* refactor(frontend): 🔥 remove unused code

* refactor(frontend): 🔥 remove unused import

* feat(frontend): 🚧 wip map styling

* feat(frontend): ✨ add a threejs globe to the frontpage with example satellite data

* feat(frontend): ✨ add satellite amount const and some documentation

* fix(frontend): 🔥 remove bad practice css styling of headers

* feat(frontend): ✨ fetch hypso 1 data and display it, fix nextjs dynamic import

* docs(frontend): 📝 add documentation

* feat: 🚧 WIP add strapi satellite content and fetch celestrak data based on it

* feat(frontend): ✨ fetch satellites from strapi and display them

* fix(backend): 🐛 fix strapi content manager header showing url instead of name

* refactor(frontend): 🚧 wip prepare for pull request

* fix(frontend): 🐛 Fix warning in console from bad next theme install

* fix(frontend): 🐛 fix use client for gsap hero

* feat(frontend): ✨ add example data source and fetch conditionally from example or celestrak

* fix merge issues strapi satellite content type

* fix: 🐛 fix build issue by running gql codegen

* refactor: 🔥 remove unused packages
  • Loading branch information
Magnus Strømseng authored and GitHub committed Feb 20, 2024
1 parent fd316a7 commit 50e930f
Show file tree
Hide file tree
Showing 16 changed files with 14,983 additions and 55 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"info": {
"singularName": "satellite",
"pluralName": "satellites",
"displayName": "Satellite"
"displayName": "Satellite",
"description": ""
},
"options": {
"draftAndPublish": true
Expand All @@ -19,6 +20,9 @@
"relation": "manyToMany",
"target": "api::project.project",
"mappedBy": "satellites"
},
"celestrakURL": {
"type": "string"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"x-generation-date": "2024-02-19T13:10:50.248Z"
"x-generation-date": "2024-02-19T16:55:40.105Z"
},
"x-strapi-config": {
"path": "/documentation",
Expand Down Expand Up @@ -4728,6 +4728,9 @@
}
}
},
"celestrakURL": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
Expand Down Expand Up @@ -5018,6 +5021,9 @@
],
"example": "string or id"
}
},
"celestrakURL": {
"type": "string"
}
}
}
Expand Down Expand Up @@ -5133,6 +5139,9 @@
}
}
},
"celestrakURL": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
Expand Down Expand Up @@ -5864,6 +5873,9 @@
}
}
},
"celestrakURL": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
Expand Down
2 changes: 2 additions & 0 deletions backend/types/generated/contentTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1005,6 +1005,7 @@ export interface ApiSatelliteSatellite extends Schema.CollectionType {
singularName: 'satellite';
pluralName: 'satellites';
displayName: 'Satellite';
description: '';
};
options: {
draftAndPublish: true;
Expand All @@ -1016,6 +1017,7 @@ export interface ApiSatelliteSatellite extends Schema.CollectionType {
'manyToMany',
'api::project.project'
>;
celestrakURL: Attribute.String;
createdAt: Attribute.DateTime;
updatedAt: Attribute.DateTime;
publishedAt: Attribute.DateTime;
Expand Down
Loading

0 comments on commit 50e930f

Please sign in to comment.