Agua - Global Issues - https://www.un.org/es/global-issues/water
Fundacion Aquae - https://www.fundacionaquae.org/wiki/importancia-del-agua/
Agua - Importancia real - https://gist.github.com/Klerith/6c10681ba56f4443493309ef1944b066
Agua - Global Issues - https://www.un.org/es/global-issues/water
Fundacion Aquae - https://www.fundacionaquae.org/wiki/importancia-del-agua/
Agua - Importancia real - https://gist.github.com/Klerith/6c10681ba56f4443493309ef1944b066
| import { effect, Injectable, signal } from '@angular/core'; | |
| import { ClientMessage, ServerMessage } from '../types'; | |
| import { Subject } from 'rxjs'; | |
| import Cookies from 'js-cookie'; | |
| import { Client, LatLng } from '../../types'; | |
| type ConnectionStatus = 'offline' | 'connecting' | 'connected' | 'disconnected'; | |
| @Injectable({ |
| import { effect, Injectable, signal } from '@angular/core'; | |
| import { ClientMessage, ServerMessage } from '../types'; | |
| import { Subject } from 'rxjs'; | |
| type ConnectionState = 'connecting' | 'connected' | 'disconnected'; | |
| @Injectable({ | |
| providedIn: 'root', | |
| }) | |
| export class WebSocketConnectionService { |
| getRandomHexColor() { | |
| return ( | |
| '#' + | |
| Math.floor(Math.random() * 16777215) | |
| .toString(16) | |
| .padStart(6, '0') | |
| ); | |
| } |
| :host { | |
| display: block; | |
| padding: 24px 0; | |
| } | |
| .party-config, | |
| .party-config *, | |
| .party-config *::before, | |
| .party-config *::after { | |
| box-sizing: border-box; |
| // This is your Prisma schema file, | |
| // learn more about it in the docs: https://pris.ly/d/prisma-schema | |
| // Looking for ways to speed up your queries, or scale easily with your serverless or edge functions? | |
| // Try Prisma Accelerate: https://pris.ly/cli/accelerate-init | |
| generator client { | |
| provider = "prisma-client" | |
| output = "../src/generated/prisma" | |
| } |
| import { | |
| createContext, | |
| useCallback, | |
| useEffect, | |
| useRef, | |
| useState, | |
| type ReactNode, | |
| } from 'react'; | |
| import type { Client, LatLng } from '../types'; | |
| import Cookies from 'js-cookie'; |
| import { | |
| createContext, | |
| useCallback, | |
| useEffect, | |
| useState, | |
| type ReactNode, | |
| } from 'react'; | |
| type ConnectionStatus = 'connecting' | 'connected' | 'disconnected' | 'error'; |