Commit graph

260 commits

Author SHA1 Message Date
renovate[bot]
fe963b3a11 build(devtools): update angular-framework (rangle/angular-devtools#193)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-26 10:50:24 -07:00
renovate[bot]
599dfaa8d6 build(devtools): update angular-cli (rangle/angular-devtools#192)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-26 10:39:45 -07:00
renovate[bot]
35560226fd build(devtools): update angular-components to ~9.2.0 (rangle/angular-devtools#194)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-26 10:39:05 -07:00
Renovate Bot
d0c3130726 build(devtools): update angular-framework 2020-03-25 11:25:27 -04:00
renovate[bot]
0c60e7c999 build(devtools): update angular-cli (rangle/angular-devtools#188)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-03-25 07:15:44 -07:00
Renovate Bot
05905f7d88 build(devtools): update angular-cli 2020-03-24 11:47:26 -04:00
Renovate Bot
509d3c1408 build(devtools): update angular-framework 2020-03-24 10:29:41 -04:00
mgechev
30fff3fc24 ci(devtools): enable protocol tests 2020-03-23 21:24:27 -07:00
mgechev
701b8b0431 test(devtools): fix an issue and introduce tests for the priority aware message bus 2020-03-23 21:24:27 -07:00
mgechev
ae6acce53e fix(devtools): highlighting of newly added nodes
This PR also simplifies the imperative ordering of async methods. It moves the logic into a generic abstraction `PriorityAwareMessageBus`.
2020-03-23 21:24:27 -07:00
AleksanderBodurri
74eb888efe feat(devtools): create ConsoleReferenceNode interface to fix typing issues in selected-component.ts 2020-03-23 17:41:52 -07:00
AleksanderBodurri
8b9181724b feat(devtools): only show console reference for the currently selected element to reduce noise 2020-03-23 17:41:52 -07:00
AleksanderBodurri
4df2b2b91e refactor(devtools): type node properly; simplify logic in select-component.ts 2020-03-23 17:41:52 -07:00
AleksanderBodurri
a8ba83cd30 fix(devtools): fix tests and leave todo related to possible typing refactor 2020-03-23 17:41:52 -07:00
AleksanderBodurri
60a4e56a95 feat(devtools): apply style to console reference keys displayed on nodes 2020-03-23 17:41:52 -07:00
AleksanderBodurri
a25cd0ed15 feat(devtools): show the console reference key on each selected element 2020-03-23 17:41:52 -07:00
AleksanderBodurri
4120c551e8 fix(devtools): catch selection edge cases for selecting the same node and selecting a node already in the array 2020-03-23 17:41:52 -07:00
AleksanderBodurri
1d55622f3a feat(devtools): implement component selection functionality for $ng0 - $ng4 similarly to how chrome devtools does with html elements 2020-03-23 17:41:52 -07:00
AleksanderBodurri
0b5e892d84 build(devtools): enable no-unused-variable lint check with warning severity 2020-03-23 17:41:10 -07:00
AleksanderBodurri
a6148608c3 feat(devtools): open expansion panels by default; apply styling to expansion header 2020-03-22 19:59:30 -07:00
AleksanderBodurri
11c1cb01f7 refactor(devtools): replace label arrays with sets because Set.has is much faster than Array.includes 2020-03-22 19:59:30 -07:00
AleksanderBodurri
789c872ada refactor(devtools): type propPointer and drag event properly 2020-03-22 19:59:30 -07:00
AleksanderBodurri
95dcad328f refactor(devtools): clean up directive property resolver methods 2020-03-22 19:59:30 -07:00
AleksanderBodurri
820ec85ea4 fix(devtools): pass property updates to the correct data sources 2020-03-22 19:59:30 -07:00
AleksanderBodurri
3a6b5b0bd9 refactor(devtools): remove old unused methods from property tab body, client event subscribers, and directive property resolver 2020-03-22 19:59:30 -07:00
AleksanderBodurri
d0a1773175 feat(devtools): implement material expansion panel with drag functionality for each property tree 2020-03-22 19:59:30 -07:00
AleksanderBodurri
6d0c4093c2 feat(devtools): pass each datasource through to it's own material tree component 2020-03-22 19:59:30 -07:00
AleksanderBodurri
2d34a209a6 feat(devtools): create seperate property data sources for inputs/outputs/state 2020-03-22 19:59:30 -07:00
AleksanderBodurri
8ea84d5776 feat(devtools): implement input/output/state preview functionality with the reworked property explorer 2020-03-22 19:59:30 -07:00
AleksanderBodurri
39b65dd05a refactor(devtools): organize property explorer components 2020-03-22 19:59:30 -07:00
AleksanderBodurri
f8bb080157 feat(devtools): pass input/output data through from application to devtools UI 2020-03-22 19:59:30 -07:00
Renovate Bot
d4c86ff059 build(devtools): update dependency jasmine-spec-reporter to v5 2020-03-22 09:18:04 -07:00
Sumit Arora
3d19ebf3a1 fix(devtools): added more padding to treegraph 2020-03-22 12:14:05 -04:00
mgechev
4b40752cb9 refactor(devtools): type safe serialization 2020-03-22 03:59:27 -04:00
mgechev
b127cdc211 fix(devtools): prevent race condition between getting nested props and refresh 2020-03-21 19:09:12 -07:00
mgechev
b010784b21 fix(devtools): do not expand HTML Comments and preserve state for selected nodes 2020-03-21 19:09:12 -07:00
mgechev
5f5307e610 fix(devtools): flicker properties when update selected node
Fix rangle/angular-devtools#171

The PR includes few changes:
1. Fixes a race condition between two competing async calls
2. Simplifies the message bus, now we have one method for getting the component tree instead of one for getting the component tree and another for getting properties. Similarly to GraphQL we send a query for exactly what we need.
3. Fixes the way we update properties in the UI once we receive new items
2020-03-21 19:09:12 -07:00
Renovate Bot
93ad6b5266 build(devtools): update dependency prettier to v2 2020-03-21 18:54:31 -07:00
Renovate Bot
2753cd1c9c build(devtools): update dependency ts-node to ~8.8.0 2020-03-21 18:54:14 -07:00
Sumit Arora
ee7d8e58c6 feat(devtools): making small frames clickable 2020-03-21 18:53:56 -07:00
Renovate Bot
290afbb5c0 build(devtools): update angular-framework 2020-03-21 09:01:00 -07:00
mgechev
60cc2d8fc0 fix(devtools): proper typings in shell-chrome for strictNullChecks 2020-03-20 16:05:53 -07:00
Renovate Bot
9c7cacde84 build(devtools): update angular-cli 2020-03-20 14:07:30 -07:00
Minko Gechev
6a6059d2b1 build(devtools): enable strictNullChecks (rangle/angular-devtools#167) 2020-03-20 11:54:37 -07:00
Renovate Bot
c1e55752a1 build(devtools): update dependency @types/chrome to ^0.0.101 2020-03-19 19:15:50 -07:00
Renovate Bot
a58f15d763 build(devtools): update dependency ts-node to ~8.7.0 2020-03-19 19:15:39 -07:00
Sumit Arora
75cb030a84 feat(devtools): adding bar chart for timeline 2020-03-19 19:15:07 -07:00
Renovate Bot
75590e6c07 build(devtools): update angular-framework 2020-03-19 19:14:19 -07:00
mgechev
14e51e8875 test(devtools): verify that the app can select elements with the same name 2020-03-19 21:17:26 -04:00
mgechev
f6c9f4cc0e ci(devtools): run ngcc on postinstall synchronously 2020-03-19 21:17:26 -04:00