Skip to content
New issue

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

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

Already on GitHub? # to your account

Props Migration #159

Merged
merged 2 commits into from
Feb 22, 2023
Merged
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
5 changes: 5 additions & 0 deletions .changeset/chilled-avocados-speak.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'jellycommands': patch
---

add errors to props.get, props.set, props.has to aid in migration
2 changes: 1 addition & 1 deletion docs/guide/migrate/props.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Props API

As of `VERSION` the props api has changed, read this guide to figure out how to change your code.
As of `1.0.0-next.40` the props api has changed, read this guide to figure out how to change your code.

## Add App Types

Expand Down
21 changes: 21 additions & 0 deletions packages/jellycommands/src/JellyCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,27 @@ export class JellyCommands extends Client {
else this.joptions = value;

this.props = options.props || {};

// TODO remove for 1.0
// Makes need for a migration more obvious for those using props api
this.props = {
get() {
throw new Error(
'props.get has been removed, SEE: https://jellycommands.dev/guide/migrate/props.html',
);
},
set() {
throw new Error(
'props.set has been removed, SEE: https://jellycommands.dev/guide/migrate/props.html',
);
},
has() {
throw new Error(
'props.has has been removed, SEE: https://jellycommands.dev/guide/migrate/props.html',
);
},
...this.props,
};
}

async login(potentialToken?: string): Promise<string> {
Expand Down