Desktop support (#4484)
* Remove home link on desktop app * Spellcheck, installation toasts, background styling, … * Add email,slack, auth support * More desktop style tweaks * Move redirect to client * cleanup * Record desktop usage * docs * fix: Selection state in search input when double clicking header
This commit is contained in:
@@ -160,16 +160,17 @@ class Team extends ParanoidModel {
|
||||
}
|
||||
|
||||
get url() {
|
||||
const url = new URL(env.URL);
|
||||
|
||||
// custom domain
|
||||
if (this.domain) {
|
||||
return `https://${this.domain}`;
|
||||
return `${url.protocol}//${this.domain}${url.port ? `:${url.port}` : ""}`;
|
||||
}
|
||||
|
||||
if (!this.subdomain || !env.SUBDOMAINS_ENABLED) {
|
||||
return env.URL;
|
||||
}
|
||||
|
||||
const url = new URL(env.URL);
|
||||
url.host = `${this.subdomain}.${getBaseDomain()}`;
|
||||
return url.href.replace(/\/$/, "");
|
||||
}
|
||||
|
||||
@@ -57,6 +57,7 @@ import NotContainsUrl from "./validators/NotContainsUrl";
|
||||
export enum UserFlag {
|
||||
InviteSent = "inviteSent",
|
||||
InviteReminderSent = "inviteReminderSent",
|
||||
Desktop = "desktop",
|
||||
DesktopWeb = "desktopWeb",
|
||||
MobileWeb = "mobileWeb",
|
||||
}
|
||||
@@ -366,11 +367,12 @@ class User extends ParanoidModel {
|
||||
}
|
||||
|
||||
// Track the clients each user is using
|
||||
if (ctx.userAgent?.isMobile) {
|
||||
this.setFlag(UserFlag.MobileWeb);
|
||||
}
|
||||
if (ctx.userAgent?.isDesktop) {
|
||||
if (ctx.userAgent?.source.includes("Outline/")) {
|
||||
this.setFlag(UserFlag.Desktop);
|
||||
} else if (ctx.userAgent?.isDesktop) {
|
||||
this.setFlag(UserFlag.DesktopWeb);
|
||||
} else if (ctx.userAgent?.isMobile) {
|
||||
this.setFlag(UserFlag.MobileWeb);
|
||||
}
|
||||
|
||||
// Save only writes to the database if there are changes
|
||||
|
||||
Reference in New Issue
Block a user