Giter VIP home page Giter VIP logo

Comments (2)

zerodevx avatar zerodevx commented on September 25, 2024 1

Hey, thanks for your note. This package basically just renders the tree-view. Styles like colours and indentation can be edited using the exposed CSS vars. In the demo, other features were added but they're probably outside the scope of this package. The demo project is open-sourced here: https://github.com/zerodevx/json-pretty-print, so you can look at the implementation too.

from svelte-json-view.

danielimmke avatar danielimmke commented on September 25, 2024

So it seems like indentation is handled with the depth property and the other stuff is mostly presentational.

It may be beyond the scope of this project to add functions to directly modify the JSON. I was able to write my own "copy" button in 5 minutes, but the same might not be true for everyone, so it might be an easy add? I don't know. Here's what I did (had SSR turned off on this page so didn't have to check for client side.)

Either way, thanks for making this package!

  const copyJSON = async () => {
    const blob = new Blob([JSON.stringify(json)], { type: "text/plain" });

    await navigator.clipboard.write([
      new ClipboardItem({
        [blob.type]: blob,
      }),
    ]);
  }

from svelte-json-view.

Related Issues (6)

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.