svelte-sapper-bulma-crud icon indicating copy to clipboard operation
svelte-sapper-bulma-crud copied to clipboard

Roadmap

Open danielschmitz opened this issue 5 years ago • 5 comments

Application

  • [ ] Enable HMR in Webpack

Category

  • [x] Read All Categories
  • [x] Create Category
  • [x] Update Category
  • [x] Delete Category

Product

  • [x] Read All
  • [x] Create
  • [x] Update
  • [x] Delete
  • [x] Component: Selection with categories
  • [x] Component: Selection with suppliers

Suplier

  • [ ] Read All
  • [ ] Create
  • [ ] Update
  • [ ] Delete

Employee

  • [ ] Read All
  • [ ] Create
  • [ ] Update
  • [ ] Delete

danielschmitz avatar May 17 '19 14:05 danielschmitz

if I've install bulma on sapper, where should I call the bulma it's self ?

DzunN86 avatar Jan 14 '20 14:01 DzunN86

How do I setup Axios in svelte ?

DzunN86 avatar Feb 20 '20 11:02 DzunN86

How do I setup Axios in svelte ?

here: https://github.com/danielschmitz/svelte-sapper-bulma-crud/blob/master/src/http.js

danielschmitz avatar Feb 27 '20 18:02 danielschmitz

for getting data do you axios method too?

DzunN86 avatar Feb 28 '20 13:02 DzunN86

for getting data do you axios method too?

yeap.

example:

import http from "../http";

async function onDeleteClick(item) {
    product = item;
    if (confirm(`Delete "${product.name}"?`)) {
      await http.delete(`/products/${product.id}`);
      products = getProducts();
    }
  }

danielschmitz avatar Mar 02 '20 14:03 danielschmitz