mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
4dbad4e46c
* wip
* stash
* fix: make authenticationId nullable fk
* fix: apply generics to resolve compile time type errors
* fix: loosen integration settings
* chore: refactor into functional component
* feat: pass integrations all the way to embeds
* perf: avoid re-fetching integrations
* fix: change attr name to avoid type overlap
* feat: use hostname from embed settings in matcher
* Revert "feat: use hostname from embed settings in matcher"
This reverts commit e7485d9cda.
* feat: refactor into a class
* chore: refactor url regex formation as a util
* fix: escape regex special chars
* fix: remove in-house escapeRegExp in favor of lodash's
* fix: sanitize url
* perf: memoize embeds
* fix: rename hostname to url and allow spreading entire settings instead of just url
* fix: replace diagrams with drawio
* fix: rename
* fix: support self-hosted and saas both
* fix: assert on settings url
* fix: move embed integrations loading to hook
* fix: address review comments
* fix: use observer in favor of explicit state setters
* fix: refactor useEmbedIntegrations into useEmbeds
* fix: use translations for toasts
Co-authored-by: Tom Moor <tom.moor@gmail.com>
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
export type Role = "admin" | "viewer" | "member";
|
|
|
|
export type DateFilter = "day" | "week" | "month" | "year";
|
|
|
|
export type PublicEnv = {
|
|
URL: string;
|
|
CDN_URL: string;
|
|
COLLABORATION_URL: string;
|
|
AWS_S3_UPLOAD_BUCKET_URL: string;
|
|
AWS_S3_ACCELERATE_URL: string;
|
|
DEPLOYMENT: string | undefined;
|
|
ENVIRONMENT: string;
|
|
SENTRY_DSN: string | undefined;
|
|
TEAM_LOGO: string | undefined;
|
|
SLACK_CLIENT_ID: string | undefined;
|
|
SLACK_APP_ID: string | undefined;
|
|
MAXIMUM_IMPORT_SIZE: number;
|
|
SUBDOMAINS_ENABLED: boolean;
|
|
EMAIL_ENABLED: boolean;
|
|
DEFAULT_LANGUAGE: string;
|
|
GOOGLE_ANALYTICS_ID: string | undefined;
|
|
RELEASE: string | undefined;
|
|
};
|
|
|
|
export enum IntegrationType {
|
|
Post = "post",
|
|
Command = "command",
|
|
Embed = "embed",
|
|
}
|
|
|
|
export type IntegrationSettings<T> = T extends IntegrationType.Embed
|
|
? { url: string }
|
|
: T extends IntegrationType.Post
|
|
? { url: string; channel: string; channelId: string }
|
|
: T extends IntegrationType.Post
|
|
? { serviceTeamId: string }
|
|
:
|
|
| { url: string }
|
|
| { url: string; channel: string; channelId: string }
|
|
| { serviceTeamId: string };
|