Skip to content

Commit 5785561

Browse files
committed
conflicts resolved
2 parents 1155e8b + dcc04ea commit 5785561

File tree

15 files changed

+37
-113
lines changed

15 files changed

+37
-113
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# React-Lucid
22
A React-GraphQL developer tool.
33

4-
![Alt text](public/assets/lucidlogo-text.png?raw=true "Title")
4+
![Alt text](public/assets/logo-text.png?raw=true "Title")
55

66
React-Lucid is a React / GraphQL DevTool designed for helping developers debug their React applications that depend on GraphQL resources more efficiently. React-Lucid allows you to visualize the component hierarchy of your React application and your GraphQL schema, queries, and mutations side by side, making development a breeze.
77

@@ -37,8 +37,22 @@ React-Lucid is a React / GraphQL DevTool designed for helping developers debug t
3737
5. Have fun!
3838

3939
### GraphQL View
40+
In the graphql panel of our devtool you'll be able to see all the previous request that you have made after you have open our devtool. If you want to see the request that are made when your page is loaded make sure you reload your page after you have open our devtool.
41+
42+
## Show GIF display the req and response and how the JSON viewer works
43+
44+
You will have access to a request log on the left where you will all the previous request you've made, you can click on this logs to view previous responses. At the bottom of the panel you'll also have access to your app's schema.
45+
46+
## Panel GIF showing previous request
4047

4148
### Component Tree View
49+
In our component tree panel you will see a tree hierarchy of your application with options to filter out a few components fromm your tree.
50+
51+
## GIF showing the how to fliter tree
52+
53+
on the left of the panel you will see a box the shows the state and props of any component you hover over the tree and also what is different in your state when you make a setState.
54+
55+
## Panel GIF showing how the tree opens and GIF showing how the hover works and showing the diff panel
4256

4357
## Contributing
4458

build/logo.png

59.8 KB
Loading

build/webpack-bundle.js

Lines changed: 0 additions & 38 deletions
Large diffs are not rendered by default.

build/webpack-bundle.js.map

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Loading
Loading
371 KB
Loading

public/graphql.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#graphql-container {
22
width: 75%;
3-
/* border: 1px solid #f2f2f2; */
4-
/* border-radius: 5px; */
53
margin-left: 20px;
64
min-height: 600px;
75
}
@@ -16,8 +14,11 @@
1614
}
1715

1816
#graphql-res {
19-
width: 50%;
17+
background-color: rgba(214, 214, 214, 0.4);
18+
border: 1px solid rgba(0, 0, 0, 0.3);
19+
border-radius: 5px;
2020
padding: 10px;
21+
margin-bottom: 10px;
2122
}
2223

2324
#graphql-schema {

public/log-container.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
margin: 15px;
2222
background-color: rgba(255, 255, 255);
2323
/* transition: box-shadow .1s; */
24+
cursor: pointer;
2425
box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
2526
0 5px 15px 0 rgba(0,0,0,0.08);
2627
margin-bottom: 15px;

src/components/GraphQLRequest.js

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)