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

Override provides prompt with relationship property, check first recommendation in any_of group #3426

Merged
merged 4 commits into from
Aug 8, 2021

Conversation

HebaruSan
Copy link
Member

@HebaruSan HebaruSan commented Aug 2, 2021

Motivation

The RSS/RO/RP-0/RP-1 team reached out to discuss ways to streamline their installation process, see KSP-CKAN/NetKAN#8615 and KSP-CKAN/NetKAN#8688. They hope to reduce the number of decisions the user has to make and provide more information to help the user make good choices.

We're still brainstorming options for improvements, but a few ideas seem to be clear wins so far. This is the first of possibly/hopefully several changes resulting from that discussion.

Problems

  • When a depends clause matches multiple modules (via either provides or any_of), only a standard prompt based on the identifier(s) is shown (and it varies between CmdLine/ConsoleUI/GUI). The RSS/RO/RP-0/RP-1 team would like to be able to override that prompt in order to give users additional help and clues about which module to pick.
  • The RSS/RO/RP-0/RP-1 team has been taking advantage of any_of relationships for conflicting recommendations because they don't all show up as checked:
    image
    Rather, they're all unchecked, which is still not great because these are supposed to be recommendations, on-by-default:
    image

Changes

  • Now the standard prompt for choosing a dependency is the same across CmdLine/ConsoleUI/GUI (copied from the existing English text for GUI)
  • Now you can add a choice_help_text property to a relationship to override the text the user sees when choosing among multiple modules:
    depends:
      - any_of:
        - name: Mod1
        - name: Mod2
        choice_help_text: Pick Mod1 unless you like Mod2
      - name: RSSTextures
        choice_help_text: Pick the 16K version if your computer can handle it
    image
  • Now if you recommend an any_of group or an identifier provided by multiple modules, the first one that shows up on screen will be checked, and the rest will be unchecked:
    image

After this, it should be possible to guide users into a good RSS/RO/RP-0/RP-1 install more often and more easily.

@HebaruSan HebaruSan added Enhancement New features or functionality Pull request Schema Issues affecting the schema Relationships Issues affecting depends, recommends, etc. labels Aug 2, 2021
@HebaruSan HebaruSan requested a review from DasSkelett August 2, 2021 02:27
@HebaruSan
Copy link
Member Author

HebaruSan commented Aug 2, 2021

@NathanKell, @ppboyle, @StonesmileGit, @siimav, @jwvanderbeck:
There's a test build here if you want to try these changes:

To test the choice_help_text property thing, you can save a copy of the current .ckan files to your local drive, edit them to add the new property, then use File → Install from .ckan to install them (one at a time, unfortunately):

@NathanKell
Copy link
Contributor

Awesome! I'll check this out after supper (am currently fighting with porting my Chrome profile over to a new PC, bleh). Thanks!!

@HebaruSan

This comment has been minimized.

@NathanKell
Copy link
Contributor

Worked like a treat! ❤️

@DasSkelett
Copy link
Member

Yeah given that the spec defines (a top-level) comment as

A comment field, if included, is ignored. It is not displayed to users, nor used by programs. Its primary use is to convey information to humans examining the CKAN file manually

https://github.com/KSP-CKAN/CKAN/blob/master/Spec.md#comment

I wouldn't reuse the key like that, even if it's not top-level. Maybe help or help_text instead? Or hint?

@HebaruSan
Copy link
Member Author

HebaruSan commented Aug 3, 2021

Maybe help or help_text instead? Or hint?

Those are good. I'd like to add a short adjective prefix as well that explains what the hint is about.
choice_hint? choice_help_text? choice_prompt?

@NathanKell
Copy link
Contributor

NathanKell commented Aug 3, 2021 via email

@HebaruSan HebaruSan force-pushed the feature/toomany-comment branch from 77e807b to 0b04b5f Compare August 3, 2021 21:11
@HebaruSan
Copy link
Member Author

HebaruSan commented Aug 3, 2021

choice_help_text it is! Force-pushed; new build:

@HebaruSan HebaruSan changed the title Override provides prompt with relationship comment, check first recommendation in any_of group Override provides prompt with relationship property, check first recommendation in any_of group Aug 3, 2021
@DasSkelett
Copy link
Member

DasSkelett commented Aug 8, 2021

I was wondering why RCSBuildAid and RCSBuildAidCont both start checked, despite being in an any_of in the RealismOverhaul netkan, turns out they are both listed as first-level recommendations in the RP-0 netkan.

 		{ "name" : "RCSBuildAid" },
		{ "name" : "RCSBuildAidCont" },

... which has been mentioned in the last line here: KSP-CKAN/NetKAN#8688 (comment)

@NathanKell I think you might want to adjust that to be in an any_of as well.

@DasSkelett
Copy link
Member

DasSkelett commented Aug 8, 2021

choice_help_text doesn't work yet for any_of:

`any_of` should not be combined with other properties

if (child.Properties().Count() > 1)
{
throw new Kraken("`any_of` should not be combined with other properties");
}

@HebaruSan
Copy link
Member Author

Fixed, I think.

image

@DasSkelett
Copy link
Member

DasSkelett commented Aug 8, 2021

Should we also deduplicate items from the list? Of course, the metadata should be changed as well, but I think it doesn't hurt to fix it in the client.

Edit: adding .Distinct() to the RelationshipDescriptor.ModuleRelationshipDescriptor.LatestAvailableWithProvides and RelationshipDescriptor.AnyOfRelationshipDescriptor.LatestAvailableWithProvides. It does loose the ordering if there are are equal items, but IMHO you couldn't rely on that anyway with duplicated ones.

@HebaruSan
Copy link
Member Author

I think updating just AnyOfRelationshipDescriptor.LatestAvailableWithProvides is sufficient, we shouldn't be generating duplicates based on provides.

@DasSkelett
Copy link
Member

Yeah, that makes sense. Thanks!

Copy link
Member

@DasSkelett DasSkelett left a comment

Choose a reason for hiding this comment

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

Okay, I think this PR works well as is. If we find more fixes that are needed for KSP-CKAN/NetKAN#8701, it might be wise to do them as separate PR, especially if they do dig into the RelationshipResolver.

@HebaruSan
Copy link
Member Author

HebaruSan commented Aug 13, 2021

choice_help_text doesn't work yet for any_of:

`any_of` should not be combined with other properties

if (child.Properties().Count() > 1)
{
throw new Kraken("`any_of` should not be combined with other properties");
}

@DasSkelett, should we bump the spec version for this? That would give us a way to protect old clients from newer metadata with extra properties alongside any_of. (I.e., netkan could require a module to have spec_version 1.31 or later if any_of has sibling properties.)

@DasSkelett
Copy link
Member

Indeed, the same though came to my mind yesterday. I think we should do that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement New features or functionality Relationships Issues affecting depends, recommends, etc. Schema Issues affecting the schema
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants