Coder Social home page Coder Social logo

Comments (12)

nojaf avatar nojaf commented on July 28, 2024 2

My 2 cents: it would only make sense on pages with API docs and should not be part of the menu bar.

from fsharp.formatting.

nojaf avatar nojaf commented on July 28, 2024 1

Hmm, still some remaining problems with the new approach:

https://fsharp.github.io/fsharp-compiler-docs/reference/fsharp-compiler-codeanalysis-fsharpchecker.html#InvalidateAll

image

from fsharp.formatting.

nhirschey avatar nhirschey commented on July 28, 2024 1

Something like this?

Yeah, exactly. To me that’s more intuitive.

from fsharp.formatting.

nojaf avatar nojaf commented on July 28, 2024

Sounds reasonable, go for it!

from fsharp.formatting.

brianrourkeboll avatar brianrourkeboll commented on July 28, 2024

@nojaf Hmm, I'll look.

Separately, I'm noticing else on that same page that will necessitate some additional tweaks in that area anyway.

The .fsdocs-entity-xmldoc { > div { flex-direction: row reverse } }, which was already there, affects the order of any paragraphs defined with <para> that are nested in the <summary>.

So these paragraphs

/// <summary>
/// <para>
///   Parse and check a source code file, returning a handle to the results
/// </para>
/// <para>
///    Note: all files except the one being checked are read from the FileSystem API
/// </para>
/// <para>
///   Return FSharpCheckFileAnswer.Aborted if a parse tree was not available.
/// </para>
/// </summary>

— are shown in reverse order as

image

I think they should at least be shown in the order in which they're written, and it would probably be better if they were separated vertically instead of horizontally.

from fsharp.formatting.

nojaf avatar nojaf commented on July 28, 2024

Hmm, yeah, you're right. That row reverse was probably there for a reason. I'm okay with changing it, but we might need to consider any other issues it could introduce.

from fsharp.formatting.

brianrourkeboll avatar brianrourkeboll commented on July 28, 2024

Yeah, the contents themselves are generated in reverse order, only to be reversed again by the CSS, although I don't understand why:

let smry =
div [ Class "fsdocs-summary" ] [
yield! copyXmlSigIconForSymbolMarkdown m.Symbol
yield! copyXmlSigIconForSymbol m.Symbol
yield! sourceLink m.SourceLocation
fsdocsSummary m.Comment.Summary
]

from fsharp.formatting.

brianrourkeboll avatar brianrourkeboll commented on July 28, 2024

Hmm, still some remaining problems with the new approach:

https://fsharp.github.io/fsharp-compiler-docs/reference/fsharp-compiler-codeanalysis-fsharpchecker.html#InvalidateAll

image

Here's the explanation for this particular thing:

image

Sometimes the <div class="fsdocs-summary"> will be nested inside <details><summary>, and sometimes it won't be:

td [ Class "fsdocs-member-xmldoc" ] [
if List.isEmpty dtls then
smry
elif String.IsNullOrWhiteSpace(m.Comment.Summary.HtmlText) then
yield! dtls
else
details [] ((summary [] [ smry ]) :: dtls)

I removed the CSS for the bare div case in my PR, because I didn't understand that there were these different cases.

That conditional actually also means that, if there is no <summary> in the XML doc, there will be no source links, even if there are other elements:

image

I don't think there's a good reason not to show source links in such a case.

from fsharp.formatting.

brianrourkeboll avatar brianrourkeboll commented on July 28, 2024

If I did add an expand/collapse-all button, does this look like a reasonable place to put it? The idea would be for it to save your preference for the whole site to local storage, like the theme toggle.

expand-collapse.mp4

I guess it could also only be shown on pages that had API docs, but then would it still make sense to show it in the top right? Or somewhere else?

from fsharp.formatting.

nhirschey avatar nhirschey commented on July 28, 2024

If it’s easy, to me it seems more intuitive on the same row as “instance members”. For me it doesn’t seem obvious to look for this on the menu bar. I expect expand/collapse to be located closer to the elements it affects.

(But if this does not appeal to you ignore it).

from fsharp.formatting.

brianrourkeboll avatar brianrourkeboll commented on July 28, 2024

@nhirschey

If it’s easy, to me it seems more intuitive on the same row as “instance members”. For me it doesn’t seem obvious to look for this on the menu bar. I expect expand/collapse to be located closer to the elements it affects.

Something like this?

expand-collapse-2.mp4

(Could also be with "Instance members" as you suggest instead of in the table header.)

from fsharp.formatting.

brianrourkeboll avatar brianrourkeboll commented on July 28, 2024

Implemented in #917, #919, #920.

from fsharp.formatting.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.