styled-media-query icon indicating copy to clipboard operation
styled-media-query copied to clipboard

Add type definitions for Typescript

Open morajabi opened this issue 7 years ago β€’ 17 comments

morajabi avatar Jul 09 '17 17:07 morajabi

Yes please. It would be perfect!

vittorio avatar Jan 21 '18 20:01 vittorio

Cool! Can you help maybe?

morajabi avatar Jan 30 '18 11:01 morajabi

Hi, is it available ?

fred-croix avatar Jul 09 '18 21:07 fred-croix

Yes! Do you want to pick it up?

morajabi avatar Jul 12 '18 15:07 morajabi

I could probably help here, I use TypeScript and I'd definitely like to see this library supported.

There are two options here:

  1. Bundle the .d.ts type definition file with this module and store it in this repository
  2. Place it under the @types organisation in DefinitelyTyped/DefinitelyTyped

For the sake of simplicity of installation and maintenance, I'd go for option 1, what do you think ?

franky47 avatar Nov 17 '18 14:11 franky47

I don't see any issue with 1st here! @franky47 take a look and if you managed to come up with a type definition, you're more than welcome to do a PR!

morajabi avatar Nov 18 '18 07:11 morajabi

At the moment I have a working implementation which covers most use cases but does not give any intellisense when using types for styled-components themes.

For the sake of consistent developer experience, it would be preferable to have relevant suggestions when editing styles nested under a media query. Since the types required to do that have changed between styled-components v3 and v4, I'll wait for PR #14 (and probably #15 as I could use some automated tests in verifying the types match) to be merged to propose this new feature.

franky47 avatar Nov 20 '18 07:11 franky47

As a side note, in order for base types to correctly resolve to a user-defined ThemeInterface, PR DefinitelyTyped#30511 for @types/styled-components will be needed as well, I'll keep an eye on it.

franky47 avatar Nov 21 '18 07:11 franky47

This is what it would look like at the moment to get support for both ThemeInterface and custom Props passed to the styled component:

// src/custom/styled-media-query.ts
import { generateMedia } from 'styled-media-query'
import ThemeInterface from './theme'

interface Breakpoints {
  phone: string
  tablet: string
  laptop: string
  desktop: string
}

const media = generateMedia<Breakpoints, ThemeInterface>({
  phone: '400px',
  tablet: '600px',
  laptop: '1200px',
  desktop: '1500px'
})

export default media

Usage to create styled components:

// MyComponent.tsx
import styled from 'src/custom/styled-components' // `styled` with ThemeInterface
import media from 'src/custom/styled-media-query'

interface Props {
  active: boolean
}

const StyledComponent = styled.div<Props>`
  color: ${p => p.active ? p.theme.primary : p.theme.secondary};
  ${media.greaterThan<Props>('mobile')`
    color: ${p => p.active ? p.theme.secondary : p.theme.primary};
  `};
`

Ideally, I'd like to find a solution that does not involve passing the Props type to media.greaterThan<Props>('mobile'), but my knowledge of TypeScript does not (yet) cover composition of tagged template literals interpolations and type closures (if there's anything of the sort).

franky47 avatar Nov 21 '18 10:11 franky47

@franky47 I tried your solution, but I'm getting an error. Did you get the same one? A weird TypeScript issue.

screen shot 2019-01-16 at 07 18 30

angay9 avatar Jan 16 '19 06:01 angay9

@angay9 it looks like the type definitions are not found in your case. PR #16 is not yet merged, so public releases of styled-media-query don't include typings yet.

What is your setup ?

franky47 avatar Jan 16 '19 07:01 franky47

@franky47 I'm using React js with Typescript.

angay9 avatar Jan 16 '19 08:01 angay9

Thanks so much for this! @morajabi Seems like the PR for adding typings has been merged, would it be possible to do a new release with those changes? ☺️

nishunmind avatar May 08 '19 13:05 nishunmind

[email protected] has been published, which include Typescript types, this issue can be closed.

Thanks @morajabi !

franky47 avatar Jun 20 '19 11:06 franky47

@morajabi @franky47 am I correct in thinking that

export interface MediaGenerator<Breakpoints, Theme> {
  lessThan: <Props>(
    breakpoint: keyof Breakpoints
  ) => GeneratorFunction<Props, Theme>
  greaterThan: <Props>(
    breakpoint: keyof Breakpoints
  ) => GeneratorFunction<Props, Theme>
  between: <Props>(
    fist: keyof Breakpoints,
    second: keyof Breakpoints
  ) => GeneratorFunction<Props, Theme>
}

should actually be

export interface MediaGenerator<Breakpoints, Theme> {
  lessThan: <Props>(
    breakpoint: keyof Breakpoints | string
  ) => GeneratorFunction<Props, Theme>
  greaterThan: <Props>(
    breakpoint: keyof Breakpoints | string
  ) => GeneratorFunction<Props, Theme>
  between: <Props>(
    fist: keyof Breakpoints | string,
    second: keyof Breakpoints | string
  ) => GeneratorFunction<Props, Theme>
}

styled-media-query allows you to pass in a custom size to lessThan, greaterThan and between (see https://github.com/morajabi/styled-media-query#lessthan). The current typings only allow you to pass in a defined breakpoint.

budt0m avatar Dec 10 '19 14:12 budt0m

Indeed, however I'm not sure how this would play with autocompletion (does it still give you the keys of Breakpoints but allow to pass any other string ?)

franky47 avatar Dec 10 '19 14:12 franky47

@franky47 I'm using WebStorm and, yes, changing it to keyof Breakpoints | string still gives me the same autocompletion as before

budt0m avatar Dec 10 '19 14:12 budt0m