1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/common/config/Config.ts
Braun Patrik f53c537a9d adding client side config
Implementing search disable
2016-05-10 21:33:58 +02:00

44 lines
961 B
TypeScript

export enum DatabaseType{
memory, mongoDB
}
interface ServerConfig {
port:number;
thumbnailSizes:Array<number>;
imagesFolder:string;
thumbnailFolder:string;
databaseType:DatabaseType;
}
interface SearchConfig {
searchEnabled:boolean
instantSearchEnabled:boolean
autocompleteEnabled:boolean
}
interface ClientConfig {
Search:SearchConfig;
}
export class ConfigClass {
public Server:ServerConfig = null;
public Client:ClientConfig = {
Search: {
searchEnabled: true,
instantSearchEnabled: true,
autocompleteEnabled: true
}
};
public setDatabaseType(type:DatabaseType) {
this.Server.databaseType = type;
if (type === DatabaseType.memory) {
this.Client.Search.searchEnabled = false;
this.Client.Search.instantSearchEnabled = false;
this.Client.Search.autocompleteEnabled = false;
}
}
}