GithubHelp home page GithubHelp logo

Comments (4)

kylekatarnls avatar kylekatarnls commented on June 8, 2024 1

It falls in the option given above:

Use 2 OpeningHours instances and swap between them depending on the date.

Let's say you want to know if 2023-12-12 10:00 is open:

$dataset = [
    [
        'period' => ['start' => '2023-01-01', 'end' => '2023-12-31'],
        'openingHours' => OpeningHours::create([
            'monday' => ['09:00-12:00', '13:00-17:30'],
            'tuesday' => ['09:00-12:00', '13:00-17:30'],
            'friday' => ['09:00-12:00', '13:00-17:30'],
        ]),
    ], [
        'period' => ['start' => '2024-01-01', 'end' => '2024-03-31'],
        'openingHours' => OpeningHours::create([
            // ...
        ]),
    ],
];

function isOpen(array $dataset, DateTimeInterface $moment): bool
{
    foreach ($dataset as [
        'period' => ['start' => $start, 'end' => $end],
        'openingHours' => $openingHours,
    ]) {
        $date = $moment->format('Y-m-d');

        if ($date >= $start && $date < $end) {
            return $openingHours->isOpenAt($moment);
        }
    }

    return false; // default value if date does not match any period
}

var_dump(isOpen($dataset, new DateTimeImmutable('2023-12-12 10:00')));

from opening-hours.

kylekatarnls avatar kylekatarnls commented on June 8, 2024

Hello,

We don't have short-cut for that, so I see 3 options:

  • Generate with a loop the list of exceptions (you may use a DatePeriod from 12-20 to 02-28 and add the time depending of the current day of week, add it to the 'exceptions' array, then create the OpeningHours with it after.
  • Use 2 OpeningHours instances and swap between them depending on the date.
  • If you opening times matches a specific timezone with a DST change, then you can use offset (GMT+2) instead of named timezone (Europe/Berlin) or the reverse so the same hour:minute could apply all year long.

from opening-hours.

spatie-bot avatar spatie-bot commented on June 8, 2024

Dear contributor,

because this issue seems to be inactive for quite some time now, I've automatically closed it. If you feel this issue deserves some attention from my human colleagues feel free to reopen it.

from opening-hours.

robindirksen1 avatar robindirksen1 commented on June 8, 2024

@kylekatarnls i've a sort of the same use case, based on a contract that is valid for a period, we need to offer the opening hours.

Here is an example dataset:

$dataset = [
    [
        'period' => ['start' => '2023-01-01', 'end' => '2023-12-31'],
        'openingHours' => [
            'monday' => ['09:00-12:00', '13:00-17:30'],
            'tuesday' => ['09:00-12:00', '13:00-17:30'],
            'friday' => ['09:00-12:00', '13:00-17:30'],
        ],
    ], [
        'period' => ['start' => '2024-01-01', 'end' => '2024-03-31'],
        'openingHours' => [
            // ...
        ]
    ]
];

I tried using the exceptions-key, but that's only possible using the date to date, and not per day of week configurable.

from opening-hours.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.