Code Monkey home page Code Monkey logo

Comments (4)

timolins avatar timolins commented on May 30, 2024 7

Yes, this is possible. Let me explain how toast.promise works internally, so it's easier to understand how we are going to style it.

Compared to other toast calls (success, error etc.), toast.promise doesn't have its own toast type.
It's a helper function that creates a loading toast and updates it based on the provided promise.

You can read the internals yourself here: https://github.com/timolins/react-hot-toast/blob/main/src/core/toast.ts#L62-L91

In order to style toast.promise(), we need to style all toast types that are being dispatched by it. Meaning loading, success & error.

For small tweaks, I'd suggest using the styling API.
For a full customisation, you can write your own renderer.

Here is an example with custom notifications built with react-hot-toast + goober (styled-components like). This method works equally well with other styling methods.

CodeSandbox: https://codesandbox.io/s/react-hot-toast-custom-toasts-with-styled-components-i4xj6?file=/src/App.js

from react-hot-toast.

RomanFausek avatar RomanFausek commented on May 30, 2024 1

Anyway if it helps someone. I did something like this. I am doing abstraction on top of the toast functionality and it works nice.

import React from 'react';
import toast from 'react-hot-toast';
import { v4 as uuid } from 'uuid';

import type { ToastProps } from './toast';
import { Toast } from './toast';

export const triggerToast = (
  title: string,
  settings?: SettingsType,
) => {
  toast.custom(
    t => (
      <Toast
        title={title}
        isError={settings?.isError}
        isLoading={settings?.isLoading}
        action={settings?.action}
        ariaRole={settings?.ariaRole}
        onClose={() => toast.dismiss(t.id)}
        isVisible={t.visible}
      />
    ),
    { id: settings?.id },
  );
};

triggerToast.promise = <T,>(promise: Promise<T>) => {
  const id = uuid();

  triggerToast('Loading', { isLoading: true, id });

  promise
    .then(p => {
      triggerToast('success', {
        id,
      });

      return p;
    })
    .catch(() => {
      triggerToast('error', {
        id,
        isError: true,
      });
    });

  return promise;
};

from react-hot-toast.

shshaw avatar shshaw commented on May 30, 2024

Also looking for a way to dismiss a Promise Toast. message.promise returns a Promise, not the id like the other toast methods.

I think built in functionality for adding & styling a dismiss button would be ideal ( #7 ) though the need for manual dismissal for promise toasts is still needed.

from react-hot-toast.

RomanFausek avatar RomanFausek commented on May 30, 2024

This would be awesome to have in documentation if possible. cc @timolins

from react-hot-toast.

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.