Code Monkey home page Code Monkey logo

Comments (9)

naftis avatar naftis commented on June 6, 2024 2

Should this library expose useToast() that you could use directly in the components? For example vue-router exposes useRouter, which is simple as this:

function useRouter() {
  return vue.inject(routerKey);
}

Right now I have:

import { Toaster } from '@meforma/vue-toaster';
import { inject } from 'vue';

export function useToast(): Toaster {
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
  return inject<Toaster>('toast')!;
}

based on @andgeno's example

@jprodrigues70 what do you think?

from vue-toaster.

eXodes avatar eXodes commented on June 6, 2024 2

Not sure if this will help, but I set it this way to use the toast on any composition API components.

// useToast.js
import { getCurrentInstance } from "@vue/runtime-core";

export default () => {
    const toast = getCurrentInstance().ctx.$toast;

    const trigger = (message, type) => {
        switch (type) {
            case "success":
                toast.sucess(message);
                break;
            case "error":
                toast.error(message);
                break;
            case "warning":
                toast.warning(message);
                break;
            case "info":
                toast.info(message);
                break;
            default:
                toast.show(message);
                break;
        }
    };

    return {
        trigger,
    };
};
// app.js
import { createApp } from "vue";
import Toaster from "@meforma/vue-toaster";
import App from "./App.vue";

createApp(App)
    .use(Toaster, {
        duration: 5000, // or additional global properties
    })
    .mount("#app");
// Component.vue
...
import useToast from "path/to/useToast";
...
setup() {
    const { trigger } = useToast();

    ...
    trigger('Show me toast!');  // or pass the toast type as the second args
}
...

Edit: Change to set the toast type on trigger.

from vue-toaster.

andgeno avatar andgeno commented on June 6, 2024 1

Maybe this is of interest for you. I wrote a quick index.d.ts file to make vue-toaster have a typed class Toaster and a corresponding interface ToasterOptions. This also enables code auto-completion. πŸ˜€

declare module '@meforma/vue-toaster' {
    export const install: PluginFunction<{}>;

    export interface ToasterOptions {
        message?: string;
        type?: 'default' | 'success' | 'info' | 'warning' | 'error';
        position?: 'top' | 'bottom' | 'top-right' | 'bottom-right' | 'top-left' | 'bottom-left';
        duration?: number;
        dismissible?: boolean;
        onClick?(): void;
        onClose?(): void;
        queue?: boolean;
        pauseOnHover?: boolean;
        useDefaultCss?: boolean;
    }
    export = class Toaster {
        clear(): void;

        show(message: string, options?: ToasterOptions): void;
        success(message: string, options?: ToasterOptions): void;
        error(message: string, options?: ToasterOptions): void;
        info(message: string, options?: ToasterOptions): void;
        warning(message: string, options?: ToasterOptions): void;
    };
}

from vue-toaster.

jprodrigues70 avatar jprodrigues70 commented on June 6, 2024

Hi, @restyler

the component was not written with the new Composition API. So for now it’s not supported, but I want it to be supported.

It's a great candidate for PRs πŸ˜„

UPDATE: You can use it in Composition API as @andgeno related in this comment #16 (comment)

from vue-toaster.

restyler avatar restyler commented on June 6, 2024

Thank you! In case anyone is interested in quick solution, I've found https://github.com/Maronato/vue-toastification/tree/next which is a similar project but designed with Vue 3 Composition API support in mind.

from vue-toaster.

jprodrigues70 avatar jprodrigues70 commented on June 6, 2024

@andgeno @naftis Very nice! Would you open a PR with these improvements?

from vue-toaster.

alvarosabu avatar alvarosabu commented on June 6, 2024

I'm really interested in having this. @naftis solutions seem the proper one, is there a PR already opened?

from vue-toaster.

naftis avatar naftis commented on June 6, 2024

@alvarosaburido My project moved to https://github.com/Maronato/vue-toastification/tree/next which implements the hook and also had other features this one was missing. It would be nice to have this + solid TypeScript support in this project too!

from vue-toaster.

ankurk91 avatar ankurk91 commented on June 6, 2024

You can try
https://github.com/ankurk91/vue-toast-notification
for composition api

from vue-toaster.

Related Issues (20)

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.