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

Update field_userenum.ts #9654

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
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
14 changes: 13 additions & 1 deletion pxtblocks/fields/field_userenum.ts
Expand Up @@ -21,6 +21,18 @@ namespace pxtblockly {
}

doClassValidation_(value: any) {
// The format of the name is 10mem where "10" is the value and "mem" is the enum member
if (this.sourceBlock_ && this.sourceBlock_.workspace) {
jp-96 marked this conversation as resolved.
Show resolved Hide resolved
const options = this.sourceBlock_.workspace.getVariablesOfType(this.opts.name);
options.some(model => {
const [name, ] = parseName(model);
if (name == value) {
value = model.name
return true
}
return false
});
jp-96 marked this conversation as resolved.
Show resolved Hide resolved
}
// update cached option list when adding a new kind
if (this.opts?.initialMembers && !this.opts.initialMembers.find(el => el == value)) this.getOptions();
return super.doClassValidation_(value);
Expand Down Expand Up @@ -169,4 +181,4 @@ namespace pxtblockly {
}
return undefined;
}
}
}