Open loqusion opened 10 months ago
I have been at it since hours and still couldn't fix it. I believe the signature for the excerpt
function is incorrect.
It should be something like
excerpt?: boolean | ((file: GrayMatterFile<I>, options: O) => void)
Should I make a PR?
It should be something like
excerpt?: boolean | ((file: GrayMatterFile<I>, options: O) => void)
@DarhkVoyd That would likely be the best change to make that's consistent with the real function signature. However there are a couple of flaws with the real function signature:
excerpt
(optional field) to be a union of:
boolean
— if true
, the default "extract excerpt" implementation would be usedstring
— overrides default "extract excerpt" implementationstring
— for backwards compatibility (until a major version is released) since the current implementation interprets a string
excerpt
like excerpt_separator
GrayMatterFile
is confusing since it implies some strong correlation with a file-system object but there is no correlation to speak of. It's really just an ad hoc global state dictionary being passed around between functions. And most of its fields aren't even necessary for finding excerpt
.
input
(i.e. the first argument of the excerpt
function type) should probably be something like a string
or Buffer
. (This would be a backwards incompatible change which should only be made on a major release).To be clear, the existing TypeScript annotations are fine on their own; it's the implementation that needs to match.
Should I make a PR?
Probably not. Despite numerous issues and PRs, there hasn't been a significant change to this repository in over 5 years, so you'd probably be wasting your time. I don't blame the author since lack of monetizability in open source is a serious issue and they probably have better things to do with their time.
Here's a (relatively) sane wrapper for graymatter
taken straight from the source code for my website:
import type { GrayMatterFile, GrayMatterOption } from 'gray-matter'
import graymatter_ from 'gray-matter'
type GrayMatterOptions = GrayMatterOption<
string | Buffer,
GrayMatterOption<string | Buffer, any>
>
export type ExtractExcerptFn = (
input: string | Buffer,
options: GrayMatterOptions,
) => string
function graymatterInputToStringOrBuffer(
input: GrayMatterFile<string | Buffer>,
): string | Buffer {
if (typeof input !== 'object' || input === null) {
throw new Error(
`Expected input to be an object; received ${JSON.stringify(input)}`,
)
}
if (!('content' in input)) {
throw new Error('Expected "content" property in input object')
}
return input.content
}
function saneExcerptWrapper(
excerpt: boolean | ExtractExcerptFn | undefined,
): NonNullable<GrayMatterOptions>['excerpt'] {
if (typeof excerpt !== 'function') {
return excerpt
}
return ((input, options) => {
;(input as any).excerpt = (excerpt as ExtractExcerptFn)(
graymatterInputToStringOrBuffer(input as any),
options,
)
}) as typeof excerpt
}
export default function graymatter<
I extends string | Buffer,
O extends GrayMatterOption<I, O>,
>(input: I, options?: O): GrayMatterFile<I> {
return graymatter_(input, {
...options,
excerpt: saneExcerptWrapper(options?.excerpt),
})
}
How about if I just ignore that one line causing the whole lot this trouble.
// @ts-ignore
How about if I just ignore that one line causing the whole lot this trouble.
// @ts-ignore
They're both band-aids over a gaping wound. If that's the band-aid you prefer, then that's fine. As long as you can remember that the TypeScript function signature is a lie.
The return value is not used, at all, despite what the function's type signature would have you believe. Instead, you're expected to assign the
excerpt
field to its first argument like so:This is extremely easy to miss, and had me banging my head against the wall for hours. Hopefully this will help somebody with the foresight to check the GitHub issues.