Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
93d7ff4
react app created
Dec 11, 2018
62f9754
working on react app. Currently on registration page
Dec 11, 2018
437b9c6
registration is working
Dec 12, 2018
bf18f74
Logiin seems to be working.
Dec 12, 2018
f830b77
GET request to /api/adv/init is returning a 500 internal server error
Dec 13, 2018
0c2e91d
succesful get request to /api/adv/init on heroku
Dec 13, 2018
31fd66e
I added buttons to call move function and send post request to /api/a…
Dec 13, 2018
2e5efc5
move api call works. Error was caused by not sending the data correctly.
Dec 13, 2018
54dfdf5
Move is working in all directions. Now I need to subscribe to Pusher.
Dec 13, 2018
21e0b94
Working on pusher messages for player moves, and Say function
Dec 13, 2018
c974c63
say function is making api post and receiving response, and state.mes…
Dec 14, 2018
fff1ca4
I logged in with a different user on different browser. say messages …
Dec 14, 2018
769c321
Other players in room are displayed. Movement messages are displayed …
Dec 14, 2018
8decf3f
logout button added
Dec 14, 2018
98d3c5f
Still not able to get movement messages to work. when the broadcast g…
Dec 15, 2018
262090d
Working on styling. Home component created with links to register and…
Dec 16, 2018
5b4716f
created compass arrangement for move buttons
Dec 16, 2018
9e416af
Adding coord map constructin logic to client to try to build the map …
Dec 19, 2018
7b418f3
I've implemented a rudimentary xy coordinate generation system on the…
Dec 20, 2018
0f3af44
coordsList is being passed as prop and updated in Minimap component. …
Dec 20, 2018
3e2f64a
About to try implementing styled-components to render rooms in minima…
Dec 21, 2018
8a1d9d4
I've created a renderRoom function in the MiniMap component to dynami…
Dec 31, 2018
e79fd8c
Minimap rooms render after making change mentioned in previous commit…
Dec 31, 2018
e716970
Rooms render in the MiniMap, but the render is a step behind (out of …
Dec 31, 2018
bc36c76
I'm about to move the Room styled component and renderRoom funtion in…
Jan 1, 2019
6bfeadc
Rooms render at the right time. Problem was caused by using .push ins…
Jan 2, 2019
fe3ff1e
MoveCompass and Messages moved into their own components.
Jan 2, 2019
9db71a4
commit before trying to move to new fork
Jan 3, 2019
46cc189
Current room receives stlying changes in minimap to show movement.
Jan 3, 2019
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
Empty file added .gitignore
Empty file.
23 changes: 23 additions & 0 deletions lambda-mud/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
44 changes: 44 additions & 0 deletions lambda-mud/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.<br>
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.<br>
You will also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.<br>
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.<br>
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.<br>
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).
Loading