mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 09:12:02 +10:00
## Description Add support for teams which will allow users to collaborate on documents. Teams features allows users to: - Create, manage and transfer teams - Manage team members - Manage team emails - Manage a shared team inbox and documents These changes do NOT include the following, which are planned for a future release: - Team templates - Team API - Search menu integration ## Testing Performed - Added E2E tests for general team management - Added E2E tests to validate document counts ## Checklist - [X] I have tested these changes locally and they work as expected. - [X] I have added/updated tests that prove the effectiveness of these changes. - [ ] I have updated the documentation to reflect these changes, if applicable. - [X] I have followed the project's coding style guidelines.
71 lines
1.5 KiB
TypeScript
71 lines
1.5 KiB
TypeScript
'use client';
|
|
|
|
import { createContext, useContext, useEffect, useState } from 'react';
|
|
|
|
import { equals } from 'remeda';
|
|
|
|
import { getLimits } from '../client';
|
|
import { FREE_PLAN_LIMITS } from '../constants';
|
|
import type { TLimitsResponseSchema } from '../schema';
|
|
|
|
export type LimitsContextValue = TLimitsResponseSchema;
|
|
|
|
const LimitsContext = createContext<LimitsContextValue | null>(null);
|
|
|
|
export const useLimits = () => {
|
|
const limits = useContext(LimitsContext);
|
|
|
|
if (!limits) {
|
|
throw new Error('useLimits must be used within a LimitsProvider');
|
|
}
|
|
|
|
return limits;
|
|
};
|
|
|
|
export type LimitsProviderProps = {
|
|
initialValue?: LimitsContextValue;
|
|
teamId?: number;
|
|
children?: React.ReactNode;
|
|
};
|
|
|
|
export const LimitsProvider = ({
|
|
initialValue = {
|
|
quota: FREE_PLAN_LIMITS,
|
|
remaining: FREE_PLAN_LIMITS,
|
|
},
|
|
teamId,
|
|
children,
|
|
}: LimitsProviderProps) => {
|
|
const [limits, setLimits] = useState(() => initialValue);
|
|
|
|
const refreshLimits = async () => {
|
|
const newLimits = await getLimits({ teamId });
|
|
|
|
setLimits((oldLimits) => {
|
|
if (equals(oldLimits, newLimits)) {
|
|
return oldLimits;
|
|
}
|
|
|
|
return newLimits;
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
void refreshLimits();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
const onFocus = () => {
|
|
void refreshLimits();
|
|
};
|
|
|
|
window.addEventListener('focus', onFocus);
|
|
|
|
return () => {
|
|
window.removeEventListener('focus', onFocus);
|
|
};
|
|
}, []);
|
|
|
|
return <LimitsContext.Provider value={limits}>{children}</LimitsContext.Provider>;
|
|
};
|