0.3.1 • Published 5 months ago

lamy-debugbar v0.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

About

Lamy Debugbar is an elegant Svelte component that can replace {JSON.stringify(data} dumps on the client-side. Talk about a fancier way to get shit things done. The component is powered by Shiki, making sure that data being debugged can be as readable as possible, it's like reading code in your favourite text editor! Now that's what I call developer experience.

For a quick showcase please visit lamy-debugbar's github page.

Installation

npm i lamy-debugbar

Getting Started

Simply import LamyDebugbar component and supply the data you wish to be displayed.

src/routes/+page.js

<script>
    import { page } from '$app/stores'
    import LamyDebugbar from "lamy-debugbar"
</script>

<LamyDebugbar data={$page} />

The component will then destructure the keys from the $page object we pass to it. And will display those key values on their own tab. The tab key will be the title for each corresponding tab. Lamy Debugbar will then have tab for error, params, route, status, url, form and data (as these are the keys immediately held by $page object).

If you already got the gist, this means we can combine multiple data that we need to be displayed by the component.

Trivia: There is also a long method for importing the component. Why tho? Because we can.

import LamyDebugbar from "lamy-debugbar/dist/components/LamyDebugbar.svelte"

Combining data to be displayed

Refactoring the sample code above we can combine objects and display it with Lamy Debugbar.

src/routes/+page.js

<script>
    import { page } from '$app/stores'
    import LamyDebugbar from "lamy-debugbar"

    export let data
    let debug = { page: $page, server: data }
</script>

<LamyDebugbar data={debug} />

The debugbar will show tab for page and server. And since we declared debug using the let keyword, we can update the data in cases where we are fetching data remotely or async.

Configuration

There are six properties exposed by Lamy Debugbar, data, open, noIcon, highlighter, customTheme and offline as well as one optional slot named icon.

<LamyDebugbar 
    data?={any}
    open?={false}
    noIcon?={false}
    highlighter?={{
        theme: 'material-theme-palenight',
        langs: ['javascript']
    }}
    customTheme?={Object}>

    <slot name="icon" />

</LamyDebugbar>

Props

Prop nameTypeDefault valueDescription
dataany{}The object that will be displayed by Lamy Debugbar.
openBooleanfalseWhether to keep the debugbar expanded.
noIconBooleanfalseWhether to display debugbar icon.
highlighterObjectMaterial theme palenight and javascript language^1Shiki's HighlighterOptions
customThemeObjectundefinedLoad a custom theme that is not shipped with shiki by default. Examples are Tokyo Night and SynthWave 84. Note that shiki only accepts valid JSON syntax and will reject malformed JSON, if you have trouble loading a custom theme, check first to see if the json data is strictly valid. Trailing commas and comments are usually the issue.

For a list of available themes head to Shiki's doc about themes. And a list of themes not bundled by Shiki can be viewed at vscodethemes website.

Slots

Slot nameDefault elementDescription
iconLamy Debugbar flower icon^2Define your own custom icon and replace the default flower icon.

Loading up a custom theme

In this section I will show how to load a custom theme named Tokyo Night.

Note when using customTheme prop, the highlighter prop should not be used in conjunction of customTheme. highlighter will still have javascript language loaded by default, since LamyDebugbar only works with JSON data, we don't need anything else.

  1. First I took some time to get raw json file of Tokyo Night
  2. Saved it somewhere we can fetched later, in my case I saved it inside static/shiki/themes/tokyo-night-color.json
  3. If we fetch the json file as is, we are bound to encounter a lot of errors because of JSON syntax alone. I then took my time to remove trailing commas and comments then saved the cleaned up json file. There are tools out there that can automate this trivial task, just google JSON syntax formatter or linter.
  4. Let's import our custom theme!
<script>
    import { onMount } from "svelte"
    import { page } from "$app/stores"
    import LamyDebugbar from "$lib/components/LamyDebugbar.svelte"

    /** @type {Object} */
    let customTheme
    onMount(async () => {
        const response = await fetch('/shiki/themes/tokyo-night-color.json')
        // Note that we get Object representation of JSON data and not a string.
        // If you are loading JSON as string, use JSON.parse to convert it to Object.
        customTheme = await response.json()
    })
</script>

<LamyDebugbar data={{...$page}} customTheme={customTheme} />

Loading up a custom icon

Not a fan of flowers? Not a problem since you can just either remove displaying icon using noIcon prop or replace it with your own using component slot named icon.

<script>
    import { page } from '$app/stores'
</script>

<LamyDebugbar bind:data={{...$page}} highlighter={{
    theme: `min-dark`
}}>
    <img slot="icon" src="/images/ssrb-192x192.webp" alt="SSRB" width="40" height="40" />
</LamyDebugbar>

By default, shiki themes, language and oniguruma wasm engine is fetched from a CDN. This is good as we don't need to manage the themes and language ourselves. As part of progressive enhancement the offline prop allows users to use Lamy Debugbar even in dire circumstances, such as when coding without internet.

<script>
    import { page } from '$app/stores'
</script>

<LamyDebugbar bind:data={{...$page}} offline={true} highlighter={{
    theme: `min-dark`
}} />

Enabling this prop however, will require your app to host the necessary themes and languages as well as the oniguruma wasm file needed by shiki to function. Lamy Debugbar will look for shiki themes inside shiki/themes, language files inside shiki/languages and oniguruma wasm engine at shiki/onig.wasm. Here is an example on how rose-pine-dawn theme and javascript language is hosted on my own sveltekit app:

awesome-project/
├─ src/
├─ static/
│  ├─ shiki/
│  │  ├─ themes/
│  │  │  ├─ rose-pine-dawn.json
│  │  ├─ languages/
│  │  │  ├─ javascript.tmLanguage.json
│  │  ├─ onig.wasm

The themes, languages and onig.wasm files can be downloaded from shiki-es CDN.

Roadmap

Roadmap has been moved to project board.

Due to how themes work, there is no unified way of getting the right color combination for lamy debugbar at the moment, some themes will not be as good when used due to certain theming tokens not present. Old themes usually have this issue. Newer themes are much more compliant with new vscode theming.

^1: Default highlighter options

```js
    {
        theme: 'material-theme-palenight',
        langs: ['javascript']
    }
```

^2: Default Lamy Debugbar icon

```html
<div>
    <img src="http://localhost:5173/src/lib/assets/lamy-logo-192x192.png" alt="Lamy Debugbar icon" width="40" height="40" class="max-h-10 object-contain py-2">
    <span class="lamy-summary-text sr-only">Lamy Debugbar</span>
</div>
```
0.3.0

5 months ago

0.3.1

5 months ago

0.2.1

6 months ago

0.1.0

9 months ago

0.2.0

9 months ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago