mirror of
https://github.com/starshardstudio/peafowl.git
synced 2024-11-22 04:54:19 +00:00
27 lines
No EOL
579 B
TypeScript
27 lines
No EOL
579 B
TypeScript
import {Rating} from "./rating.ts"
|
|
import {GlobalData} from "./site.ts"
|
|
|
|
|
|
export interface ReviewIdentifier {
|
|
type: string;
|
|
}
|
|
|
|
export interface ReviewWikidataIdentifier extends ReviewIdentifier {
|
|
type: "wikidata",
|
|
q: string,
|
|
}
|
|
|
|
|
|
export interface ReviewData extends GlobalData {
|
|
name?: string,
|
|
name_sort?: string,
|
|
rating?: Rating,
|
|
content?: string,
|
|
}
|
|
|
|
export function compareName(a: ReviewData, b: ReviewData): number {
|
|
const aName = a.name_sort ?? a.name ?? ""
|
|
const bName = b.name_sort ?? b.name ?? ""
|
|
|
|
return aName.localeCompare(bName)
|
|
} |