import mongoose, { Document, Schema } from 'mongoose';

export interface ILocalizedString {
  en: string;
  zh: string;
}

const localizedStringSchema = {
  en: { type: String, default: '' },
  zh: { type: String, default: '' },
};

export interface IBookLesson extends Document {
  heroTitle: ILocalizedString;
  heroSubtitle: ILocalizedString;
  heroDescription: ILocalizedString;
  heroImage?: string;
  heroCtaText: ILocalizedString;
  heroCtaLink?: string;
  bookingTitle: ILocalizedString;
  bookingSubtitle: ILocalizedString;
  bookingDescription: ILocalizedString;
  availableDays: number[];
  timeSlots: Array<{ startTime: string; endTime: string }>;
  maxCapacityPerSlot: number;
  termsAndConditions: ILocalizedString[];
  updatedAt: Date;
}

const bookLessonSchema = new Schema<IBookLesson>(
  {
    heroTitle: {
      type: localizedStringSchema,
      default: {
        en: 'Successfully Activated: Your Golf ID is Ready',
        zh: '成功啟用：您的 Golf ID 已準備就緒',
      },
    },
    heroSubtitle: {
      type: localizedStringSchema,
      default: { en: 'FREE Golf Clinic', zh: '免費高球診所' },
    },
    heroDescription: {
      type: localizedStringSchema,
      default: {
        en: 'Whether you love golf, are looking to improve your skills, or are seeking golf coaching, the Golf Academy has you covered. We provide the best-in-town professional training and facilities so you can enjoy a better golf experience that meets all your needs.',
        zh: '無論您熱愛高爾夫、希望提升球技，還是尋找高球教練，Golf Academy 都能滿足您的需求。我們提供市內最優質的專業訓練和設施，讓您享受滿足所有需求的高球體驗。',
      },
    },
    heroImage: String,
    heroCtaText: {
      type: localizedStringSchema,
      default: { en: 'Enjoy Golf ID', zh: '享受 Golf ID' },
    },
    heroCtaLink: { type: String, default: 'https://www.golfid.com.hk/register' },
    bookingTitle: {
      type: localizedStringSchema,
      default: { en: 'Book Your Free Clinic Now', zh: '立即預約免費診所' },
    },
    bookingSubtitle: {
      type: localizedStringSchema,
      default: {
        en: 'Professional Golf Coaching & Skills Enhancement',
        zh: '專業高球教練與技術提升',
      },
    },
    bookingDescription: {
      type: localizedStringSchema,
      default: {
        en: 'The FREE Golf Clinic is available to book on the below schedules:',
        zh: '免費高球診所可在以下時間預約：',
      },
    },
    availableDays: {
      type: [Number],
      default: [1, 2, 3, 4],
    },
    timeSlots: {
      type: [
        {
          startTime: { type: String, required: true },
          endTime: { type: String, required: true },
        },
      ],
      default: [
        { startTime: '15:00', endTime: '16:00' },
        { startTime: '16:00', endTime: '17:00' },
      ],
    },
    maxCapacityPerSlot: { type: Number, default: 1 },
    termsAndConditions: {
      type: [localizedStringSchema],
      default: [
        {
          en: 'The Free Golf Clinic (hereinafter the "Lesson") is available only to newly activated Golf ID Members;',
          zh: '免費高球診所（以下簡稱「課程」）僅適用於新啟用的 Golf ID 會員；',
        },
        {
          en: 'Lessons are available from Monday to Thursday, with a duration of one hour. The available time slots are 3:00 PM to 4:00 PM and 4:00 PM to 5:00 PM. Lessons are not available on Fridays, Saturdays, Sundays, or Public Holidays;',
          zh: '課程於週一至週四開放，每節時長一小時。可預約時段為下午3:00至4:00及下午4:00至5:00。週五、週六、週日及公眾假期不開放；',
        },
        {
          en: 'Each eligible Golf ID Member is entitled to one Lesson only. Duplicate bookings are not permitted. The Golf Academy reserves the right to cancel any duplicate bookings without prior notice or compensation;',
          zh: '每位符合資格的 Golf ID 會員僅可預約一節課程。不允許重複預約。Golf Academy 保留在不事先通知或賠償的情況下取消任何重複預約的權利；',
        },
        {
          en: 'To cancel or change your booking, you must notify us by phone at (852) 3582-3088 or by email at bookinglesson@glg.com.hk at least two working days in advance;',
          zh: '如需取消或更改預約，必須至少提前兩個工作天致電 (852) 3582-3088 或發送電郵至 bookinglesson@glg.com.hk 通知我們；',
        },
        {
          en: 'For the safety of all participants and staff, the booked lesson will be cancelled automatically if a Black Rainstorm Warning, a Tropical Cyclone Warning Signal of Level 8 or above, or an Extreme Condition Warning is in effect at the time of the scheduled lesson. We will contact you on the next working day to arrange a reschedule.',
          zh: '為保障所有參加者及工作人員的安全，若在預定課程時間黑色暴雨警告、八號或以上熱帶氣旋警告信號或極端情況警告生效，已預約的課程將自動取消。我們將在下一個工作天與您聯繫安排改期。',
        },
        {
          en: 'In case of any disputes, the decision of Golf Lifestyle Group, Golf Academy, and its merchant partners shall be final and binding.',
          zh: '如有任何爭議，Golf Lifestyle Group、Golf Academy 及其商戶夥伴的決定為最終決定，具有約束力。',
        },
      ],
    },
  },
  {
    timestamps: true,
  }
);

export const BookLesson = mongoose.model<IBookLesson>('BookLesson', bookLessonSchema);
