0.9.5 • Published 2 months ago

vue-vroom v0.9.5

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

Vroom

Vroom is a store and api mock generator for Vue.js and pinia, that lets you build applications fast and even before backend is ready.

See the full documentation here.

Test Coverage Package

Getting started

To get started setup of a Vue 3 project with Pinia, e.g. using create-vue. In this guide we will

  1. Install Vroom package
  2. Setup config
  3. Setup global component types (for TS projects)
  4. Install Vroom in our app
  5. Fetch some data and show it
  6. Use store actions to manipulate data

Peer dependencies and browser support

Vroom is built to work with Pinia and Vue 3. Vroom is targeted at modern browsers and uses the Fetch API instead of XMLHttpRequest.

Peer dependencies:

  • Vue ^3.0.0
  • Pinia ^2.0.0

Note: Vroom is still in alpha, so breaking changes might be introduced between each minor release.

1. Install package

To install Vroom

npm i vue-vroom

2. Add config file

Create a vroom/index.ts file to store your configuration. This is a basic example that:

// src/vroom/index.ts
import { createVroom, defineModel } from "vue-vroom";

const vroom = createVroom({
  models: {
    book: defineModel({
      schema: {
        title: { type: String },
        isFavourite: { type: Boolean },
      },
      belongsTo: {
        author: () => "author",
      },
    }),
    author: defineModel({
      schema: {
        name: { type: String },
      },
      hasMany: {
        books: () => "book",
      },
    }),
  },
  server: {
    enable: true,
  },
});

vroom.db.author.createMany(
  {
    name: "George R.R. Martin",
    books: vroom.db.book.createMany(
      { title: "A Game of Thrones" },
      { title: "A Clash of Kings" },
    ),
  },
  {
    name: "JRR Tolkien",
    books: vroom.db.book.createMany(
      { title: "The Hobbit" },
      { title: "The Lord of the rings" },
    ),
  },
);

export type Models = typeof vroom.types;

export default vroom;

It is recommended to split up models, config and seeds for better organisation and bundle optimization. See notes on organisation here

3. Add global component declarations

Vroom adds some global components. To get proper type hints on these add a components.d.ts file to your /src folder.

// src/components.d.ts
import type {
  FetchListComponent,
  FetchSingleComponent,
  FetchSingletonComponent,
} from "vue-vroom";
import type vroom from "@/vroom";

declare module "@vue/runtime-core" {
  export interface GlobalComponents {
    FetchList: FetchListComponent<typeof vroom>;
    FetchSingle: FetchSingleComponent<typeof vroom>;
    FetchSingleton: FetchSingletonComponent<typeof vroom>;
  }
}

4. Install on Vue app

Then import your vroom instance in main.ts file along with your pinia installation and install it

import { createApp } from "vue";
import { createPinia } from "pinia";
import vroom from "./vroom";
import App from "./App.vue";

const pinia = createPinia();
const app = createApp(App);

app.use(pinia);
app.use(vroom);
app.mount("#app");

5. Fetch and show data

Find a place you want to show some data e.g. App.vue and add the following

<template>
    <FetchList 
        model="book" 
        :sort="[{ field: 'title', dir: 'ASC' }]"
        :include="['author']"
    >
        <template #loading>Loading books...</template>

        <template #default="{bookItems}">
            <p v-for="book in bookItems" :key="book.id">
                {{ book.title }} was written by {{ book.author.name }}
            </p>
        </template>
    </FetchList>
</template>

<script lang="ts" setup></script>
  • The FetchList component will in this example trigger a call to /books?sort=title,include=author
  • It will pass the results into the default slot, when it's done loading
  • It will keeps its results cached until it's unmounted (see more about cache)

There are three different components for fetching data

  • FetchList
  • FetchSingle
  • FetchSingleton

6. Manipulate data

Let's update the example above to be able to favourite a book

<template>
    <FetchList 
        model="book" 
        :sort="[{ field: 'title', dir: 'ASC' }]"
        :include="['author']"
    >
        <template #loading>Loading books...</template>

        <template #default="{bookItems}">
            <p v-for="book in bookItems" :key="book.id">
                {{ book.title }} was written by {{ book.author.name }}

                <button @click="toggleFavorite(book)">
                    {{ book.isFavourite ? 'Unfavourite' : 'Favourite' }}
                </button>
            </p>
        </template>
    </FetchList>
</template>

<script lang="ts" setup>
import vroom, { type Models } from '@/vroom';

const bookStore = vroom.stores.book();

function toggleFavourite(book: Models['book']) {
    bookStore.update(book.id, {
        isFavourite: !book.isFavourite
    })
}
</script>

This example uses the autogenerated store (all accessible on vroom.stores). Calling update will trigger a called to PATCH /books/:id along with data passed as the second argument

Contributing

Contributions are most welcome 🙌

To contribute:

  • Fork this repository
  • Create a branch from main with your feature (and try to keep it small)
  • Send a pull request from your branch to the main branch.

License

MIT

0.9.5

2 months ago

0.9.4

3 months ago

0.9.0

7 months ago

0.9.2

5 months ago

0.9.1

5 months ago

0.9.3

5 months ago

0.7.8

11 months ago

0.7.7

11 months ago

0.8.0

10 months ago

0.7.6

12 months ago

0.7.5

12 months ago

0.6.0-rc.2

1 year ago

0.6.0-rc.3

1 year ago

0.6.0-rc.1

1 year ago

0.3.0

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.7.2

1 year ago

0.7.1

1 year ago

0.7.4

12 months ago

0.7.3

1 year ago

0.5.0

1 year ago

0.2.3

1 year ago

0.4.0

1 year ago

0.2.2

1 year ago

0.7.0

1 year ago

0.6.1

1 year ago

0.6.0

1 year ago

0.2.4

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago

0.1.0-alpha.14

2 years ago

0.1.0-alpha.13

2 years ago

0.1.0-alpha.12

2 years ago

0.1.0-alpha.11

2 years ago

0.1.0-alpha.10

2 years ago

0.1.0-alpha.9

2 years ago

0.1.0-alpha.8

2 years ago

0.1.0-alpha.7

2 years ago

0.1.0-alpha.6

2 years ago

0.1.0-alpha.5

2 years ago

0.1.0-alpha.4

2 years ago

0.1.0-alpha.3

2 years ago

0.1.0-alpha.2

2 years ago

0.1.0-alpha.1

2 years ago

0.1.0-alpha.0

2 years ago