1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/common/config/Config.ts

66 lines
1.5 KiB
TypeScript
Raw Normal View History

export enum DatabaseType{
2016-12-27 23:09:47 +08:00
memory = 0, mysql = 1
}
interface MySQLConfig {
host: string;
database: string;
username: string;
password: string;
}
interface DataBaseConfig {
type: DatabaseType;
mysql?: MySQLConfig;
}
interface ServerConfig {
port:number;
imagesFolder:string;
thumbnailFolder:string;
2016-12-27 23:09:47 +08:00
database: DataBaseConfig;
}
interface SearchConfig {
searchEnabled:boolean
instantSearchEnabled:boolean
autocompleteEnabled:boolean
}
interface ClientConfig {
2016-05-12 17:00:46 +08:00
thumbnailSizes:Array<number>;
Search:SearchConfig;
2016-06-17 17:25:15 +08:00
concurrentThumbnailGenerations:number;
enableCache:boolean;
enableOnScrollRendering:boolean;
enableOnScrollThumbnailPrioritising:boolean;
authenticationRequired:boolean;
}
export class ConfigClass {
public Server:ServerConfig = null;
public Client:ClientConfig = {
2016-05-12 17:00:46 +08:00
thumbnailSizes: [200, 400, 600],
Search: {
2016-12-28 18:50:05 +08:00
searchEnabled: true,
instantSearchEnabled: true,
autocompleteEnabled: true
2016-06-17 17:25:15 +08:00
},
concurrentThumbnailGenerations: 1,
enableCache: false,
enableOnScrollRendering: true,
enableOnScrollThumbnailPrioritising: true,
2016-07-07 19:56:39 +08:00
authenticationRequired: true
};
public setDatabaseType(type:DatabaseType) {
2016-12-27 23:09:47 +08:00
this.Server.database.type = type;
if (type === DatabaseType.memory) {
this.Client.Search.searchEnabled = false;
this.Client.Search.instantSearchEnabled = false;
this.Client.Search.autocompleteEnabled = false;
}
}
}