DocSpace-client/packages/asc-web-common/store/SettingsStore.js

269 lines
7.2 KiB
JavaScript

import { action, computed, makeObservable, observable } from "mobx";
import api from "../api";
import { ARTICLE_PINNED_KEY, LANGUAGE } from "../constants";
class SettingsStore {
isLoading = false;
isLoaded = false;
currentProductId = "";
culture = "en-US";
cultures = [];
trustedDomains = [];
trustedDomainsType = 1;
timezone = "UTC";
timezones = [];
utcOffset = "00:00:00";
utcHoursOffset = 0;
defaultPage = "/"; //"/products/files";
homepage = ""; //config.homepage;
datePattern = "M/d/yyyy";
datePatternJQ = "00/00/0000";
dateTimePattern = "dddd, MMMM d, yyyy h:mm:ss tt";
datepicker = {
datePattern: "mm/dd/yy",
dateTimePattern: "DD, mm dd, yy h:mm:ss tt",
timePattern: "h:mm tt",
};
organizationName = "ONLYOFFICE";
greetingSettings = "Web Office Applications";
enableAdmMess = false;
urlLicense = "https://gnu.org/licenses/gpl-3.0.html";
urlSupport = "https://helpdesk.onlyoffice.com/";
logoUrl = "/static/images/nav.logo.opened.react.svg";
customNames = {
id: "Common",
userCaption: "User",
usersCaption: "Users",
groupCaption: "Group",
groupsCaption: "Groups",
userPostCaption: "Title",
regDateCaption: "Registration Date",
groupHeadCaption: "Head",
guestCaption: "Guest",
guestsCaption: "Guests",
};
isDesktopClient = window["AscDesktopEditor"] !== undefined;
//isDesktopEncryption: desktopEncryption;
isEncryptionSupport = false;
encryptionKeys = null;
isHeaderVisible = false;
isTabletView = false;
isArticlePinned =
localStorage.getItem(ARTICLE_PINNED_KEY) === "true" || false;
hashSettings = null;
title = "";
ownerId = null;
nameSchemaId = null;
owner = {};
wizardCompleted = true;
passwordSettings = null;
constructor() {
makeObservable(this, {
currentProductId: observable,
culture: observable,
cultures: observable,
trustedDomains: observable,
trustedDomainsType: observable,
timezone: observable,
timezones: observable,
utcOffset: observable,
utcHoursOffset: observable,
defaultPage: observable,
homepage: observable,
datePattern: observable,
datePatternJQ: observable,
dateTimePattern: observable,
datepicker: observable,
organizationName: observable,
greetingSettings: observable,
enableAdmMess: observable,
urlLicense: observable,
urlSupport: observable,
urlAuthKeys: computed,
logoUrl: observable,
customNames: observable,
isDesktopClient: observable,
isEncryptionSupport: observable,
encryptionKeys: observable,
isHeaderVisible: observable,
isTabletView: observable,
isArticlePinned: observable,
hashSettings: observable,
ownerId: observable,
nameSchemaId: observable,
wizardCompleted: observable,
getSettings: action,
getCurrentCustomSchema: action,
getPortalSettings: action,
init: action,
isLoaded: observable,
isLoading: observable,
setIsLoading: action,
setIsLoaded: action,
getPortalCultures: action,
getIsEncryptionSupport: action,
updateEncryptionKeys: action,
setEncryptionKeys: action,
getEncryptionKeys: action,
setModuleInfo: action,
setCurrentProductId: action,
setWizardComplete: action,
setPasswordSettings: action,
getPortalPasswordSettings: action,
setTimezones: action,
getPortalTimezones: action,
setHeaderVisible: action,
setIsTabletView: action,
setValue: action,
setArticlePinned: action,
});
}
get urlAuthKeys() {
const splitted = this.culture.split("-");
const lang = splitted.length > 0 ? splitted[0] : "en";
return `https://helpcenter.onlyoffice.com/${lang}/installation/groups-authorization-keys.aspx`;
}
setValue = (key, value) => {
this[key] = value;
};
getSettings = async () => {
const newSettings = await api.settings.getSettings();
Object.keys(newSettings).map((key) => {
if (key in this) {
this.setValue(key, newSettings[key]);
if (key === "culture" && !localStorage.getItem(LANGUAGE)) {
localStorage.setItem(LANGUAGE, newSettings[key]);
}
} else if (key === "passwordHash") {
this.setValue("hashSettings", newSettings[key]);
}
});
return newSettings;
};
getCurrentCustomSchema = async (id) => {
this.customNames = await api.settings.getCurrentCustomSchema(id);
};
getPortalSettings = async () => {
const origSettings = await this.getSettings();
if (origSettings.nameSchemaId) {
this.getCurrentCustomSchema(origSettings.nameSchemaId);
}
};
init = async () => {
this.setIsLoading(true);
await this.getPortalSettings();
this.setIsLoading(false);
this.setIsLoaded(true);
};
setIsLoading = (isLoading) => {
this.isLoading = isLoading;
};
setIsLoaded = (isLoaded) => {
this.isLoaded = isLoaded;
};
getPortalCultures = async () => {
this.cultures = await api.settings.getPortalCultures();
};
getIsEncryptionSupport = async () => {
this.isEncryptionSupport = await api.files.getIsEncryptionSupport();
};
updateEncryptionKeys = (encryptionKeys) => {
this.encryptionKeys = encryptionKeys ?? {};
};
setEncryptionKeys = async (keys) => {
await api.files.setEncryptionKeys(keys);
this.updateEncryptionKeys(keys);
};
getEncryptionKeys = async () => {
const encryptionKeys = await api.files.getEncryptionKeys();
this.updateEncryptionKeys(encryptionKeys);
};
setModuleInfo = (homepage, productId) => {
if (this.homepage == homepage) return;
this.homepage = homepage;
this.setCurrentProductId(productId);
const baseElm = document.getElementsByTagName("base");
if (baseElm && baseElm.length === 1) {
const baseUrl = homepage
? homepage[homepage.length - 1] === "/"
? homepage
: `${homepage}/`
: "/";
console.log("SET base URL", baseUrl);
baseElm[0].setAttribute("href", baseUrl);
}
};
setCurrentProductId = (currentProductId) => {
this.currentProductId = currentProductId;
};
getPortalOwner = async () => {
const owner = await api.people.getUserById(this.ownerId);
this.owner = owner;
return owner;
};
setWizardComplete = () => {
this.setWizardComplete = true;
};
setPasswordSettings = (passwordSettings) => {
this.passwordSettings = passwordSettings;
};
getPortalPasswordSettings = async (confirmKey = null) => {
const settings = await api.settings.getPortalPasswordSettings(confirmKey);
this.setPasswordSettings(settings);
};
setTimezones = (timezones) => {
this.timezones = timezones;
};
getPortalTimezones = async (token = undefined) => {
const timezones = await api.settings.getPortalTimezones(token);
this.setTimezones(timezones);
};
setHeaderVisible = (isHeaderVisible) => {
this.isHeaderVisible = isHeaderVisible;
};
setIsTabletView = (isTabletView) => {
this.isTabletView = isTabletView;
};
setArticlePinned = (isPinned) => {
isPinned
? localStorage.setItem(ARTICLE_PINNED_KEY, isPinned)
: localStorage.removeItem(ARTICLE_PINNED_KEY);
this.isArticlePinned = isPinned;
};
}
export default SettingsStore;