mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 02:33:31 -05:00 
			
		
		
		
	* update dev dependencies * upgrade eslint * resolve several errors * resolve eslint errors
		
			
				
	
	
		
			19 lines
		
	
	
		
			543 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			543 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Plugin } from "@nuxt/types";
 | 
						|
import type { NuxtAxiosInstance } from "@nuxtjs/axios";
 | 
						|
import { alert } from "~/composables/use-toast";
 | 
						|
 | 
						|
const toastPlugin: Plugin = ({ $axios }: { $axios: NuxtAxiosInstance }) => {
 | 
						|
  $axios.onResponse((response) => {
 | 
						|
    if (response?.data?.message) {
 | 
						|
      alert.info(response.data.message as string);
 | 
						|
    }
 | 
						|
  });
 | 
						|
  $axios.onError((error) => {
 | 
						|
    if (error.response?.data?.detail?.message) {
 | 
						|
      alert.error(error.response.data.detail.message as string);
 | 
						|
    }
 | 
						|
  });
 | 
						|
};
 | 
						|
 | 
						|
export default toastPlugin;
 |