Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for pinned requests #1471

Merged
merged 35 commits into from May 7, 2019
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
5c50c87
Add pinning behavior
develohpanda Apr 25, 2019
c279d9d
add fa-thumb-tack
develohpanda Apr 25, 2019
4675d5b
Merged with develop
develohpanda Apr 25, 2019
dd02a96
Updated package-lock files
develohpanda Apr 26, 2019
5f9514e
Allow only top level request and request group to be pinned
develohpanda Apr 26, 2019
e4f5882
Prevent dnd for pinned request
develohpanda Apr 26, 2019
249a0fa
Efficiency change
develohpanda Apr 26, 2019
e47fe11
Reverted changes
develohpanda Apr 26, 2019
163fc7e
Revert changes to selectors.js
develohpanda Apr 26, 2019
af9075d
Fixed pin and add thumbtack
develohpanda Apr 26, 2019
3465501
Changes
develohpanda Apr 26, 2019
dba476e
Pin styling
develohpanda Apr 27, 2019
76e64a4
Fix overflow bug
develohpanda Apr 27, 2019
e53999b
styling complete
develohpanda Apr 27, 2019
a3238a6
Remove additional style
develohpanda Apr 27, 2019
2b8b950
Updated package-lock.json
develohpanda Apr 27, 2019
b8b9879
Merge branch 'develop' into feature/pinned-request
develohpanda Apr 27, 2019
ee403f9
Mergie
develohpanda Apr 27, 2019
e8079a2
Boolean to boolean
develohpanda Apr 27, 2019
aca9a95
allow nested requests to be pinned
develohpanda Apr 27, 2019
d0232fd
Remove unused arg
develohpanda Apr 27, 2019
6d0d30e
Remove folder pinning functionality
develohpanda Apr 27, 2019
174c1eb
Remove comment
develohpanda Apr 27, 2019
4684fef
Revert change to open tag on group
develohpanda Apr 30, 2019
b1da85f
Render separator with dsiplay: none so that sync menu is in correct p…
develohpanda May 4, 2019
05c8e17
Don't reset parent id on request pin
develohpanda May 4, 2019
2ce8d12
Remove extra checks
develohpanda May 4, 2019
7e6ce57
Move pin filter to selectors to prevent duplicate childTree traversal
develohpanda May 4, 2019
8938e9b
Decouple pinned items from search results
develohpanda May 4, 2019
b18447c
Hide pin on hover
develohpanda May 4, 2019
6ab94d2
Pin keyboard shortcut via shift+ctrl+p
develohpanda May 4, 2019
3fc894e
Typo fix
develohpanda May 4, 2019
278b2fb
Update mac hotkey + activeRequest nullcheck
develohpanda May 4, 2019
3461fb9
Disable drag and drop only for items in the pinned list
develohpanda May 4, 2019
cc394f8
Filter to Find
develohpanda May 6, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
92 changes: 67 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/insomnia-app/app/models/request-group-meta.js
Expand Up @@ -10,6 +10,7 @@ export function init() {
return {
parentId: null,
collapsed: false,
pinned: false,
};
}

Expand Down
1 change: 1 addition & 0 deletions packages/insomnia-app/app/models/request-meta.js
Expand Up @@ -15,6 +15,7 @@ export function init() {
responseFilterHistory: [],
activeResponseId: null,
savedRequestBody: {},
pinned: false,
};
}

Expand Down