// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Linq; using System.Threading; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Game.Online.API; using osu.Game.Online.API.Requests; using osu.Game.Online.API.Requests.Responses; using osu.Game.Overlays.Wiki; using osu.Game.Overlays.Wiki.Markdown; namespace osu.Game.Overlays { public class WikiOverlay : OnlineOverlay { private const string index_path = @"main_page"; private readonly Bindable path = new Bindable(index_path); private readonly Bindable wikiData = new Bindable(); [Resolved] private IAPIProvider api { get; set; } private GetWikiRequest request; private CancellationTokenSource cancellationToken; private bool displayUpdateRequired = true; public WikiOverlay() : base(OverlayColourScheme.Orange, false) { } public void ShowPage(string pagePath = index_path) { path.Value = pagePath.Trim('/'); Show(); } protected override WikiHeader CreateHeader() => new WikiHeader { ShowIndexPage = () => ShowPage(), ShowParentPage = showParentPage, }; protected override void LoadComplete() { base.LoadComplete(); path.BindValueChanged(onPathChanged); wikiData.BindTo(Header.WikiPageData); } protected override void PopIn() { base.PopIn(); if (displayUpdateRequired) { path.TriggerChange(); displayUpdateRequired = false; } } protected override void PopOutComplete() { base.PopOutComplete(); displayUpdateRequired = true; } protected void LoadDisplay(Drawable display) { ScrollFlow.ScrollToStart(); LoadComponentAsync(display, loaded => { Child = loaded; Loading.Hide(); }, (cancellationToken = new CancellationTokenSource()).Token); } private void onPathChanged(ValueChangedEvent e) { cancellationToken?.Cancel(); request?.Cancel(); request = new GetWikiRequest(e.NewValue); Loading.Show(); request.Success += response => Schedule(() => onSuccess(response)); request.Failure += _ => Schedule(() => LoadDisplay(Empty())); api.PerformAsync(request); } private void onSuccess(APIWikiPage response) { wikiData.Value = response; if (response.Layout == index_path) { LoadDisplay(new WikiMainPage { Markdown = response.Markdown, Padding = new MarginPadding { Vertical = 20, Horizontal = 50, }, }); } else { LoadDisplay(new WikiMarkdownContainer { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, CurrentPath = $@"{api.WebsiteRootUrl}/wiki/{path.Value}/", Text = response.Markdown, DocumentMargin = new MarginPadding(0), DocumentPadding = new MarginPadding { Vertical = 20, Left = 30, Right = 50, }, }); } } private void showParentPage() { var parentPath = string.Join("/", path.Value.Split('/').SkipLast(1)); ShowPage(parentPath); } protected override void Dispose(bool isDisposing) { cancellationToken?.Cancel(); request?.Cancel(); base.Dispose(isDisposing); } } }