mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
export enum DatabaseType{
|
|
memory
|
|
}
|
|
|
|
interface ServerConfig {
|
|
port:number;
|
|
imagesFolder:string;
|
|
thumbnailFolder:string;
|
|
databaseType:DatabaseType;
|
|
}
|
|
|
|
interface SearchConfig {
|
|
searchEnabled:boolean
|
|
instantSearchEnabled:boolean
|
|
autocompleteEnabled:boolean
|
|
}
|
|
|
|
interface ClientConfig {
|
|
thumbnailSizes:Array<number>;
|
|
Search:SearchConfig;
|
|
concurrentThumbnailGenerations:number;
|
|
enableCache:boolean;
|
|
enableOnScrollRendering:boolean;
|
|
enableOnScrollThumbnailPrioritising:boolean;
|
|
authenticationRequired:boolean;
|
|
}
|
|
export class ConfigClass {
|
|
|
|
public Server:ServerConfig = null;
|
|
|
|
public Client:ClientConfig = {
|
|
thumbnailSizes: [200, 400, 600],
|
|
Search: {
|
|
searchEnabled: false,
|
|
instantSearchEnabled: false,
|
|
autocompleteEnabled: false
|
|
},
|
|
concurrentThumbnailGenerations: 1,
|
|
enableCache: false,
|
|
enableOnScrollRendering: true,
|
|
enableOnScrollThumbnailPrioritising: true,
|
|
authenticationRequired: false
|
|
};
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
|