Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/components/UserMessageSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ import UserMessage from './UserMessage';
export function UserMessageSection({ setjsonPathMap, jsonPathMap }) {
return (
<Router>
<Routes>
<Route
render={({ location }) => (
<Routes location={location}>
<Route
// pathId - URL param for directly accessing particular path.
path='/:pathId?'
path='/:pathId? '
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what do we need the space here for?

component={({ match }) => (
<div className={'fade-in-to-right'}>
<UserMessage
Expand All @@ -27,6 +28,7 @@ export function UserMessageSection({ setjsonPathMap, jsonPathMap }) {
</Routes>
)}
/>
</Routes>
</Router>
);
}
4 changes: 3 additions & 1 deletion src/data/ContributionResources/Conventions.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const Convention = {
'user-responses': [
{
name: 'Code Conventions, please.',
Expand All @@ -17,3 +17,5 @@ export default {
gooey: 'Conventions help a lot to keep code readable, even if many different people contribute to it. For what would you like to see our conventions?',
},
};

export default Convention;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Convention;
export default Convention;

41 changes: 21 additions & 20 deletions src/data/ContributionResources/Git.jsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
import ContributionResources from ".";
// import index from "./index";
Copy link
Member

@jdrueckert jdrueckert Feb 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this still required? if not can we remove it?


export default {
'user-responses': [
{
name: 'How to work with Git?',
link: 'http://learngitbranching.js.org/',
},
{
name: 'How to work with forks?',
link: 'https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/working-with-forks'
},
{
name: 'Done. What else should I know about?',
child: ContributionResources,
},
],
'gooey-response': {
gooey: 'New to Git / GitHub? Check this out.',
const Git = {
'user-responses': [
{
name: 'How to work with Git?',
link: 'http://learngitbranching.js.org/',
},
};

{
name: 'How to work with forks?',
link: 'https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/working-with-forks'
},
// {
// name: 'Done. What else should I know about?',
// child: index,
// },
Comment on lines +13 to +16
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this commented out?

],
'gooey-response': {
gooey: 'New to Git / GitHub? Check this out.',
},
};

export default Git;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Git;
export default Git;

39 changes: 20 additions & 19 deletions src/data/ContributionResources/Workspace.jsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
export default {
'user-responses': [
{
name: 'I`m impatient. Give me the quick start!',
link: 'https://github.com/MovingBlocks/Terasology/wiki/Contributor-Quick-Start',
},
{
name: 'I want to learn more about the whole project setup!',
link: 'https://github.com/MovingBlocks/Terasology/wiki/Project-Overview',
},
{
name: 'Done. Now I`m ready to code!',
jump: 'u0u0u3u0'
},
],
'gooey-response': {
gooey: 'Let`s set up your workspace!',
const Workspace = {
'user-responses': [
{
name: 'I`m impatient. Give me the quick start!',
link: 'https://github.com/MovingBlocks/Terasology/wiki/Contributor-Quick-Start',
},
};

{
name: 'I want to learn more about the whole project setup!',
link: 'https://github.com/MovingBlocks/Terasology/wiki/Project-Overview',
},
{
name: 'Done. Now I`m ready to code!',
jump: 'u0u0u3u0'
},
],
'gooey-response': {
gooey: 'Let`s set up your workspace!',
},
};

export default Workspace;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Workspace;
export default Workspace;

4 changes: 3 additions & 1 deletion src/data/ContributionResources/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Conventions from "./Conventions";
import Workspace from "./Workspace";
import Contributor from "../Terasology/Contributor";

export default {
const index = {
'user-responses': [
{
name: 'How do I work with Git / GitHub?',
Expand Down Expand Up @@ -34,3 +34,5 @@ export default {
gooey: "You're a new contributor? Awesome and welcome! How can I help you?",
},
};

export default index;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default index;
export default index;

4 changes: 3 additions & 1 deletion src/data/DestinationSol/About.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const About = {
'user-responses': [
{
name: 'Tell me more',
Expand All @@ -15,3 +15,5 @@ export default {
'Destination Sol is an open-source, free-to-play hardcore arcade/RPG. You start as a pilot of a small fighter ship on the edge of a star system, and you are free to explore the game world, land on planets, fight with enemies, upgrade your ship and equipment, hire mercenaries, mine asteroids, and more.',
},
};

export default About;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default About;
export default About;

4 changes: 3 additions & 1 deletion src/data/DestinationSol/Contributor.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ContributionResources from '../ContributionResources';

export default {
const Contributor = {
'user-responses': [
{
name: 'Show me the prerequisites and resources. ',
Expand Down Expand Up @@ -41,3 +41,5 @@ export default {
gooey: 'Here are some contribution areas..',
},
};

export default Contributor;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Contributor;
export default Contributor;

4 changes: 3 additions & 1 deletion src/data/DestinationSol/Player.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const Player = {
'user-responses': [
{
name: 'No. I wish to download DestinationSol.',
Expand All @@ -14,3 +14,5 @@ export default {
gooey: 'Do you have the game downloaded?',
},
};

export default Player;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Player;
export default Player;

4 changes: 3 additions & 1 deletion src/data/DestinationSol/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import AboutDS from './About';
import Player from './Player';
import Contributor from './Contributor';

export default {
const index = {
'user-responses': [
{
name: 'What is DestinationSol? 🧐',
Expand All @@ -26,3 +26,5 @@ export default {
gooey: 'What about DestinationSol?',
},
};

export default index;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default index;
export default index;

4 changes: 3 additions & 1 deletion src/data/Terasology/About.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Contributor from "./Contributor";
import Player from "./Player";

export default {
const About = {
'user-responses': [
{
name: 'Cool! Tell me more!',
Expand All @@ -25,3 +25,5 @@ export default {
'Terasology is a super extensible open source voxel-based game. Born from a Minecraft-inspired tech demo, it is gradually becoming a stable platform for all sorts of gameplay settings in a voxel world.',
},
};

export default About;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default About;
export default About;

4 changes: 3 additions & 1 deletion src/data/Terasology/Art/2D.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const twoD = {
'user-responses': [
{
name: 'Tell me about Textures.',
Expand All @@ -13,3 +13,5 @@ export default {
gooey: 'Terasology 2D Art is all about block textures, icons and so on.',
},
};

export default twoD;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default twoD;
export default twoD;

4 changes: 3 additions & 1 deletion src/data/Terasology/Art/3D.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const threeD = {
'user-responses': [
{
name: 'Creation of animated models with Blender',
Expand All @@ -9,3 +9,5 @@ export default {
gooey: 'What in 3D Modeling?',
},
};

export default threeD;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default threeD;
export default threeD;

4 changes: 3 additions & 1 deletion src/data/Terasology/Art/Sound.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const Sound = {
'user-responses': [
{
name: 'Video Game Sound Design 101',
Expand All @@ -9,3 +9,5 @@ export default {
gooey: 'Here is a nice resource for Sound Design :)',
},
};

export default Sound;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Sound;
export default Sound;

4 changes: 3 additions & 1 deletion src/data/Terasology/Art/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import TwoD from './2D'
import ThreeD from './3D'
import Sound from './Sound'

export default {
const index = {
'user-responses': [
{
name: 'Show me open tasks related to art',
Expand All @@ -25,3 +25,5 @@ export default {
gooey: 'What type of art would you like to contribute?',
},
};

export default index;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default index;
export default index;

33 changes: 17 additions & 16 deletions src/data/Terasology/Contact.jsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
export default {
'user-responses': [
{
name: "Sounds great, I'd like to chat. Do you have Discord?",
link: 'https://discord.gg/terasology',
},
{
name: "Nice, I'm old school, is there a forum?",
link: 'https://forum.terasology.org/',
}
],
'gooey-response': {
gooey:
'The Terasology community can help you 😉 You only need to ask.',
const Contact = {
'user-responses': [
{
name: "Sounds great, I'd like to chat. Do you have Discord?",
link: 'https://discord.gg/terasology',
},
};

{
name: "Nice, I'm old school, is there a forum?",
link: 'https://forum.terasology.org/',
}
],
'gooey-response': {
gooey:
'The Terasology community can help you 😉 You only need to ask.',
},
};

export default Contact;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Contact;
export default Contact;

4 changes: 3 additions & 1 deletion src/data/Terasology/Contributor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Documentation from './Documentation';
import Design from './Design';
import Contact from './Contact';

export default {
const Contributor = {
'user-responses': [
{
name: "I'm a developer. I code. Where is my coffee? ☕",
Expand All @@ -31,3 +31,5 @@ export default {
gooey: 'So I heard you want to contribute? Tell me who you are and I tell you where to go.',
},
};

export default Contributor;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Contributor;
export default Contributor;

4 changes: 3 additions & 1 deletion src/data/Terasology/Design/index.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const index = {
'user-responses': [
{
name: 'Call me "Bob the Builder" and tell me about in-game structures.',
Expand All @@ -17,3 +17,5 @@ export default {
gooey: 'What would you like to design?',
},
};

export default index;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default index;
export default index;

39 changes: 20 additions & 19 deletions src/data/Terasology/Development/Architecture.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,24 @@ import ECS from "./ECS";
import Engine from "./Engine";
import Modules from "./Modules";

export default {
'user-responses': [
{
name: "Give me the architecture deep dive!",
child: ECS
},
{
name: "I'm interested in the engine.",
child: Engine
},
{
name: "I'm all-in for modularity.",
child: Modules
}
],
'gooey-response': {
gooey: "Terasology mainly consists of an engine and a variety of modules, all based on our core architecture: the Entity-Component-System. About which would you like to learn more?",
const Architechture = {
'user-responses': [
{
name: "Give me the architecture deep dive!",
child: ECS
},
};

{
name: "I'm interested in the engine.",
child: Engine
},
{
name: "I'm all-in for modularity.",
child: Modules
}
],
'gooey-response': {
gooey: "Terasology mainly consists of an engine and a variety of modules, all based on our core architecture: the Entity-Component-System. About which would you like to learn more?",
},
};

export default Architechture;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export default Architechture;
export default Architechture;

Loading