Giter Club home page Giter Club logo

Comments (2)

phiresky avatar phiresky commented on September 24, 2024

Hey!

as a disclaimer: This repo isn't really made for public usage so I probably won't really add good documentation or really support working on it. You're probably better off using the sqlite repo directly and building your own simple UI.

You should not npm install typescript, instead you should run yarn install to install all dependencies. The summary.json file should be built by doing yarn posts which should automatically run as part of yarn build (see package.json)

from blog.

psychemedia avatar psychemedia commented on September 24, 2024

Thanks... I appreciate that it isn't really a "public" repo - I was just trying to find a quick way over a coffee break to set up trying out your sqlite components as a sketch to demonstrate how interactive sqlite queries could be embedded, executed and response displayed in a web page.

I still seem to get some unresolved issues - I guess I need to put a bit more time aside to get a better understanding of all the frameworks involved. I love the SQLite demos, btw:-)

client/pages/index.tsx:16:32 - error TS2345: Argument of type '{ posts: ({ filename: string; frontmatter: { csl: string; date: string; references: never[]; title: string; updated: string; "url2cite-link-output": string; author?: undefined; "link-citations"?: undefined; ... 4 more ...; subtitle?: undefined; }; preview: string; } | ... 4 more ... | { ...; })[]; }' is not assignable to parameter of type 'Summary'.
  Types of property 'posts' are incompatible.
    Type '({ filename: string; frontmatter: { csl: string; date: string; references: never[]; title: string; updated: string; "url2cite-link-output": string; author?: undefined; "link-citations"?: undefined; url2cite?: undefined; "url2cite-cache"?: undefined; urlcolor?: undefined; hidden?: undefined; subtitle?: undefined; }; ...' is not assignable to type 'PostSummary[]'.
      Type '{ filename: string; frontmatter: { csl: string; date: string; references: never[]; title: string; updated: string; "url2cite-link-output": string; author?: undefined; "link-citations"?: undefined; url2cite?: undefined; "url2cite-cache"?: undefined; urlcolor?: undefined; hidden?: undefined; subtitle?: undefined; }; p...' is not assignable to type 'PostSummary'.
        Type '{ filename: string; frontmatter: { csl: string; hidden: boolean; references: never[]; "url2cite-link-output": string; date?: undefined; title?: undefined; updated?: undefined; author?: undefined; "link-citations"?: undefined; url2cite?: undefined; "url2cite-cache"?: undefined; urlcolor?: undefined; subtitle?: undefi...' is not assignable to type 'PostSummary'.
          The types of 'frontmatter.title' are incompatible between these types.
            Type 'undefined' is not assignable to type 'string'.

16   const postList = filterPosts(summary)
                                  ~~~~~~~

server/build-feed.ts:19:3 - error TS2322: Type 'string | undefined' is not assignable to type 'string'.
  Type 'undefined' is not assignable to type 'string'.

19   title: post.frontmatter.title,
     ~~~~~

  node_modules/feed/lib/typings/index.d.ts:2:5
    2     title: string;
          ~~~~~
    The expected type comes from property 'title' which is declared here on type 'Item'

server/build-feed.ts:20:18 - error TS2769: No overload matches this call.
  Overload 1 of 4, '(value: string | number | Date): Date', gave the following error.
    Argument of type 'string | undefined' is not assignable to parameter of type 'string | number | Date'.
      Type 'undefined' is not assignable to type 'string | number | Date'.
  Overload 2 of 4, '(value: string | number): Date', gave the following error.
    Argument of type 'string | undefined' is not assignable to parameter of type 'string | number'.
      Type 'undefined' is not assignable to type 'string | number'.

20   date: new Date(post.frontmatter.date),

from blog.

Related Issues (7)

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.