Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eindeutige URLs verwenden #27

Open
mario-zelger opened this issue Feb 12, 2024 · 0 comments
Open

Eindeutige URLs verwenden #27

mario-zelger opened this issue Feb 12, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@mario-zelger
Copy link
Collaborator

Im Moment werden die URLs von sections auf Basis des slugs abgeleitet. Die Eindeutigkeit basiert somit grundsätzlich auf dem Bereich / Kapitel. Wird dieser slug angepasst so ist die bisherige URL nicht mehr gültig.

Aufgrund der Übersetzungen sind die URLs zudem sprachabhängig. Das Potenzial für ungültige Links steigt damit noch zusätzlich. Hier ein Beipsiel eines einzelnen Kapitels.

  • DE: https://scout-ch.github.io/hering/#/Vorbereitung%23Lagerdaten
  • FR: https://scout-ch.github.io/hering/#/Preparation%23Donnees-relatives-aux-camps
  • IT: https://scout-ch.github.io/hering/#/Preparazione%23Dati-del-campo

Das aktuelle API liefert pro Bereich und Kapitel eindeutige, nummerische Ids. Diese könnten anstelle der slugs in die URL eingebaut werden. Das Format wäre dann /hering-root/#/:sectionId%23:chapterId.

Beispiel

[
    {
        "id": 1,
        "title": "Bereich 1",
        # ... mehr Daten
        "chapters": [
            {
                "id": 1,
                "title": "Kapitel 1",
                # ... mehr Daten
            },
            {
                "id": 2,
                "title": "Kapitel 2",
                # ... mehr Daten
            },
            # ... mehr Daten
    },
    # ... mehr Daten
]

URL aktuell: https://scout-ch.github.io/hering/#/Bereich-1%23Kapitel-1
URL neu: https://scout-ch.github.io/hering/#/1%231

Wenn #26 umgesetzt ist würde die neue URL https://hering.scout.ch/1#1 lauten. Eine sprachunabhängige URL würde zudem bei der Umsetzung von #10 helfen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant