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

DOCS-3695, DOCS-3401: Add to dependency, validate, and reconfigure info #4089

Merged
merged 8 commits into from
Mar 21, 2025

Conversation

JessamyT
Copy link
Collaborator

@JessamyT JessamyT commented Mar 15, 2025

Incremental; still considering a dependencies how-to or similar
@penguinland Mind reviewing the Go part? Edit: adding @martha-johnston per offline discussion
@michaellee1019 for Python part (or any other thoughts)

https://deploy-preview-4089--viam-docs.netlify.app/operate/get-started/other-hardware/#implement-the-component-api

@viambot viambot added the safe to build This pull request is marked safe to build from a trusted zone label Mar 15, 2025
Copy link

netlify bot commented Mar 15, 2025

Deploy Preview for viam-docs ready!

Name Link
🔨 Latest commit 8ead039
🔍 Latest deploy log https://app.netlify.com/sites/viam-docs/deploys/67ddeeecfc12ed0008b9b3a2
😎 Deploy Preview https://deploy-preview-4089--viam-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 29 (🟢 up 2 from production)
Accessibility: 100 (no change from production)
Best Practices: 100 (no change from production)
SEO: 92 (no change from production)
PWA: 70 (no change from production)
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Member

@penguinland penguinland left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤷 LPlausibleTM. Without Reconfigure(), I'd store values from the config in the component itself in its constructor, rather than when validating the config. but I don't know what's typical on that front.

If you do not implement a `Reconfigure` function (see next step), your `Validate` function should also do the following:

- Get any values from the `config` object that the user has configured.
- Assign default values as necessary to any optional attributes if the user hasn't configured them.<br><br>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suspect this will work, but personally I think having side effects in Validate() is surprising. I'd put this part in the component's constructor (newMyModularCamera() or whatever it's called). but I don't know what other folks typically do.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

agreed. If reconfigure is unimplemented, I think then the config structure needs to have resource.AlwaysRebuild, and all required attributes should be assigned in the constructor

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think validate should only be used to confirm that the config is formatted as expected?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah agreed. I think we should recommend to implement Reconfigure if needing to do these things instead of putting into Validate.

The rest of the changes LGTM! thanks for improving this.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Michael's not wrong, but I prefer Martha's approach of using AlwaysRebuild as the default, and only writing Reconfigure if you absolutely need it. I kinda want to change the viam module generate template to create an AlwaysRebuild module with a comment saying that if you really need Reconfigure() you can comment out the AlwaysRebuild line. but that's a discussion for a different PR, not this one.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess the first bullet, get any config values, doesn't need to be done in any of these functions since people can just do for example imgFile, err := os.Open(s.cfg.ImagePath) within the actual API function implementation instead of passing around global variables. So that "Get any values..." bullet becomes "If you assigned any config values to global variables, reassign them."?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I like that!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, sorry for the more philosophical comments above. I think that they apply to this but the docs are correct as they are in this PR. Just didn't see it earlier. It LGTM!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks everyone!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Philosophy can be necessary when we are deciding how to guide users! I appreciate the discussion.

- Assign default values as necessary to any optional attributes if the user hasn't configured them.
- If your module has dependencies, get the dependencies from the `dependencies` map and cast each resource according to which API it implements, as in [this <file>ackermann.py</file> example](https://github.com/mcvella/viam-ackermann-base/blob/main/src/ackermann.py).

When the user changes the configuration, the `reconfigure` function is called.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[optional nit] maybe make this the first sentence so we start by explaining what the function is doing

- Assign any default values as necessary to any optional attributes if the user hasn't configured them.<br><br>
- Get any values from the `config` object that the user has configured.
- Assign default values as necessary to any optional attributes if the user hasn't configured them.
- If your module has dependencies, get the dependencies from the `dependencies` map and cast each resource according to which API it implements, as in [this <file>ackermann.py</file> example](https://github.com/mcvella/viam-ackermann-base/blob/main/src/ackermann.py).
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe show it once instead?

from typing import cast

        motors = config.attributes.fields["drive_motors"].list_value
        for m in motors:
            actual_motor = dependencies[Motor.get_resource_name(m)]
            motor = cast(Motor, actual_motor)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tried this in staging and I sort of think it takes up too much space and doesn't have enough context around it, esp. since not everyone will have dependencies.

@JessamyT
Copy link
Collaborator Author

To get the Go example in the expander to actually include constructor edits, I added an "example variable"

@JessamyT JessamyT merged commit ce41e90 into viamrobotics:main Mar 21, 2025
12 checks passed
@JessamyT JessamyT deleted the 3695dependency branch March 21, 2025 23:02
Copy link

🔎💬 Inkeep AI search and chat service is syncing content for source 'Viam Docs (https://docs.viam.com)'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
safe to build This pull request is marked safe to build from a trusted zone
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants