summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibManual/PageNode.cpp
blob: 398eedb53c3e44f308a99ab4603c114c4f670a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
 * Copyright (c) 2022, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "PageNode.h"
#include "SectionNode.h"
#include <AK/RefPtr.h>

namespace Manual {

Node const* PageNode::parent() const
{
    return m_section.ptr();
}

ErrorOr<Span<NonnullRefPtr<Node>>> PageNode::children() const
{
    static NonnullRefPtrVector<Node> empty_vector;
    return empty_vector.span();
}

ErrorOr<String> PageNode::path() const
{
    return TRY(String::formatted("{}/{}.md", TRY(m_section->path()), m_page));
}

ErrorOr<NonnullRefPtr<PageNode>> PageNode::help_index_page()
{
    static NonnullRefPtr<PageNode> const help_index_page = TRY(try_make_ref_counted<PageNode>(sections[7 - 1], TRY(String::from_utf8("Help-index"sv))));
    return help_index_page;
}

}