histoire-dev / histoire

⚡ Fast and beautiful interactive component playgrounds, powered by Vite
https://histoire.dev
MIT License
3.2k stars 191 forks source link

Builtin control components #30

Open Akryum opened 2 years ago

Akryum commented 2 years ago
hugoattal commented 2 years ago

I suggest also adding Number input, Slider, Date/Hour, Radio list, Color picker, Textarea, and JSON (with syntax highlight if possible)

Also, I suggest using a checkbox for a boolean (compared to a switch). UX-wise, I believe switch means deciding between two states (dark/light mode for example), whereas checkbox is quite literally a boolean (checked or not checked)

hugoattal commented 2 years ago

I think we need to have some kind of ways to specify how to display those controls. I suggest adding a controls attribute to variant, here's what it would look like:

<script lang="ts" setup>
import { BooleanCtrl, InputCtrl, SliderCtrl } from '@histoire/controls'
import MyComponent from './MyComponent.vue'
import MyCustomControlComponentfrom './MyCustomControlComponent.vue'

function initState () {
  return {
    disabled: false,
    padding: 2,
    size: 20,
    customData: {},
  }
}

const controls = {
  disabled: BooleanCtrl,
  padding: {
    type: InputCtrl,
  },
  size: {
    type: SliderCtrl,
    options: {
      min: 0,
      max: 10,
      step: 2,
    },
  },
  customData: {
    type: MyCustomControlComponent
  },
}
</script>

<template>
  <Story
    title="My thing"
    :init-state="initState"
    :controls="controls"
  >
    <template #default="{ state }">
      <MyComponent v-bind="state" />
    </template>
  </Story>
</template>

Here are some different ways to define a control:

The standard way, just specify what kind of control you want

const controls = {
  size: SliderCtrl,
}

This is an equivalent to previous example

const controls = {
  size: {
    type: SliderCtrl,
  }
}

Here you can add options to the controls (depending on what's available)

const controls = {
  size: {
    type: SliderCtrl,
    options: {
      min: 0,
      max: 10,
      step: 2,
    },
  }
}

Also, you would be able to provide your own controls (with options) like this:

const controls = {
  size: {
    type: CustomControlComponent,
    options: {
      weirdOption: 2,
    },
  },
}

Basically, anyone would be able to create their own controls for their specific purpose. And lastly, you would also be able to use the control template to be even more free to do anything you want.

Wdyt?

hugoattal commented 2 years ago

Also, controls would be automatically inferred from the type of value if not specified.

Akryum commented 2 years ago

I think we need to have some kind of ways to specify how to display those controls.

We already have the controls slot in the <Variant> :thinking:

hugoattal commented 2 years ago

We already have the controls slot in the <Variant> :thinking:

Yes, of course, but I was thinking about a way to do it "programmatically" (I mean, in JS and not directly in the template)

The advantage being that:

But it's true that we could do only the components to be placed in the controls slot for now

alvarosabu commented 2 years ago

Hey there, let me know if you need hands with this :)

Akryum commented 2 years ago

@alvarosabu sure, let me do some mockups first

Akryum commented 2 years ago

image

Akryum commented 2 years ago

We could also have a variant of HstRadio with checkboxes, called HstMultiCheckbox

alvarosabu commented 2 years ago

@Akryum sounds great. I just download the repo and create a branch and push?

alvarosabu commented 2 years ago

I will take HstSelect first

alvarosabu commented 2 years ago

So I'm basically done with the Select component. I will need access to push the branch and create the PR @Akryum when you have a chance.

Screenshot 2022-05-02 at 16 14 01

Akryum commented 2 years ago

Done

alvarosabu commented 2 years ago

Nice, it's ok if I take next?

Cheers

Akryum commented 2 years ago

Sure!

alvarosabu commented 2 years ago

@Akryum I have one question regarding the radio list, I see you implemented the HstCheckbox width SVGs and no input element (faked with a div). Is there a specific reason to not use native input tags?.

Is the radio component expected to be implemented in the same way or I can use input + label and just hide the input visibility?

Thanks

Akryum commented 2 years ago

I find it cleaner

hugoattal commented 2 years ago

I'll tackle those 3:

Akryum commented 2 years ago

Date/hour (should I use native controls or build something custom for this one?)

I think mobile native inputs are great, but desktop ones probably deserve a custom implementation because how awful they are.

victorlmneves commented 2 years ago

If I may suggest I think the next one should be JSON code editor since for now the auto-props don't show the initial data and we also aren't able to specify the type of input, then we need to use the controls template. That way we could use the new feature that allows us to hide the auto-props avoiding displaying the same stuff twice. Thanks

hugoattal commented 2 years ago

I'm tackling the JSON code editor!

MikhaD commented 1 year ago

I'll tackle those 3:

* Slider

* Date/hour (should I use native controls or build something custom for this one?)

  * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date
  * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time

* Color picker

I have noticed that the Slider component does not define a step prop, despite the slider story passing one in. I wasn't sure whether I should create a new issue about it.

hugoattal commented 1 year ago

@MikhaD The step property is indeed not defined in the component. So it's available in the $attrs, which is directly passed to the input HTML element like this:

<input
  v-bind="{ ...$attrs, class: null, style: null, min, max }"
>

(The class: null, style: null is to remove any class of style set, as it's already added to the HstSlider root element)

Hope it answers your concerns 🙂

MikhaD commented 1 year ago

I appreciate the response.

I use Histoire for Svelte, not Vue, so unfortunately the solution does not apply.

I have a work around for now, my question is is there a reason that step is not defined or is an oversight that should be placed in a bug report.

hugoattal commented 1 year ago

The absence of the step prop was intended at the time of building the component, since it was not needed.

But if it can't be used in svelte, that's indeed a bug.

Out of curiosity, what workaround have you found?

MikhaD commented 1 year ago

I made my own identical looking svelte component with a range prop that I use instead. It is not quite as good, because it doesn't have the tooltip.

Why do you say step was not needed?

hugoattal commented 1 year ago

Why do you say step was not needed?

IIRC, I built that feature when Histoire didn't support Svelte yet. So the step prop worked anyway. I'll have to take a closer look to fix it for Svelte 🙂