Full Code of xjh22222228/nav for AI

main 451927e0a803 cached
264 files
707.6 KB
245.7k tokens
646 symbols
2 requests
Download .txt
Showing preview only (773K chars total). Download the full file or copy to clipboard to get everything.
Repository: xjh22222228/nav
Branch: main
Commit: 451927e0a803
Files: 264
Total size: 707.6 KB

Directory structure:
gitextract_rvumvq3o/

├── .editorconfig
├── .eslintignore
├── .github/
│   └── workflows/
│       └── ci.yml
├── .gitignore
├── .npmrc
├── .oxlintrc.json
├── .postcssrc.json
├── .prettierrc.json
├── LICENSE
├── README.md
├── README_EN.md
├── angular.json
├── data/
│   ├── component.json
│   ├── db.json
│   ├── internal.json
│   ├── search.json
│   ├── settings.json
│   └── tag.json
├── nav.config.yaml
├── netlify.toml
├── ngsw-config.json
├── package.json
├── public/
│   ├── manifest.webmanifest
│   └── readme.md
├── scripts/
│   ├── build.ts
│   ├── db.ts
│   ├── loading.ts
│   ├── start.ts
│   └── utils.ts
├── src/
│   ├── api/
│   │   └── index.ts
│   ├── app/
│   │   ├── app.component.html
│   │   ├── app.component.scss
│   │   ├── app.component.ts
│   │   ├── app.config.ts
│   │   └── app.routes.ts
│   ├── assets/
│   │   ├── fonts/
│   │   │   └── iconfont.css
│   │   └── styles/
│   │       ├── dark.scss
│   │       ├── nprogress.css
│   │       └── tailwind.css
│   ├── components/
│   │   ├── breadcrumb/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── calendar/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── card/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── carousel/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── class-tabs/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── component-group/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── countdown/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── create-web/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── delete-modal/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── edit-class/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── fixbar/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── footer/
│   │   │   ├── footer.component.html
│   │   │   ├── footer.component.scss
│   │   │   ├── footer.component.ts
│   │   │   └── template.ts
│   │   ├── holiday/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── html/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── icon-git/
│   │   │   ├── icon-git.component.html
│   │   │   ├── icon-git.component.scss
│   │   │   └── icon-git.component.ts
│   │   ├── image/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── loading/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── login/
│   │   │   ├── login.component.html
│   │   │   ├── login.component.scss
│   │   │   └── login.component.ts
│   │   ├── logo/
│   │   │   ├── logo.component.html
│   │   │   ├── logo.component.scss
│   │   │   └── logo.component.ts
│   │   ├── move-web/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── news/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   ├── index.component.ts
│   │   │   └── types.ts
│   │   ├── no-data/
│   │   │   ├── no-data.component.html
│   │   │   ├── no-data.component.scss
│   │   │   └── no-data.component.ts
│   │   ├── off-work/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── phone-class/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── runtime/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── search/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   ├── index.component.ts
│   │   │   └── types.ts
│   │   ├── side-images/
│   │   │   ├── image/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── sidebar/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── swiper/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   ├── index.component.ts
│   │   │   └── swiper-item/
│   │   │       ├── index.component.html
│   │   │       ├── index.component.scss
│   │   │       └── index.component.ts
│   │   ├── tag-list/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── toolbar-title/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── upload-file/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── upload-image/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── web-list/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   └── web-more-menu/
│   │       ├── index.component.html
│   │       ├── index.component.scss
│   │       └── index.component.ts
│   ├── constants/
│   │   ├── index.ts
│   │   └── symbol.ts
│   ├── environments/
│   │   ├── environment.prod.ts
│   │   └── environment.ts
│   ├── locale/
│   │   ├── english.ts
│   │   ├── index.ts
│   │   └── zh_CN.ts
│   ├── main.html
│   ├── main.ts
│   ├── pipe/
│   │   └── safeHtml.pipe.ts
│   ├── services/
│   │   ├── common.ts
│   │   └── jump.ts
│   ├── store/
│   │   └── index.ts
│   ├── styles.scss
│   ├── types/
│   │   ├── index.ts
│   │   └── type.d.ts
│   ├── utils/
│   │   ├── bookmark.ts
│   │   ├── http.ts
│   │   ├── index.ts
│   │   ├── mitt.ts
│   │   ├── pureUtils.ts
│   │   ├── sw.ts
│   │   ├── user.ts
│   │   ├── utils.ts
│   │   └── web.ts
│   └── view/
│       ├── light/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── mobile/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── shortcut/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── side/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── sim/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── super/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       └── system/
│           ├── auth/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── bookmark/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── bookmark-export/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── collect/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── component/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   ├── index.component.ts
│           │   └── types.ts
│           ├── config/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── index.component.html
│           ├── index.component.scss
│           ├── index.component.ts
│           ├── info/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── search/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── setting/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── tag/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           └── web/
│               ├── index.component.html
│               ├── index.component.scss
│               └── index.component.ts
├── tailwind.config.js
├── tsconfig.app.json
├── tsconfig.json
└── vercel.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .editorconfig
================================================
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single
ij_typescript_use_double_quotes = false

[*.md]
max_line_length = off
trim_trailing_whitespace = false


================================================
FILE: .eslintignore
================================================
data/
main.ts
polyfills.ts
test.ts
environments/
assets/

================================================
FILE: .github/workflows/ci.yml
================================================
name: Build web
on:
  push:
    branches:
      - master
      - main
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Set Node.js
        uses: actions/setup-node@v3
        with:
          node-version: 22.x
      - name: Install pnpm
        uses: pnpm/action-setup@v4
        with:
          version: 10
      - name: Install
        run: |
          pnpm install
      # dist/404.html: gh-pages history mode
      - name: Build
        run: |
          npm run build-gh-pages
          cp dist/browser/index.html dist/browser/404.html
      - name: Deploy
        uses: JamesIves/github-pages-deploy-action@v4
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          branch: gh-pages
          folder: dist/browser


================================================
FILE: .gitignore
================================================
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.

# Compiled output
/dist
/tmp
/out-tsc
/bazel-out

# Node
/node_modules
npm-debug.log
yarn-error.log

# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# Visual Studio Code
.vscode
.history/*

# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
Thumbs.db

# build output
src/index.html
nav.config.json
_upload
test.md
data/collect.json
data/serverdb.json
data/news.json
data/backup.json
/.dockerignore
/Dockerfile
.next

log/
logs/

================================================
FILE: .npmrc
================================================
shamefully-hoist=true

================================================
FILE: .oxlintrc.json
================================================
{
  "rules": {
    "no-this-alias": 0,
    "no-unused-vars": [
      "error",
      {
        "ignoreRestSiblings": true
      }
    ]
  }
}


================================================
FILE: .postcssrc.json
================================================
{
  "plugins": {
    "@tailwindcss/postcss": {}
  }
}


================================================
FILE: .prettierrc.json
================================================
{
  "semi": false,
  "singleQuote": true
}


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

                            Preamble

The GNU General Public License is a free, copyleft license for
software and other kinds of works.

The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.

When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.

Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

0. Definitions.

"This License" refers to version 3 of the GNU General Public License.

"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.

To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

A "covered work" means either the unmodified Program or a work based
on the Program.

To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

1. Source Code.

The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.

A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

The Corresponding Source for a work in source code form is that
same work.

2. Basic Permissions.

All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.

3. Protecting Users' Legal Rights From Anti-Circumvention Law.

No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

4. Conveying Verbatim Copies.

You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

5. Conveying Modified Source Versions.

You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

6. Conveying Non-Source Forms.

You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

7. Additional Terms.

"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

8. Termination.

You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

9. Acceptance Not Required for Having Copies.

You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

10. Automatic Licensing of Downstream Recipients.

Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.

An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

11. Patents.

A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".

A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

12. No Surrender of Others' Freedom.

If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

13. Use with the GNU Affero General Public License.

Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

14. Revised Versions of this License.

The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

15. Disclaimer of Warranty.

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

16. Limitation of Liability.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

17. Interpretation of Sections 15 and 16.

If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
<p align="center">
  <a href="https://nav3.cn/?g">
    <img src="https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/logo.svg" width="130" />
  </a>
  <br />
  <b>发现导航</b>
  <p align="center">一个纯静态、支持SEO、在线编辑的强大导航网站,希望您会喜欢</p>
  <p align="center">内置收录多达 800+ 优质网站, 助您工作、学习和生活</p>
  <p align="center">
    <a href="README_EN.md"><img alt="english" src="https://img.shields.io/static/v1.svg?label=&message=English&style=flat-square&color=ff5000"></a>
    <img src="https://img.shields.io/github/v/release/xjh22222228/nav" />
    <a href="https://github.com/xjh22222228/nav/stargazers"><img src="https://img.shields.io/github/stars/xjh22222228/nav" alt="Stars"/></a>
    <img alt="Angular" src="https://img.shields.io/static/v1.svg?label=&message=Angular&style=flat-square&color=C82B38">
    <img src="https://img.shields.io/github/license/xjh22222228/nav" />
  </p>
</p>

<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="
      https://api.star-history.com/svg?repos=xjh22222228/nav&type=Date&theme=dark
    "
  />
  <source
    media="(prefers-color-scheme: light)"
    srcset="
      https://api.star-history.com/svg?repos=xjh22222228/nav&type=Date
    "
  />
  <img
    alt="Star History Chart"
    src="https://api.star-history.com/svg?repos=xjh22222228/nav&type=Date"
  />
</picture>

## 设计理念

无数据库、无服务器、零成本一键部署、开箱即用,但又可以像数据库那样操纵数据和保存。

好用、简单、强大。

[谁在使用?](https://official.nav3.cn/?id=3)

## 特性

- 🍰 内置 `800+` 优质网站
- 🍰 支持 [码云 Gitee](https://gitee.com/xiejiahe/nav)
- 🍰 支持 [GitLab](https://gitlab.com/xjh22222228/nav)
- 🍰 支持从浏览器书签导入
- 🍰 支持将数据导出到浏览器书签
- 🍰 支持 AI 翻译
- 🍰 支持用户提交新增、编辑、删除
- 🍰 支持自有部署(pm2|Docker|宝塔)/Fork
- 🍰 支持分类/网站移动和引用
- 🍰 支持 SEO 搜索引擎
- 🍰 支持网站关联多个网址或标签
- 🍰 支持检测网站存活状态
- 🍰 支持配置仅自己可见
- 🍰 支持自动抓取网站图标/名称/描述
- 🍰 支持小组件个性化定制
- 🍰 支持暗黑模式
- 🍰 支持后台管理, 无需部署
- 🍰 支持足迹记忆
- 🍰 支持多种搜索查询
- 🍰 支持自定义引擎搜索
- 🍰 支持卡片广告展示
- 🍰 支持 PWA 应用
- 🍰 多款高颜值主题切换
- 🍰 强大的响应式系统
- 🍰 多种 Loading 加载动画
- 🍰 多种卡片风格设计
- 🍰 完全纯静态, 提供自动化部署功能
- 🍰 三叉树分类、结构清晰、分类清晰

## 预览

- [https://nav3.cn](https://nav3.cn)

![Preview](https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/preview.gif)

## 可以干嘛

- 部署公司内部导航系统,统一管理常用链接
- 个人书签管理,替代浏览器收藏夹
- 个人导航网站,分享、价值、发现

## 部署

零成本部署,像数 `321` 一样简单。

#### gh-pages (免费)

1、右上角点击 `Fork` 当前项目。

2、[https://github.com/settings/tokens/new](https://github.com/settings/tokens/new) 申请 `token`, 勾选读写权限, 复制并保存 Token。

3、打开 https://github.com/你的用户名/nav/actions 检查是否已开启 action 自动部署

4、修改项目根目录配置文件 [nav.config.yaml](nav.config.yaml) 只需要修改仓库地址 `gitRepoUrl` 字段

5、打开 https://你的用户名.github.io/nav 就能看到一个非常强大的导航网站了。

如果打开 404,请打开 https://github.com/你的用户名/nav/settings/pages 检查分支是否是 **gh-pages**。

#### Netlify 推荐(免费)

打包路径 `dist/browser`

[https://www.netlify.com/](https://www.netlify.com/)

#### Vercel 推荐(免费)

[https://github.com/apps/vercel](https://github.com/apps/vercel)

#### Cloudflare pages 推荐(免费)

[https://www.cloudflare.com/zh-cn](https://www.cloudflare.com/zh-cn)

## 配置说明

只需要修改根目录 `nav.config.yaml` 以下相关字段
|Fork |自有部署 | 字段 | 说明 |
| --------------------------------------------- | -------- |--- |--- |
|√ | | gitRepoUrl | 填写您的仓库地址 |
|√ | | branch | 部署分支 |
|√ | | imageRepoUrl | 图片仓库, 默认主仓库 `https://github.com/xjh22222228/image?branch=main` |
|√ | √| hashMode | 路由是否 Hash 模式, 如果是部署在 `github pages` 务必设为 true |
|√ | √| email | 用户提交收录通知 |
| | √| password | 自有部署登录密码,`Fork` 用户无需填写 |
| | √| address | 自有部署, 一旦填写认为你是自有部署 |
| | √| mailConfig | 自有部署,用户收录通知邮箱配置 |

## 后台

将路由地址修改为 `system` 即可进入,如: https://www.nav3.cn 修改为 https://www.nav3.cn/system

## 升级

将你的仓库克隆下来执行以下命令

```bash
git pull
git remote add upstream https://gitee.com/xiejiahe/nav.git
git fetch upstream main
git merge upstream/main --allow-unrelated-histories --no-edit
git push

# 如果安装了node只需执行
npm run update
```

## 支持

项目于 2018 年到至今一直坚持维护和开源, 经过 N 次的迭代与优化, 如果项目能帮到您是我的荣幸。

您可以请作者喝杯咖啡,继续战斗下去

<img src="https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/img/32.png" width="600">

## LICENSE

For commercial sites, themes, projects, and applications, keep your source code private/proprietary by purchasing a [Commercial License](https://official.nav3.cn/pricing).

Licensed under the GNU General Public License 3.0 for compatible open source projects and non-commercial use.

Copyright 2024-present xiejiahe


================================================
FILE: README_EN.md
================================================
<p align="center">
  <a href="https://nav3.cn/?g">
    <img src="https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/logo.svg" width="130" />
  </a>
  <br />
  <b>Discovery Navigation</b>
  <p align="center">A powerful navigation website that is purely static, supports SEO, and online editing</p>
  <p align="center">Built-in collection of 800+ high-quality websites to assist your work, study, and life</p>
  <p align="center">
    <a href="README.md"><img alt="简体中文" src="https://img.shields.io/static/v1.svg?label=&message=zh_cn&style=flat-square&color=ff5000"></a>
    <img src="https://img.shields.io/github/v/release/xjh22222228/nav" />
    <a href="https://github.com/xjh22222228/nav/stargazers"><img src="https://img.shields.io/github/stars/xjh22222228/nav" alt="Stars"/></a>
    <img alt="Angular" src="https://img.shields.io/static/v1.svg?label=&message=Angular&style=flat-square&color=C82B38">
    <img src="https://img.shields.io/github/license/xjh22222228/nav" />
  </p>
</p>

<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="
      https://api.star-history.com/svg?repos=xjh22222228/nav&type=Date&theme=dark
    "
  />
  <source
    media="(prefers-color-scheme: light)"
    srcset="
      https://api.star-history.com/svg?repos=xjh22222228/nav&type=Date
    "
  />
  <img
    alt="Star History Chart"
    src="https://api.star-history.com/svg?repos=xjh22222228/nav&type=Date"
  />
</picture>

## Design Philosophy

No database, no server, zero-cost one-click deployment, ready to use out of the box, yet capable of manipulating and saving data like a database.

Easy to use, simple, and powerful.

[Who is using it?](https://official.nav3.cn/?id=3)

## Features

- 🍰 Built-in `800+` high-quality websites
- 🍰 Support for [Gitee](https://gitee.com/xiejiahe/nav)
- 🍰 Support for [GitLab](https://gitlab.com/xjh22222228/nav)
- 🍰 Support for importing from browser bookmarks
- 🍰 Support for exporting data to browser bookmarks
- 🍰 Support for AI translation
- 🍰 Support for user submissions, edits, and deletions
- 🍰 Support for self-deployment (pm2|Docker|BT Panel)/Fork
- 🍰 Support for category/website movement and references
- 🍰 Support for SEO search engines
- 🍰 Support for associating websites with multiple URLs or tags
- 🍰 Support for detecting website status
- 🍰 Support for configuring visibility only to yourself
- 🍰 Support for automatically fetching website icons/names/descriptions
- 🍰 Support for widget personalization
- 🍰 Support for dark mode
- 🍰 Support for backend management without deployment
- 🍰 Support for footprint memory
- 🍰 Support for multiple search queries
- 🍰 Support for custom search engines
- 🍰 Support for card advertisement display
- 🍰 Support PWA applications
- 🍰 Multiple high-value themes to switch between
- 🍰 Powerful responsive system
- 🍰 Various loading animations
- 🍰 Multiple card style designs
- 🍰 Completely static with automated deployment functionality
- 🍰 Ternary tree categorization with clear structure and classification

## Preview

- [https://nav3.cn](https://nav3.cn)

![Preview](https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/preview.gif)

## Use Cases

- Deploy internal company navigation system for unified link management
- Personal bookmark management, browser bookmark alternative
- Personal navigation website for sharing, value, and discovery

## Deployment

Zero-cost deployment, as easy as counting `3-2-1`.

#### gh-pages (Free)

1. Click `Fork` in the upper right corner to fork this repository.

2. Request a token at [https://github.com/settings/tokens/new](https://github.com/settings/tokens/new), check **repo** and **workflow** permissions, then copy and save the Token.

3. Open https://github.com/your-username/nav/actions to ensure GitHub Actions are enabled.

4. Modify the [gitRepoUrl](file:///Users/xiejiahe/NoCode/develop/open-source/nav/scripts/utils.ts#L64-L67) field in the root configuration file [nav.config.yaml](nav.config.yaml).

5. Visit https://your-username.github.io/nav to access your powerful navigation site.

If you encounter 404, open https://github.com/your-username/nav/settings/pages and verify if the deployment branch is set to **gh-pages**.

#### Netlify (Recommended, Free)

build path `dist/browser`

[https://www.netlify.com/](https://www.netlify.com/)

#### Vercel (Recommended, Free)

[https://github.com/apps/vercel](https://github.com/apps/vercel)

#### Cloudflare pages (Recommended, Free)

[https://www.cloudflare.com](https://www.cloudflare.com)

## Configuration

Only need to modify the following fields in the root `nav.config.yaml`
|Fork |Self-Deploy | Field | Description |
| --------------------------------------------- | -------- |--- |--- |
|√ | | gitRepoUrl | Your repository URL |
|√ | | branch | Deployment branch |
|√ | | imageRepoUrl | Image repository, default `https://github.com/xjh22222228/image?branch=main` |
|√ | √| hashMode | Whether to use Hash mode for routing, must be true for `github pages` |
|√ | √| email | User submission notification |
| | √| password | Self-deployment login password, not needed for `Fork` users |
| | √| address | Self-deployment address |
| | √| mailConfig | Email configuration for self-deployment notifications |

## Backend

Change the route to `system` to access, e.g., https://www.nav3.cn to https://www.nav3.cn/system

## Upgrade

Clone your repository and execute:

```bash
git pull
git remote add upstream https://gitee.com/xiejiahe/nav.git
git fetch upstream main
git merge upstream/main --allow-unrelated-histories --no-edit
git push

# If node is installed, just run
npm run update
```

## Support

This project has been maintained and open-sourced since 2018, through numerous iterations and optimizations. It's my honor if this project can help you.

You can buy the author a coffee to keep fighting

<img src="https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/img/32.png" width="600">

## LICENSE

For commercial sites, themes, projects, and applications, keep your source code private/proprietary by purchasing a Commercial License .

Licensed under the GNU General Public License 3.0 for compatible open source projects and non-commercial use.

Copyright 2024-present xiejiahe


================================================
FILE: angular.json
================================================
{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "newProjectRoot": "projects",
  "projects": {
    "nav": {
      "projectType": "application",
      "schematics": {
        "@schematics/angular:component": {
          "style": "scss"
        }
      },
      "root": "",
      "sourceRoot": "src",
      "prefix": "app",
      "architect": {
        "build": {
          "builder": "@angular-devkit/build-angular:application",
          "options": {
            "allowedCommonJsDependencies": [
              "axios",
              "qs",
              "nprogress",
              "file-saver",
              "localforage",
              "dayjs",
              "lz-string"
            ],
            "outputPath": "dist",
            "index": "src/main.html",
            "browser": "src/main.ts",
            "polyfills": ["zone.js"],
            "tsConfig": "tsconfig.app.json",
            "inlineStyleLanguage": "scss",
            "assets": [
              "src/assets",
              {
                "glob": "**/*",
                "input": "public"
              }
            ],
            "styles": ["src/styles.scss"],
            "scripts": []
          },
          "configurations": {
            "production": {
              "budgets": [
                {
                  "type": "initial",
                  "maximumWarning": "5mb",
                  "maximumError": "500mb"
                },
                {
                  "type": "anyComponentStyle",
                  "maximumWarning": "10kb",
                  "maximumError": "10kb"
                }
              ],
              "outputHashing": "all",
              "serviceWorker": "ngsw-config.json"
            },
            "development": {
              "optimization": false,
              "extractLicenses": false,
              "sourceMap": true
            }
          },
          "defaultConfiguration": "production"
        },
        "serve": {
          "builder": "@angular-devkit/build-angular:dev-server",
          "configurations": {
            "production": {
              "buildTarget": "nav:build:production"
            },
            "development": {
              "buildTarget": "nav:build:development"
            }
          },
          "defaultConfiguration": "development"
        },
        "extract-i18n": {
          "builder": "@angular-devkit/build-angular:extract-i18n"
        },
        "test": {
          "builder": "@angular-devkit/build-angular:karma",
          "options": {
            "polyfills": ["zone.js", "zone.js/testing"],
            "tsConfig": "tsconfig.spec.json",
            "inlineStyleLanguage": "scss",
            "assets": [
              "src/assets",
              {
                "glob": "**/*",
                "input": "public"
              }
            ],
            "styles": ["src/styles.scss"],
            "scripts": []
          }
        }
      }
    }
  },
  "cli": {
    "analytics": "023667ec-ba02-4d59-956a-8f75ed91ab7a"
  }
}


================================================
FILE: data/component.json
================================================


================================================
FILE: data/db.json
================================================


================================================
FILE: data/internal.json
================================================
{}


================================================
FILE: data/search.json
================================================


================================================
FILE: data/settings.json
================================================
{}


================================================
FILE: data/tag.json
================================================
[]


================================================
FILE: nav.config.yaml
================================================
# 发现导航 在未授权的情况下,您可以免费使用,必须公开可见,禁止商业用途。
# LICENSE GPL-3.0 https://github.com/xjh22222228/nav/blob/main/LICENSE
# 配置信息:https://github.com/xjh22222228/nav?tab=readme-ov-file#%E9%85%8D%E7%BD%AE%E8%AF%B4%E6%98%8E
# 网站所有内容都是可以在后台系统配置的,不懂的不要擅自修改源代码,出现异常请自行处理
# Fork 用户通常只需要修改 gitRepoUrl ,其他默认处理
# 问题反馈:xjh22222228@gmail.com ,非授权不接收功能建议
# 联系授权:https://official.nav3.cn/pricing
# 免责声明:使用即表示已阅读 https://official.nav3.cn/disclaimers

# 仓库地址,填写 Fork 后的仓库地址,支持 Gitee / GitHub / GitLab
# 作者 Gitee 仓库地址 https://gitee.com/xiejiahe/nav
# 作者 GitLab 仓库地址 https://gitlab.com/xjh22222228/nav?projectId=68880543, projectId 是项目 ID,可在仓库页面中找到
gitRepoUrl: https://github.com/xjh22222228/nav

# Fork 部署分支
branch: main

# 默认Fork仓库
# 仓库必须自己提前创建,如果打算长期使用本软件,建议每个人都创建一个新的仓库作为图片存储
# e.g 'https://github.com/xjh22222228/image?branch=main'
# gitlab e.g 'https://gitlab.com/xjh22222228/image?branch=main&projectId=1001'
imageRepoUrl: ''

# 只有GitHub pages用户需要设置为true, 其他建议设置为 false
hashMode: true

# 一旦填写认为你是自有部署,Fork 不要填写
address: ''

# 自有部署后台登录密码
password: admin

# 自有部署启动端口
port: 7777

# 收录通知邮箱
email: ''

# 自有部署邮件通知系统
mailConfig:
  host: smtp.mxhichina.com
  port: 465
  secure: true
  auth:
    user: ''
    pass: ''
  title: 网站收录通知
  message: 有用户提交网站收录啦

# 自有部署
XFAPIPassword: ''


================================================
FILE: netlify.toml
================================================
[[redirects]]
  from = "/*"
  to = "/index.html"
  status = 200
[build.environment]
  NODE_VERSION = "22"
[build]
  command = "npm run build"
  publish = "dist/browser"
[[headers]]
  for = "/api/*"
  [headers.values]
    Access-Control-Allow-Origin = "*"
[[headers]]
  for = "/manifest.webmanifest"
  [headers.values]
    Content-Type = "application/manifest+json"

================================================
FILE: ngsw-config.json
================================================
{
  "$schema": "./node_modules/@angular/service-worker/config/schema.json",
  "index": "/index.html",
  "assetGroups": [
    {
      "name": "app",
      "installMode": "prefetch",
      "resources": {
        "files": [
          "/favicon.ico",
          "/index.csr.html",
          "/index.html",
          "/manifest.webmanifest",
          "/*.css",
          "/*.js"
        ]
      }
    },
    {
      "name": "assets",
      "installMode": "lazy",
      "updateMode": "prefetch",
      "resources": {
        "files": [
          "/**/*.(svg|cur|jpg|jpeg|png|apng|webp|avif|gif|otf|ttf|woff|woff2)"
        ]
      }
    }
  ]
}


================================================
FILE: package.json
================================================
{
  "name": "nav",
  "version": "17.0.0",
  "author": "xiejiahe",
  "homepage": "https://github.com/xjh22222228/nav",
  "scripts": {
    "formatlint": "npm run format && npm run lint",
    "lint": "oxlint",
    "format": "prettier --write \"**/*.{ts,cjs,mjs}\"",
    "start": "npm run init && ng serve --host 0.0.0.0 --port=7002 --live-reload=false",
    "start:reload": "npm run init && ng serve --host 0.0.0.0 --port=7002",
    "init": "tsx ./scripts/start.ts",
    "setup": "npm run init && tsx ./scripts/build.ts",
    "build-gh-pages": "npm run setup && ng build --base-href ./ --index src/index.html",
    "build": "npm run setup && ng build --index src/index.html",
    "watch": "ng build --watch --configuration development",
    "update": "git pull && (git remote add upstream https://gitee.com/xiejiahe/nav.git || true) && git fetch upstream main && git merge upstream/main --allow-unrelated-histories --no-edit && git push",
    "pull": "git pull"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,json,css,scss,md}": "npm run formatlint"
  },
  "type": "module",
  "private": true,
  "dependencies": {
    "@angular/animations": "^21.0.6",
    "@angular/common": "^21.0.6",
    "@angular/compiler": "^21.0.6",
    "@angular/core": "^21.0.6",
    "@angular/forms": "^21.0.6",
    "@angular/platform-browser": "^21.0.6",
    "@angular/platform-browser-dynamic": "^21.0.6",
    "@angular/router": "^21.0.6",
    "@angular/service-worker": "^21.0.6",
    "axios": "^1.13.2",
    "chrome-finder": "^1.0.7",
    "cron": "^4.4.0",
    "dayjs": "^1.11.19",
    "express": "^5.2.1",
    "file-saver": "^2.0.5",
    "js-base64": "^3.7.8",
    "js-yaml": "^4.1.1",
    "localforage": "^1.10.0",
    "lz-string": "^1.5.0",
    "mitt": "^3.0.1",
    "ng-zorro-antd": "^20.4.4",
    "nprogress": "^0.2.0",
    "puppeteer": "^24.34.0",
    "qs": "^6.14.0",
    "rough-notation": "^0.5.1",
    "rxjs": "~7.8.2",
    "sharp": "^0.34.5",
    "zone.js": "~0.16.0"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "^21.0.4",
    "@angular/cli": "^21.0.4",
    "@angular/compiler-cli": "^21.0.6",
    "@tailwindcss/postcss": "^4.1.18",
    "@types/compression": "^1.8.1",
    "@types/file-saver": "^2.0.7",
    "@types/jasmine": "~5.1.13",
    "@types/js-yaml": "^4.0.9",
    "@types/nodemailer": "^7.0.4",
    "@types/nprogress": "^0.2.3",
    "@types/qs": "^6.14.0",
    "body-parser": "^2.2.1",
    "compression": "^1.8.1",
    "connect-history-api-fallback": "^2.0.0",
    "cors": "^2.8.5",
    "info-web": "^0.0.46",
    "jasmine-core": "~5.13.0",
    "lint-staged": "^16.2.7",
    "nodemailer": "^7.0.11",
    "oxlint": "^1.34.0",
    "pm2": "^6.0.14",
    "postcss": "^8.5.6",
    "prettier": "^3.7.4",
    "tailwindcss": "^4.1.18",
    "tslib": "^2.8.1",
    "tsx": "^4.21.0",
    "typescript": "~5.9.3"
  }
}


================================================
FILE: public/manifest.webmanifest
================================================
{
  "name": "发现导航",
  "short_name": "发现导航",
  "theme_color": "#ffffff",
  "background_color": "#ffffff",
  "display": "standalone",
  "scope": "./",
  "start_url": "./",
  "icons": [
    {
      "src": "icons/icon-192x192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "maskable any"
    },
    {
      "src": "icons/icon-512x512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "maskable any"
    }
  ]
}


================================================
FILE: public/readme.md
================================================
https://github.com/xjh22222228/nav


================================================
FILE: scripts/build.ts
================================================
// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。
// Copyright @ 2018-present xiejia.he. All rights reserved.
// See https://github.com/xjh22222228/nav

import fs from 'fs'
import dayjs from 'dayjs'
import utc from 'dayjs/plugin/utc.js'
import timezone from 'dayjs/plugin/timezone.js'
import {
  writeSEO,
  writeTemplate,
  spiderWebs,
  PATHS,
  getConfig,
  fileWriteStream,
  writePWA,
} from './utils'
import type { INavProps, ISettings } from '../src/types/index'

dayjs.extend(utc)
dayjs.extend(timezone)
dayjs.tz.setDefault('Asia/Shanghai')

const config = getConfig()

const handleFileOperation = (operation: () => any): any => {
  try {
    return operation()
  } catch (error) {
    console.error(`File operation failed: ${(error as Error).message}`)
    return null
  }
}

const db: INavProps[] = handleFileOperation(() =>
  JSON.parse(fs.readFileSync(PATHS.db, 'utf-8')),
)
const settings: ISettings = handleFileOperation(() =>
  JSON.parse(fs.readFileSync(PATHS.settings, 'utf-8')),
)

const seoTemplate = writeSEO(db, { settings })
const html = writeTemplate({
  html: fs.readFileSync(PATHS.html.main, 'utf-8'),
  settings,
  seoTemplate,
})

handleFileOperation(() => fs.writeFileSync(PATHS.html.write, html))
handleFileOperation(() =>
  writePWA(
    {
      ...settings,
      pwaIcon: '',
    },
    PATHS.manifestPublic,
  ),
)

let errorUrlCount = 0

process.on('exit', async () => {
  settings.errorUrlCount = errorUrlCount
  fs.writeFileSync(PATHS.settings, JSON.stringify(settings))
  await fileWriteStream(PATHS.db, config.address ? [] : db)

  if (config.address) {
    await fileWriteStream(PATHS.serverdb, db)
  }
  console.log('All success!')
})

const { errorUrlCount: count } = await spiderWebs(db, settings)
errorUrlCount = count


================================================
FILE: scripts/db.ts
================================================
const db: string = `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`

export default db


================================================
FILE: scripts/loading.ts
================================================
// Copyright @ 2018-present xiejia.he. All rights reserved.
// See https://github.com/xjh22222228/nav

const loadingTemplate: Record<string, string> = {
  loading1: `
<style>
  @keyframes r {
    0% { transform: rotate(0deg); } 100% { transform: rotate(45deg); }
  }
  svg.gear {
    margin-bottom: 15px;
    animation: r .5s infinite linear;
  }
</style>
<div style="position: fixed;top: 0;left: 0;right: 0;bottom: 0;text-align: center;display: flex;justify-content: center;align-items: center;font-size: 14px; flex-direction: column;background: linear-gradient(45deg,#222428,#444856);">
  <svg class="gear" style="width:64px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path id="p" fill="#fdb" d="M94.1 58.8c.6-2.8.9-5.8.9-8.8s-.3-6-.9-8.8l-11.7-.4c-.7-2.6-1.7-5-3-7.3l8-8.5c-3.3-4.9-7.5-9.2-12.5-12.5l-8.5 8c-2.3-1.3-4.7-2.3-7.3-3l-.3-11.6C56 5.3 53 5 50 5s-6 .3-8.8.9l-.4 11.7c-2.6.7-5 1.7-7.3 3l-8.5-8c-4.9 3.3-9.2 7.5-12.5 12.5l8 8.5c-1.3 2.3-2.3 4.7-3 7.3l-11.6.3C5.3 44 5 47 5 50s.3 6 .9 8.8l11.7.4c.7 2.6 1.7 5 3 7.3l-8 8.5c3.3 4.9 7.5 9.2 12.5 12.5l8.5-8c2.3 1.3 4.7 2.3 7.3 3l.4 11.7c2.7.5 5.7.8 8.7.8s6-.3 8.8-.9l.4-11.7c2.6-.7 5-1.7 7.3-3l8.5 8c4.9-3.3 9.2-7.5 12.5-12.5l-8-8.5c1.3-2.3 2.3-4.7 3-7.3l11.6-.3zM50 66.9c-9.3 0-16.9-7.6-16.9-16.9S40.7 33.1 50 33.1 66.9 40.7 66.9 50 59.3 66.9 50 66.9z"></path></svg>
  <div style="color:#6c757d;font-size: 18px;">Loading...</div>
</div>
  `.trim(),

  loading2: `
<style>
.error {z-index: 99999;background:#fff;position: fixed;top: 0;left: 0;right: 0;bottom: 0;overflow: hidden;}.error #totalbase {position: absolute;height: 10px;width: 10px;top: 50%;left: 50%;background-color: blue;transform-style: preserve-3d;perspective: 5000px;transform-origin: 0 0;transform: rotateX(60deg) rotateZ(45deg) translate(-50%, -50%);}.error #animbase {transform-style: preserve-3d;position: absolute;height: 700px;width: 10px;top: 50%;left: 50%;animation: anima 8s infinite linear;transform-origin: 0 0%;}.error #base {position: absolute;height: 10px;width: 10px;top: 0;left: 50%;background-color: blue;transform-style: preserve-3d;transform-origin: 0 0;transform: translate(-50%, -50%) rotateZ(90deg);}.error #baseshadow {position: absolute;height: 10px;width: 25px;top: 50%;left: 50%;background-color: #D3D3D3;transform-style: preserve-3d;box-shadow: 0 0 140px 27px gray;transform-origin: 0 0;transform: rotateZ(90deg) translateZ(-150px);}@keyframes anima {0% {transform: rotateZ(0deg) translate(-50%, -50%);}100% {transform: rotateZ(360deg) translate(-50%, -50%);}}.error .helitop {transform-style: preserve-3d;position: absolute;height: 39px;width: 39px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(0deg) translateZ(20px);}.error .helifront {transform-style: preserve-3d;position: absolute;height: 39px;width: 39px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) translateZ(-20px);}.error .heliback {transform-style: preserve-3d;position: absolute;height: 39px;width: 39px;left: 50%;top: 50%;transform: translate(-50%, -50%) rotateX(90deg) translateZ(20px);}.error .front1 {transform-style: preserve-3d;position: absolute;height: 19px;width: 39px;left: 50%;top: 50%;background-color: #f0f0f0;border: 1px solid black;transform: translate(-50%, -50%) translateZ(18px);cursor: pointer;}.error .front2 {position: absolute;height: 19px;width: 39px;left: 50%;top: 50%;background-color: #f0f0f0;border: 1px solid black;transform: translate(-50%, -50%) rotateX(60deg) translateZ(18px);}.error .front3 {position: absolute;height: 19px;width: 39px;left: 50%;top: 50%;background-color: #f0f0f0;border: 1px solid black;transform: translate(-50%, -50%) rotateX(-60deg) translateZ(18px);}.error .front4 {border-top: 18px solid #f0f0f0;border-left: 11px solid transparent;border-right: 11px solid transparent;height: 0;width: 20px;left: 50%;top: 50%;transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg) translateZ(0px) translateX(19px) translateY(50%);}.error .front5 {border-top: 18px solid #f0f0f0;border-left: 11px solid transparent;border-right: 11px solid transparent;height: 0;width: 20px;left: 50%;top: 50%;transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg) translateZ(39px) translateX(1px) translateY(50%);}.error .helileft {position: absolute;height: 39px;width: 39px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateY(90deg) translateZ(-20px);}.error .heliright {position: absolute;height: 39px;width: 39px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateY(90deg) translateZ(20px);}.error .helibottom {position: absolute;height: 39px;width: 39px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) translateZ(-20px);}.error .wingbase {transform-style: preserve-3d;position: absolute;height: 10px;width: 10px;bottom: 00%;left: 50%;background: white;transform-origin: 0 0;transform: translate(-50%, -50%);animation: anim 0.5s infinite linear;}@keyframes anim {0% {transform: rotateZ(0deg) translate(-50%, -50%);}100% {transform: rotateZ(360deg) translate(-50%, -50%);}}.error .wing1 {z-index: 10;position: absolute;height: 4px;width: 100px;left: 50%;top: 50%;background-color: #000000;border: 1px solid black;transform: translate(-50%, -50%) translateX(50%) translateZ(25px) rotateX(10deg);}.error .wing2 {z-index: 10;position: absolute;height: 4px;width: 100px;left: 50%;top: 50%;background-color: black;border: 1px solid black;transform: translate(-50%, -50%) translateX(-50%) translateZ(25px) rotateX(-10deg);}.error .col1 {position: absolute;height: 25px;width: 4px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) translateY(50%) translateZ(3px);}.error .col2 {position: absolute;height: 25px;width: 4px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) translateY(50%) translateZ(-3px);}.error .col3 {position: absolute;height: 25px;width: 4px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) rotateY(90deg) translateY(50%) translateZ(-3px);}.error .col4 {position: absolute;height: 25px;width: 4px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) rotateY(90deg) translateY(50%) translateZ(3px);}.error .tailbase {transform-style: preserve-3d;position: absolute;height: 10px;width: 10px;top: 50%;left: 50%;transform: translate(-50%, -50%);}.error .tail1 {transform-style: preserve-3d;position: absolute;height: 8px;width: 8px;border: 1px solid black;background-color: white;top: 0;left: 50%;transform: translate(-50%, 100%) translateZ(-100px);}.error .tail21 {transform-style: preserve-3d;position: absolute;height: 100px;width: 8px;top: 50%;left: 50%;background: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) translateY(50%) translateZ(5px);}.error .tail22 {transform-style: preserve-3d;position: absolute;height: 100px;width: 8px;top: 50%;left: 50%;background: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) translateY(50%) translateZ(-5px);}.error .tail23 {transform-style: preserve-3d;position: absolute;height: 100px;width: 8px;top: 50%;left: 50%;background: white;border: 1px solid black;transform: translate(-50%, -50%) rotateZ(90deg) rotateX(90deg) translateY(50%) translateZ(5px);}.error .tail24 {transform-style: preserve-3d;position: absolute;height: 100px;width: 8px;top: 50%;left: 50%;background: white;border: 1px solid black;transform: translate(-50%, -50%) rotateZ(90deg) rotateX(90deg) translateY(50%) translateZ(-5px);}.error .tail25 {transform-style: preserve-3d;position: absolute;height: 14px;width: 14px;top: 50%;left: 50%;border-left: 10px solid transparent;border-right: 10px solid transparent;border-top: 10px solid black;border-bottom: 10px solid transparent;transform: translate(-50%, -11px) rotateY(90deg) rotateZ(45deg) translateZ(-5px);}.error .tail26 {transform-style: preserve-3d;position: absolute;height: 14px;width: 14px;top: 50%;left: 50%;border-left: 10px solid transparent;border-right: 10px solid transparent;border-top: 10px solid black;border-bottom: 10px solid transparent;transform: translate(-50%, -11px) rotateY(90deg) rotateZ(45deg) translateZ(5px);}.error .tailwingbase {transform-style: preserve-3d;position: absolute;height: 10px;width: 10px;left: 50%;top: 0%;animation: animb 0.3s infinite linear;transform: translate(-50%, 0) rotateX(180deg);}@keyframes animb {0% {transform: translate(-50%, 0) rotateX(180deg) rotateZ(0deg);}100% {transform: translate(-50%, 0) rotateX(180deg) rotateZ(-360deg);}}.error .tail221 {transform-style: preserve-3d;position: absolute;height: 3px;width: 3px;top: 50%;left: 50%;background: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) translateY(50%) translateZ(2px);}.error .tail222 {transform-style: preserve-3d;position: absolute;height: 3px;width: 3px;top: 50%;left: 50%;background: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) translateY(50%) translateZ(-2px);}.error .tail223 {transform-style: preserve-3d;position: absolute;height: 3px;width: 3px;top: 50%;left: 50%;background: white;border: 1px solid black;transform: translate(-50%, -50%) rotateZ(90deg) rotateX(90deg) translateY(50%) translateZ(2px);}.error .tail224 {transform-style: preserve-3d;position: absolute;height: 3px;width: 3px;top: 50%;left: 50%;background: white;border: 1px solid black;transform: translate(-50%, -50%) rotateZ(90deg) rotateX(90deg) translateY(50%) translateZ(-2px);}.error .tailwing1 {position: absolute;height: 2px;width: 15px;left: 50%;top: 50%;background-color: #000000;border: 1px solid black;transform: translate(-50%, -50%) translateX(50%) translateZ(5px) rotateX(30deg);}.error .tailwing2 {position: absolute;height: 2px;width: 15px;left: 50%;top: 50%;background-color: black;border: 1px solid black;transform: translate(-50%, -50%) translateX(-50%) translateZ(5px) rotateX(-30deg);}.error #towerbase {position: absolute;height: 40px;width: 40px;top: 50%;left: 50%;background-color: blue;box-shadow: 0 0 60px 5px black;transform-style: preserve-3d;transform-origin: 0 0;transform: translate(-50%, -50%) translateZ(-150px);}.error .tower1left {position: absolute;height: 40px;width: 200px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateY(90deg) translateX(-50%) translateZ(20px);}.error .tower1right {position: absolute;height: 200px;width: 40px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) rotateX(90deg) translateY(50%) translateZ(-20px);}.error .tower1top {transform-style: preserve-3d;position: absolute;height: 80px;width: 80px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) translateZ(240px);}.error .tower2top {transform-style: preserve-3d;position: absolute;height: 80px;width: 80px;left: 50%;top: 50%;background-color: white;border: 1px solid black;transform: translate(-50%, -50%) translateZ(200px);}.error .tower2left {position: absolute;height: 78px;width: 22px;left: 50%;top: 50%;border-top: 1px solid white;border-bottom: 1px solid white;border-left: 10px solid white;border-right: 10px solid white;outline: 1px solid black;transform: translate(-10px, -50%) rotateY(90deg) translateX(-220px) translateZ(30px);}.error .tower1window {position: absolute;height: 22px;width: 75px;left: 50%;top: 50%;background-color: #d3d3d3;opacity: 0.8;transform: translate(-50%, -50%);}.error .tower2window {position: absolute;height: 75px;width: 22px;left: 50%;top: 50%;background-color: #d3d3d3;opacity: 0.8;transform: translate(-50%, -50%);}.error .tower2right {position: absolute;height: 22px;width: 78px;left: 50%;top: 50%;border-top: 10px solid white;border-bottom: 10px solid white;border-left: 1px solid white;border-right: 1px solid white;outline: 1px solid black;transform: translate(-50%, -11px) rotateX(90deg) translateY(220px) translateZ(-30px);}</style>
<section class="error"><div id="totalbase"><div id="animbase"v-pre><div id="base"><div id="baseshadow"></div><div class="helitop"><div class="wingbase"><div class="col1"></div><div class="col2"></div><div class="col3"></div><div class="col4"></div><div class="wing1"></div><div class="wing2"></div></div></div><div class="helifront"><div class="tailbase"><div class="tail1"><div class="tail21"></div><div class="tail22"></div><div class="tail23"></div><div class="tail24"><div class="tailwingbase"><div class="tail221"></div><div class="tail222"></div><div class="tail223"></div><div class="tail224"></div><div class="tailwing1"></div><div class="tailwing2"></div></div></div></div><div class="tail25"></div><div class="tail26"></div></div></div><div class="heliback"><div class="front1"></div><div class="front2"></div><div class="front3"></div><div class="front4"></div><div class="front5"></div></div><div class="helileft"></div><div class="heliright"></div><div class="helibottom"></div></div></div><div id="towerbase"><div class="tower1left"></div><div class="tower1right"></div><div class="tower2right"><div class="tower1window"></div></div><div class="tower1top"><div class="front1"@click="goHome"><div class="col1"></div><div class="col2"></div><div class="col3"></div><div class="col4"></div></div><div class="front2"></div><div class="front3"></div></div><div class="tower2top"></div><div class="tower2left"><div class="tower2window"></div></div></div></div></section>  
`.trim(),

  loading3: `
<style>.l__1{z-index:999;position:fixed;top:0;left:0;right:0;bottom:0;background-color:#fff;display:flex;align-items:center;justify-content:center;flex-direction:column;}.l__2{width:200px;height:200px;background:url("https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/0020f4d5-9f70-4b7f-87d4-61310d1db8d1.svg");background-repeat:repeat;}.l__3{font-size:18px;margin-top:15px;font-weight:bold;color:#000;}</style>
<div class="l__1"><div class="l__2"></div><div class="l__3">......</div></div>  
`.trim(),

  loading4: `
<style>
  @keyframes my-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}100%{stroke-dasharray:90,150;stroke-dashoffset:-120px}}.g-loading{z-index:999;position:fixed;top:0;left:0;right:0;bottom:0;background:#fff;display: flex;justify-content: center;align-items: center;}.circular{width:30px;height:30px;animation:my-rotate 2s linear infinite;}.path{stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:5;stroke:#409eff;stroke-linecap:round;animation:loading-dash 1.5s ease-in-out infinite}
</style><div class="g-loading">
    <svg viewBox="25 25 50 50" class="circular">
      <circle cx="50" cy="50" r="20" fill="none" class="path"></circle>
    </svg>
  </div>  
`,
}

export default loadingTemplate


================================================
FILE: scripts/start.ts
================================================
// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。
// Copyright @ 2018-present x.iejiahe. All rights reserved.
// See https://github.com/xjh22222228/nav

import fs from 'fs'
import dayjs from 'dayjs'
import utc from 'dayjs/plugin/utc.js'
import timezone from 'dayjs/plugin/timezone.js'
import defaultDb from './db'
import LZString from 'lz-string'
import {
  TAG_ID1,
  TAG_ID2,
  TAG_ID3,
  TAG_ID_NAME1,
  TAG_ID_NAME2,
  TAG_ID_NAME3,
  getWebCount,
  setWebs,
  PATHS,
  getConfig,
  fileWriteStream,
} from './utils'
import { replaceJsdelivrCDN } from '../src/utils/pureUtils'
import type {
  ITagPropValues,
  ISettings,
  INavProps,
  InternalProps,
  IComponentProps,
  ISearchProps,
} from '../src/types/index'
import { ComponentType } from '../src/types/index'

dayjs.extend(utc)
dayjs.extend(timezone)
dayjs.tz.setDefault('Asia/Shanghai')

const getNavs = (): INavProps[] => {
  try {
    const strings = fs.readFileSync(PATHS.db).toString().trim()
    if (!strings) throw new Error('empty')

    try {
      const serverdb = fs.readFileSync(PATHS.serverdb).toString().trim()
      return JSON.parse(serverdb)
    } catch {}

    return strings[0] === '['
      ? JSON.parse(strings)
      : JSON.parse(LZString.decompressFromBase64(strings)) ||
          JSON.parse(LZString.decompressFromBase64(defaultDb))
  } catch {
    return JSON.parse(LZString.decompressFromBase64(defaultDb))
  }
}

const main = async () => {
  const configJson = getConfig()
  fs.writeFileSync(PATHS.configJson, JSON.stringify(configJson))

  const db = getNavs()
  let internal = {} as InternalProps
  let settings = {} as ISettings
  let tags: ITagPropValues[] = []
  let search = {} as ISearchProps
  let component: IComponentProps = { zoom: 1, components: [] }

  try {
    internal = JSON.parse(fs.readFileSync(PATHS.internal).toString())
    settings = JSON.parse(fs.readFileSync(PATHS.settings).toString())
    tags = JSON.parse(fs.readFileSync(PATHS.tag).toString())
  } catch (e: any) {
    console.log(e.message)
  }

  try {
    const s = JSON.parse(fs.readFileSync(PATHS.search).toString())
    if (Array.isArray(s)) {
      // @ts-ignore
      search = {
        list: s,
      }
    } else {
      search = s
    }
  } catch {
  } finally {
    if (!search.list || !search.list.length) {
      search.list = [
        {
          name: '站内',
          icon:
            settings.favicon ||
            'https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/logo.svg',
          placeholder: '站内搜索',
          blocked: false,
          isInner: true,
        },
        {
          name: 'Google',
          url: 'https://www.google.com/search?q=',
          icon: 'https://www.google.com/favicon.ico',
          blocked: false,
          isInner: false,
        },
      ]
    }
    search.logo ||= ''
    search.darkLogo ||= ''
    search.height ||= 80
    search.list = search.list.map((item) => {
      item.icon = replaceJsdelivrCDN(item.icon, settings)
      return item
    })
    fs.writeFileSync(PATHS.search, JSON.stringify(search), {
      encoding: 'utf-8',
    })
  }

  try {
    const components = JSON.parse(fs.readFileSync(PATHS.component).toString())
    // < 16
    if (Array.isArray(components)) {
      component = {
        zoom: 1,
        components,
      }
    } else {
      component = components
    }
  } catch {
  } finally {
    let idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.Calendar,
    )
    const calendar = {
      type: ComponentType.Calendar,
      id: -ComponentType.Calendar,
      topColor: '#ff5a5d',
      bgColor: '#1d1d1d',
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...calendar,
        ...component.components[idx],
      }
    } else {
      component.components.push(calendar)
    }
    //
    idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.OffWork,
    )
    const offWork = {
      type: ComponentType.OffWork,
      id: -ComponentType.OffWork,
      workTitle: '距离下班还有',
      restTitle: '休息啦',
      startDate: new Date(2018, 3, 26, 9, 0, 0).getTime(),
      date: new Date(2018, 3, 26, 18, 0, 0).getTime(),
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...offWork,
        ...component.components[idx],
      }
    } else {
      component.components.push(offWork)
    }
    //
    idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.Image,
    )
    const image = {
      type: ComponentType.Image,
      id: -ComponentType.Image,
      url: 'https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/component1.jpg',
      go: '',
      text: '只有认可,才能强大',
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...image,
        ...component.components[idx],
      }
      component.components[idx]['url'] = replaceJsdelivrCDN(
        component.components[idx]['url'],
        settings,
      )
    } else {
      component.components.push(image)
    }
    //
    idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.Countdown,
    )
    const countdown = {
      type: ComponentType.Countdown,
      id: -ComponentType.Countdown,
      topColor: 'linear-gradient(90deg, #FAD961 0%, #F76B1C 100%)',
      bgColor: 'rgb(235,129,124)',
      url: 'https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/component2.jpg',
      title: '距离春节还有',
      dateColor: '#fff',
      dayColor: '#fff',
      date: '2026-02-17',
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...countdown,
        ...component.components[idx],
      }
      component.components[idx]['url'] = replaceJsdelivrCDN(
        component.components[idx]['url'],
        settings,
      )
    } else {
      component.components.push(countdown)
    }
    //
    idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.Runtime,
    )
    const runtime = {
      type: ComponentType.Runtime,
      id: -ComponentType.Runtime,
      title: '已稳定运行',
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...runtime,
        ...component.components[idx],
      }
    } else {
      component.components.push(runtime)
    }
    //
    idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.HTML,
    )
    const html = {
      type: ComponentType.HTML,
      id: -ComponentType.HTML,
      html: '你好,发现导航',
      width: 160,
      bgColor: '#fff',
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...html,
        ...component.components[idx],
      }
    } else {
      component.components.push(html)
    }
    //
    idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.Holiday,
    )
    const holiday = {
      type: ComponentType.Holiday,
      id: -ComponentType.Holiday,
      items: [],
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...holiday,
        ...component.components[idx],
      }
    } else {
      component.components.push(holiday)
    }
    //
    idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.News,
    )
    const news = {
      type: ComponentType.News,
      id: -ComponentType.News,
      bgColor: 'linear-gradient(100deg,#2a2d38, rgb(35, 39, 54))',
      types: [],
      count: 0,
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...news,
        ...component.components[idx],
      }
    } else {
      component.components.push(news)
    }
    //
    idx = component.components.findIndex(
      (item) => item['type'] === ComponentType.Carousel,
    )
    const carousel = {
      type: ComponentType.Carousel,
      id: -ComponentType.Carousel,
      imgs: [],
      width: 220,
      fit: 'cover',
    }
    if (idx >= 0) {
      component.components[idx] = {
        ...carousel,
        ...component.components[idx],
      }
    } else {
      component.components.push(carousel)
    }
    fs.writeFileSync(PATHS.component, JSON.stringify(component))
  }

  {
    const isEn = settings.language === 'en'
    const desc = isEn ? 'The system is built-in' : '系统内置不可删除'
    if (!Array.isArray(tags)) {
      tags = []
    }
    const a = tags.some((item) => item.id === TAG_ID1)
    if (!a) {
      tags.push({
        id: TAG_ID1,
        name: isEn ? 'Chinese' : TAG_ID_NAME1,
        color: '#2db7f5',
        desc,
        isInner: true,
      })
    }
    const b = tags.some((item) => item.id === TAG_ID2)
    if (!b) {
      tags.push({
        id: TAG_ID2,
        name: isEn ? 'English' : TAG_ID_NAME2,
        color: '#f50',
        desc,
        isInner: true,
      })
    }
    const c = tags.some((item) => item.id === TAG_ID3)
    if (!c) {
      tags.push({
        id: TAG_ID3,
        name: TAG_ID_NAME3,
        color: '#108ee9',
        desc,
        isInner: true,
      })
    }
    tags = tags.filter((item) => item.name && item.id)
    fs.writeFileSync(PATHS.tag, JSON.stringify(tags), {
      encoding: 'utf-8',
    })
  }

  {
    const banner1 =
      'https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/banner1.jpg'
    const banner2 =
      'https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/banner2.jpg'
    const backgroundImg =
      'https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/background.jpg'

    settings.favicon ??=
      'https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/nav/logo.svg'
    settings.language ||= 'zh-CN'
    settings.loading ??= 'random'
    settings.runtime ??= dayjs.tz().valueOf()
    settings.userActions ||= []
    settings.email ||= configJson.email || ''
    settings.showGithub ??= true
    settings.showLanguage ??= true
    settings.showRate ??= true
    settings.openSearch ??= true
    settings.title ??= '发现导航 - 精选实用导航网站'
    settings.description ??= '发现导航是一个轻量级免费且强大的导航网站'
    settings.keywords ??= '免费导航,开源导航'
    settings.theme ??= 'Light'
    settings.actionUrl ??= ''
    settings.appTheme ??= 'Current'
    settings.openSEO ??= !configJson.address
    settings.createWebKey ??= 'E'
    settings.headerContent ??= ''
    settings.footerContent ??= `
<div class="dark-white">
  <div>共收录$\{total}个网站</div>
  <div>Copyright © 2018-$\{year} $\{hostname}, All Rights Reserved</div>  
</div>
`.trim()
    settings.showThemeToggle ??= true
    settings.logo ||= ''
    settings.darkLogo ||= ''

    settings.lightDocTitle ||= ''
    settings.lightCardStyle ||= 'standard'
    settings.lightOverType ||= 'overflow'
    settings.lightFooterHTML ||= ''
    settings.simThemeImages ||= [
      {
        src: banner1,
        url: 'https://github.com/xjh22222228/nav',
      },
      {
        src: banner2,
        url: 'https://github.com/xjh22222228/nav',
      },
    ]
    settings.simThemeDesc ??=
      '这里收录多达 <b>${total}</b> 个优质网站, 助您工作、学习和生活'
    settings.simCardStyle ||= 'original'
    settings.simOverType ||= 'overflow'
    settings.simThemeHeight ??= 0
    settings.simThemeAutoplay ??= true
    settings.simDocTitle ||= ''
    settings.simTitle ||= ''
    settings.simFooterHTML ||= ''
    settings.superCardStyle ||= 'column'
    settings.superOverType ||= 'overflow'
    settings.superFooterHTML ||= ''

    settings.superDocTitle ||= ''
    settings.superTitle ||= ''
    const defImgs = [
      {
        src: 'https://gcore.jsdelivr.net/gh/xjh22222228/nav-image@image/nav-1717494364392-ad.jpg',
        url: 'https://haokawx.lot-ml.com/Product/index/454266',
      },
      {
        src: 'https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pages/img/10.png',
        url: '',
      },
    ]
    settings.superImages ??= defImgs
    settings.lightImages ??= defImgs
    if (!Array.isArray(settings.superImages)) {
      settings.superImages = defImgs
    }
    if (!Array.isArray(settings.lightImages)) {
      settings.lightImages = defImgs
    }
    settings.sideTitle ||= ''
    settings.sideDocTitle ||= ''
    settings.sideCardStyle ||= 'example'
    settings.sideFooterHTML ||= ''
    settings.sideThemeHeight ??= 0
    settings.sideThemeAutoplay ??= true
    settings.sideCollapsed ??= false
    settings.sideThemeImages ||= [
      {
        src: banner2,
        url: 'https://github.com/xjh22222228/nav',
      },
      {
        src: banner1,
        url: 'https://github.com/xjh22222228/nav',
      },
    ]
    settings.shortcutTitle ??= ''
    settings.shortcutDocTitle ||= ''
    settings.shortcutDockCount ??= 6
    settings.shortcutThemeShowWeather ??= true
    settings.shortcutThemeImages ??= [
      {
        src: backgroundImg,
        url: '',
      },
    ]
    settings.checkUrl ??= false
    settings.spiderIcon ??= 'NO'
    settings.spiderDescription ??= 'NO'
    settings.spiderTitle ??= 'NO'
    settings.spiderImg ??= 'NO'
    settings.spiderQty ??= 200
    settings.spiderTimeout ??= 6
    settings.spiderTimeout = Number(settings.spiderTimeout) || 6
    settings.loadingCode ??= ''

    settings.appCardStyle ??= 'retro'
    settings.appDocTitle ||= ''
    settings.gitHubCDN ||= 'gcore.jsdelivr.net'
    settings.components ||= []

    settings.pwaEnable ??= false
    settings.pwaName ??= '发现导航'
    settings.pwaIcon ||= ''

    // 替换CDN
    settings.favicon = replaceJsdelivrCDN(settings.favicon, settings)
    settings.simThemeImages = settings.simThemeImages.map((item) => {
      item.src = replaceJsdelivrCDN(item.src, settings)
      return item
    })
    settings.superImages = settings.superImages.map((item) => {
      item.src = replaceJsdelivrCDN(item.src, settings)
      return item
    })
    settings.lightImages = settings.lightImages.map((item) => {
      item.src = replaceJsdelivrCDN(item.src, settings)
      return item
    })
    settings.sideThemeImages = settings.sideThemeImages.map((item) => {
      item.src = replaceJsdelivrCDN(item.src, settings)
      return item
    })
    settings.shortcutThemeImages = settings.shortcutThemeImages.map((item) => {
      item.src = replaceJsdelivrCDN(item.src, settings)
      return item
    })
    fs.writeFileSync(PATHS.settings, JSON.stringify(settings), {
      encoding: 'utf-8',
    })
  }

  const { userViewCount, loginViewCount } = getWebCount(db)
  internal.userViewCount = userViewCount < 0 ? loginViewCount : userViewCount
  internal.loginViewCount = loginViewCount

  fs.writeFileSync(PATHS.internal, JSON.stringify(internal))

  const webs = setWebs(db, settings, tags)
  await fileWriteStream(PATHS.db, webs)
  if (configJson.address) {
    await fileWriteStream(PATHS.serverdb, webs)
  }
}

main().catch(console.error)


================================================
FILE: scripts/utils.ts
================================================
// Copyright @ 2018-present xie.jiahe. All rights reserved.
// See https://github.com/xjh22222228/nav
import dayjs from 'dayjs'
import LOAD_MAP from './loading'
import utc from 'dayjs/plugin/utc.js'
import timezone from 'dayjs/plugin/timezone.js'
import getWebInfo from 'info-web'
import path from 'node:path'
import type {
  INavProps,
  ISearchProps,
  ISettings,
  ITagPropValues,
  IWebProps,
} from '../src/types'
import {
  SELF_SYMBOL,
  CODE_SYMBOL,
  ROUTER_SYMBOL,
  DEFAULT_SORT_INDEX,
} from '../src/constants/symbol'
import {
  replaceJsdelivrCDN,
  removeTrailingSlashes,
  isNumber,
  dfsNavs,
} from '../src/utils/pureUtils'
import fs from 'node:fs'
import yaml from 'js-yaml'
import sharp from 'sharp'
import axios from 'axios'

dayjs.extend(utc)
dayjs.extend(timezone)
dayjs.tz.setDefault('Asia/Shanghai')

export const TAG_ID1 = -1
export const TAG_ID2 = -2
export const TAG_ID3 = -3
export const TAG_ID_NAME1 = '中文'
export const TAG_ID_NAME2 = '英文'
export const TAG_ID_NAME3 = 'GitHub'

export const PATHS = {
  root: path.resolve('dist', 'browser'),
  public: path.resolve('public'),
  uploadImage: path.resolve('_upload', 'images'),
  db: path.resolve('data', 'db.json'),
  serverdb: path.resolve('data', 'serverdb.json'),
  settings: path.resolve('data', 'settings.json'),
  tag: path.resolve('data', 'tag.json'),
  search: path.resolve('data', 'search.json'),
  collect: path.resolve('data', 'collect.json'),
  component: path.resolve('data', 'component.json'),
  internal: path.resolve('data', 'internal.json'),
  news: path.resolve('data', 'news.json'),
  backup: path.resolve('data', 'backup.json'),
  config: path.resolve('nav.config.yaml'),
  configJson: path.resolve('nav.config.json'),
  pkg: path.resolve('package.json'),
  html: {
    index: path.resolve('dist', 'browser', 'index.html'),
    main: path.resolve('src', 'main.html'),
    write: path.resolve('src', 'index.html'),
  },
  manifest: path.resolve('dist', 'browser', 'manifest.webmanifest'),
  manifestPublic: path.resolve('public', 'manifest.webmanifest'),
  manifestIcon512: path.resolve('dist', 'browser', 'icons', 'icon-512x512.png'),
  manifestIcon192: path.resolve('dist', 'browser', 'icons', 'icon-192x192.png'),
} as const

export const getConfig = () => {
  const pkgJson = JSON.parse(fs.readFileSync(PATHS.pkg).toString())
  const config = yaml.load(fs.readFileSync(PATHS.config).toString()) as Record<
    string,
    any
  >

  const gitRepoUrl = removeTrailingSlashes(config['gitRepoUrl'] || '').replace(
    /\.git$/,
    '',
  )

  const zorroVersion = pkgJson.dependencies['ng-zorro-antd'].replace(
    /[^0-9.]/g,
    '',
  )
  return {
    version: pkgJson.version,
    zorroDark: `//gcore.jsdelivr.net/npm/ng-zorro-antd@${zorroVersion}/ng-zorro-antd.dark.min.css`,
    gitRepoUrl,
    imageRepoUrl: config['imageRepoUrl'],
    branch: config['branch'],
    hashMode: config['hashMode'],
    address: config['address'],
    email: config['email'],
    port: config['port'],
    datetime: dayjs.tz().format('YYYY-MM-DD HH:mm'),
  } as const
}

interface WebCountResult {
  userViewCount: number
  loginViewCount: number
}

// 统计网站数量
export function getWebCount(navs: INavProps[]): WebCountResult {
  // 用户查看所有数量
  let userViewCount = 0
  // 登陆者统计所有数量
  let loginViewCount = 0
  let diffCount = 0

  dfsNavs({
    navs,
    webCallback() {
      loginViewCount += 1
      userViewCount += 1
    },
  })

  function r2(nav: any[], ownVisible?: boolean): void {
    if (!Array.isArray(nav)) return

    for (let i = 0; i < nav.length; i++) {
      const item = nav[i]
      if (item.ownVisible) {
        r2(item.nav, true)
      } else {
        r2(item.nav, ownVisible)
      }

      if (item.url && item.ownVisible && !ownVisible) {
        diffCount += 1
      } else if (item.url && ownVisible) {
        diffCount += 1
      }
    }
  }

  r2(navs)

  return {
    userViewCount: userViewCount - diffCount,
    loginViewCount,
  }
}

let maxId = 0

function getMaxWebId(navs: any[]): void {
  dfsNavs({
    navs,
    callback(item: INavProps) {
      if (item.id > maxId) {
        maxId = item.id
      }
      if (item['rId'] && item['rId'] > maxId) {
        maxId = item['rId']
      }
    },
    webCallback(web: IWebProps) {
      if (web.id > maxId) {
        maxId = web.id
      }
      if (web.rId && web.rId > maxId) {
        maxId = web.rId
      }
    },
  })
}

function incrementId(id: number | string): number {
  id = Number.parseInt(id as string)
  if (!id || id < 0) {
    return ++maxId
  }
  return id
}

export function setWebs(
  navs: INavProps[],
  settings: ISettings,
  tags: ITagPropValues[] = [],
): INavProps[] {
  if (!Array.isArray(navs)) return []

  const tagMap = new Map<number, ITagPropValues>()
  for (const tag of tags) {
    if (tag.id) {
      tagMap.set(tag.id, tag)
    }
  }

  function handleAdapter(item: any): void {
    delete item.collapsed
    delete item.createdAt
    if (!item.ownVisible) {
      delete item.ownVisible
    }
    item.id = incrementId(item.id)
    if (item.rId < 0) {
      item.rId = incrementId(item.rId)
    }
    item.icon = replaceJsdelivrCDN(item.icon, settings)
    item.nav ||= []
  }

  getMaxWebId(navs)

  navs = dfsNavs({
    navs,
    callback(item: INavProps) {
      handleAdapter(item)
    },
    sort: (a, b) => {
      const aIndexs = [DEFAULT_SORT_INDEX]
      if (isNumber(a.index)) {
        aIndexs.push(Number(a.index))
      } else {
        for (const tag of a.tags || []) {
          const tagItem = tagMap.get(Number(tag.id))
          if (tagItem?.sort != null) {
            aIndexs.push(Number(tagItem.sort))
          }
        }
      }

      const aIdx = Math.min(...aIndexs)
      const bIndexs = [DEFAULT_SORT_INDEX]
      if (isNumber(b.index)) {
        bIndexs.push(Number(b.index))
      } else {
        for (const tag of b.tags || []) {
          const tagItem = tagMap.get(Number(tag.id))
          if (tagItem?.sort != null) {
            bIndexs.push(Number(tagItem.sort))
          }
        }
      }

      const bIdx = Math.min(...bIndexs)
      return aIdx - bIdx
    },
    webCallback(webItem: IWebProps) {
      webItem.id = incrementId(webItem.id)
Download .txt
gitextract_rvumvq3o/

├── .editorconfig
├── .eslintignore
├── .github/
│   └── workflows/
│       └── ci.yml
├── .gitignore
├── .npmrc
├── .oxlintrc.json
├── .postcssrc.json
├── .prettierrc.json
├── LICENSE
├── README.md
├── README_EN.md
├── angular.json
├── data/
│   ├── component.json
│   ├── db.json
│   ├── internal.json
│   ├── search.json
│   ├── settings.json
│   └── tag.json
├── nav.config.yaml
├── netlify.toml
├── ngsw-config.json
├── package.json
├── public/
│   ├── manifest.webmanifest
│   └── readme.md
├── scripts/
│   ├── build.ts
│   ├── db.ts
│   ├── loading.ts
│   ├── start.ts
│   └── utils.ts
├── src/
│   ├── api/
│   │   └── index.ts
│   ├── app/
│   │   ├── app.component.html
│   │   ├── app.component.scss
│   │   ├── app.component.ts
│   │   ├── app.config.ts
│   │   └── app.routes.ts
│   ├── assets/
│   │   ├── fonts/
│   │   │   └── iconfont.css
│   │   └── styles/
│   │       ├── dark.scss
│   │       ├── nprogress.css
│   │       └── tailwind.css
│   ├── components/
│   │   ├── breadcrumb/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── calendar/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── card/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── carousel/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── class-tabs/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── component-group/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── countdown/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── create-web/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── delete-modal/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── edit-class/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── fixbar/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── footer/
│   │   │   ├── footer.component.html
│   │   │   ├── footer.component.scss
│   │   │   ├── footer.component.ts
│   │   │   └── template.ts
│   │   ├── holiday/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── html/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── icon-git/
│   │   │   ├── icon-git.component.html
│   │   │   ├── icon-git.component.scss
│   │   │   └── icon-git.component.ts
│   │   ├── image/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── loading/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── login/
│   │   │   ├── login.component.html
│   │   │   ├── login.component.scss
│   │   │   └── login.component.ts
│   │   ├── logo/
│   │   │   ├── logo.component.html
│   │   │   ├── logo.component.scss
│   │   │   └── logo.component.ts
│   │   ├── move-web/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── news/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   ├── index.component.ts
│   │   │   └── types.ts
│   │   ├── no-data/
│   │   │   ├── no-data.component.html
│   │   │   ├── no-data.component.scss
│   │   │   └── no-data.component.ts
│   │   ├── off-work/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── phone-class/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── runtime/
│   │   │   ├── drawer/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── search/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   ├── index.component.ts
│   │   │   └── types.ts
│   │   ├── side-images/
│   │   │   ├── image/
│   │   │   │   ├── index.component.html
│   │   │   │   ├── index.component.scss
│   │   │   │   └── index.component.ts
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── sidebar/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── swiper/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   ├── index.component.ts
│   │   │   └── swiper-item/
│   │   │       ├── index.component.html
│   │   │       ├── index.component.scss
│   │   │       └── index.component.ts
│   │   ├── tag-list/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── toolbar-title/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── upload-file/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── upload-image/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   ├── web-list/
│   │   │   ├── index.component.html
│   │   │   ├── index.component.scss
│   │   │   └── index.component.ts
│   │   └── web-more-menu/
│   │       ├── index.component.html
│   │       ├── index.component.scss
│   │       └── index.component.ts
│   ├── constants/
│   │   ├── index.ts
│   │   └── symbol.ts
│   ├── environments/
│   │   ├── environment.prod.ts
│   │   └── environment.ts
│   ├── locale/
│   │   ├── english.ts
│   │   ├── index.ts
│   │   └── zh_CN.ts
│   ├── main.html
│   ├── main.ts
│   ├── pipe/
│   │   └── safeHtml.pipe.ts
│   ├── services/
│   │   ├── common.ts
│   │   └── jump.ts
│   ├── store/
│   │   └── index.ts
│   ├── styles.scss
│   ├── types/
│   │   ├── index.ts
│   │   └── type.d.ts
│   ├── utils/
│   │   ├── bookmark.ts
│   │   ├── http.ts
│   │   ├── index.ts
│   │   ├── mitt.ts
│   │   ├── pureUtils.ts
│   │   ├── sw.ts
│   │   ├── user.ts
│   │   ├── utils.ts
│   │   └── web.ts
│   └── view/
│       ├── light/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── mobile/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── shortcut/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── side/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── sim/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       ├── super/
│       │   ├── index.component.html
│       │   ├── index.component.scss
│       │   └── index.component.ts
│       └── system/
│           ├── auth/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── bookmark/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── bookmark-export/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── collect/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── component/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   ├── index.component.ts
│           │   └── types.ts
│           ├── config/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── index.component.html
│           ├── index.component.scss
│           ├── index.component.ts
│           ├── info/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── search/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── setting/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           ├── tag/
│           │   ├── index.component.html
│           │   ├── index.component.scss
│           │   └── index.component.ts
│           └── web/
│               ├── index.component.html
│               ├── index.component.scss
│               └── index.component.ts
├── tailwind.config.js
├── tsconfig.app.json
├── tsconfig.json
└── vercel.json
Download .txt
SYMBOL INDEX (646 symbols across 83 files)

FILE: scripts/utils.ts
  constant TAG_ID1 (line 37) | const TAG_ID1 = -1
  constant TAG_ID2 (line 38) | const TAG_ID2 = -2
  constant TAG_ID3 (line 39) | const TAG_ID3 = -3
  constant TAG_ID_NAME1 (line 40) | const TAG_ID_NAME1 = '中文'
  constant TAG_ID_NAME2 (line 41) | const TAG_ID_NAME2 = '英文'
  constant TAG_ID_NAME3 (line 42) | const TAG_ID_NAME3 = 'GitHub'
  constant PATHS (line 44) | const PATHS = {
  type WebCountResult (line 102) | interface WebCountResult {
  function getWebCount (line 108) | function getWebCount(navs: INavProps[]): WebCountResult {
  function getMaxWebId (line 152) | function getMaxWebId(navs: any[]): void {
  function incrementId (line 174) | function incrementId(id: number | string): number {
  function setWebs (line 182) | function setWebs(
  type SEOPayload (line 293) | interface SEOPayload {
  function writeSEO (line 297) | function writeSEO(navs: INavProps[], payload: SEOPayload): string {
  type TemplateParams (line 320) | interface TemplateParams {
  function writeTemplate (line 326) | function writeTemplate({
  function correctURL (line 427) | function correctURL(url: string): string {
  type SpiderWebResult (line 434) | interface SpiderWebResult {
  type WebInfoResponse (line 440) | interface WebInfoResponse {
  function updateItemField (line 448) | function updateItemField(
  function spiderWebs (line 475) | async function spiderWebs(
  function fileWriteStream (line 593) | async function fileWriteStream(path: string, data: object | string) {
  function fileReadStream (line 652) | function fileReadStream(path: string): Promise<string> {
  function writePWA (line 674) | async function writePWA(settings: ISettings, manifestPath: string) {

FILE: src/api/index.ts
  constant DEFAULT_BRANCH (line 29) | const DEFAULT_BRANCH = config.branch
  function getImageRepo (line 34) | function getImageRepo() {
  function isStandaloneImage (line 54) | function isStandaloneImage(): boolean {
  function getLabProjectId (line 69) | function getLabProjectId() {
  function verifyToken (line 77) | function verifyToken(token: string, imageRepoUrl?: string) {
  function getContentes (line 92) | function getContentes() {
  function spiderWebs (line 107) | function spiderWebs(data?: any) {
  function createBranch (line 118) | async function createBranch(branch: string) {
  function getFileContent (line 155) | function getFileContent(path: string, branch: string = DEFAULT_BRANCH) {
  type Iupdate (line 163) | type Iupdate = {
  function updateFileContent (line 171) | async function updateFileContent({
  function createEmptyCommit (line 224) | function createEmptyCommit() {
  function createImageFile (line 231) | async function createImageFile({
  function createFile (line 288) | async function createFile({ content, path }: Iupdate) {
  function getUserCollect (line 303) | function getUserCollect(data?: Record<string, any>) {
  function getUserCollectCount (line 310) | function getUserCollectCount(data: Record<string, any> = {}) {
  function saveUserCollect (line 318) | function saveUserCollect(data?: Record<string, any>) {
  function delUserCollect (line 326) | function delUserCollect(data?: Record<string, any>) {
  function getWebInfo (line 333) | async function getWebInfo(url: string) {
  function bookmarksExport (line 350) | function bookmarksExport(data: any) {
  function getIconBase64 (line 356) | function getIconBase64(data: any) {
  function getUserInfo (line 360) | function getUserInfo(data?: Record<string, any>) {
  function updateUserInfo (line 364) | function updateUserInfo(data?: Record<string, any>) {
  function getTranslate (line 368) | function getTranslate(data?: Record<string, any>) {
  function getScreenshot (line 375) | function getScreenshot(data?: Record<string, any>) {
  function getConfigInfo (line 386) | function getConfigInfo(data: Record<string, any> = {}) {
  function updateConfigInfo (line 390) | function updateConfigInfo(data: Record<string, any> = {}) {
  function getNews (line 394) | function getNews(data: Record<string, any> = {}) {
  function getHoliday (line 407) | function getHoliday() {
  function getCDN (line 413) | function getCDN(path: string) {
  function requestActionUrl (line 431) | function requestActionUrl() {

FILE: src/app/app.component.ts
  class AppComponent (line 58) | class AppComponent {
    method constructor (line 62) | constructor(
    method setupSwUpdate (line 81) | private setupSwUpdate() {
    method registerEvents (line 109) | private registerEvents() {
    method updateDocumentTitle (line 129) | private updateDocumentTitle() {
    method ngOnInit (line 136) | ngOnInit() {
    method getNavs (line 145) | private getNavs() {
    method setLocale (line 181) | private setLocale() {
    method verifyToken (line 189) | private verifyToken() {
    method getCollectCount (line 221) | private getCollectCount() {
    method goRoute (line 238) | private goRoute() {
    method registerKeyboard (line 257) | private registerKeyboard() {

FILE: src/components/breadcrumb/index.component.ts
  class BreadcrumbComponent (line 18) | class BreadcrumbComponent {
    method constructor (line 21) | constructor(public commonService: CommonService) {}
    method handleClick (line 23) | handleClick(e: Event) {

FILE: src/components/calendar/drawer/index.component.ts
  class CalendarDrawerComponent (line 30) | class CalendarDrawerComponent {
    method constructor (line 38) | constructor(private fb: FormBuilder) {
    method open (line 45) | open(data: any, idx: number) {
    method handleClose (line 53) | handleClose() {
    method handleSubmit (line 57) | handleSubmit() {

FILE: src/components/calendar/index.component.ts
  class CalendarComponent (line 17) | class CalendarComponent {
    method constructor (line 26) | constructor() {

FILE: src/components/card/index.component.ts
  class CardComponent (line 52) | class CardComponent {
    method constructor (line 69) | constructor(
    method ngOnInit (line 75) | ngOnInit() {
    method ngAfterViewInit (line 83) | ngAfterViewInit() {
    method generateColor (line 87) | private generateColor() {
    method parseDescription (line 93) | private parseDescription() {
    method copyUrl (line 97) | async copyUrl(type: 1 | 2): Promise<void> {
    method copyMouseout (line 115) | copyMouseout(): void {
    method openEditWebMoal (line 120) | openEditWebMoal(): void {
    method onRateChange (line 126) | onRateChange(rate: number): void {
    method confirmDel (line 131) | async confirmDel(): Promise<void> {
    method openMoveWebModal (line 165) | openMoveWebModal(): void {
    method getRate (line 171) | get getRate(): string {

FILE: src/components/carousel/drawer/index.component.ts
  class CarouselDrawerComponent (line 39) | class CarouselDrawerComponent {
    method constructor (line 47) | constructor(private fb: FormBuilder) {
    method imgs (line 55) | get imgs(): FormArray {
    method onUploadImage (line 59) | onUploadImage(data: any, idx: number) {
    method open (line 66) | open(data: any, idx: number) {
    method handleAdd (line 83) | handleAdd() {
    method handleClose (line 92) | handleClose() {
    method handleSubmit (line 97) | handleSubmit() {

FILE: src/components/carousel/index.component.ts
  class CarouselComponent (line 18) | class CarouselComponent {
    method constructor (line 23) | constructor() {}

FILE: src/components/class-tabs/index.component.ts
  class ClassTabsComponent (line 27) | class ClassTabsComponent {
    method constructor (line 39) | constructor() {}
    method ngOnChanges (line 41) | ngOnChanges(changes: SimpleChanges) {
    method ngOnDestroy (line 80) | ngOnDestroy() {
    method getTarget (line 87) | private getTarget() {
    method getToolbarItems (line 93) | private getToolbarItems() {
    method handleScroll (line 99) | private handleScroll() {
    method updateActiveIndex (line 128) | private updateActiveIndex(index: number) {
    method scrollIntoViewTabs (line 135) | private scrollIntoViewTabs() {
    method selectTab (line 145) | selectTab(index: number) {
    method setAnchorStyle (line 155) | private setAnchorStyle() {
    method scrollIntoView (line 166) | private scrollIntoView() {

FILE: src/components/component-group/index.component.ts
  class ComponentGroupComponent (line 45) | class ComponentGroupComponent {
    method constructor (line 59) | constructor() {
    method componentList (line 84) | get componentList() {
    method ngAfterViewInit (line 91) | ngAfterViewInit() {
    method getWidths (line 109) | public getWidths(): number[] {
    method ngOnDestroy (line 118) | ngOnDestroy() {
    method handleExpand (line 125) | handleExpand() {
    method checkOver (line 136) | private checkOver() {
    method trackByItem (line 166) | trackByItem(i: number, item: any) {

FILE: src/components/countdown/drawer/index.component.ts
  class CountdownDrawerComponent (line 35) | class CountdownDrawerComponent {
    method constructor (line 43) | constructor(private fb: FormBuilder) {
    method open (line 55) | open(data: any, idx: number) {
    method onUploadImage (line 63) | onUploadImage(data: any) {
    method handleClose (line 67) | handleClose() {
    method handleSubmit (line 71) | handleSubmit() {

FILE: src/components/countdown/index.component.ts
  type IProps (line 10) | interface IProps {
  class CountdownComponent (line 21) | class CountdownComponent {
    method constructor (line 27) | constructor() {}
    method ngOnInit (line 29) | ngOnInit() {
    method ngOnChanges (line 33) | ngOnChanges() {
    method init (line 37) | private init() {

FILE: src/components/create-web/index.component.ts
  class CreateWebComponent (line 77) | class CreateWebComponent {
    method constructor (line 106) | constructor(
    method modalTitle (line 137) | get modalTitle(): string {
    method urlArray (line 144) | get urlArray(): FormArray {
    method isTop (line 148) | get isTop(): boolean {
    method desc (line 152) | get desc(): string {
    method iconUrl (line 156) | get iconUrl(): string {
    method imgUrl (line 160) | get imgUrl(): string {
    method title (line 164) | get title(): string {
    method url (line 168) | get url(): string {
    method open (line 172) | open(
    method focusUrl (line 237) | private focusUrl() {
    method onClose (line 247) | onClose() {
    method onUrlBlur (line 256) | async onUrlBlur() {
    method addMoreUrl (line 295) | addMoreUrl() {
    method lessMoreUrl (line 305) | lessMoreUrl(idx: number) {
    method onChangeFile (line 309) | onChangeFile(data: any, key: string) {
    method onSelectChange (line 313) | onSelectChange(idx: number) {
    method handleTranslate (line 321) | handleTranslate(key = 'desc') {
    method getScreenshot (line 355) | getScreenshot() {
    method checkRepeat (line 381) | checkRepeat() {
    method handleOk (line 413) | async handleOk() {

FILE: src/components/delete-modal/index.component.ts
  type Props (line 16) | interface Props {
  class DeleteModalComponent (line 37) | class DeleteModalComponent {
    method constructor (line 49) | constructor(private message: NzMessageService) {
    method handleCancel (line 61) | handleCancel() {
    method handleOk (line 66) | async handleOk() {

FILE: src/components/edit-class/index.component.ts
  class EditClassComponent (line 51) | class EditClassComponent {
    method constructor (line 61) | constructor(
    method iconUrl (line 83) | get iconUrl(): string {
    method focusUrl (line 87) | focusUrl() {
    method onChangeFile (line 93) | onChangeFile(data: any) {
    method onCancel (line 97) | onCancel() {
    method handleOk (line 102) | handleOk() {

FILE: src/components/fixbar/index.component.ts
  class FixbarComponent (line 33) | class FixbarComponent {
    method constructor (line 80) | constructor(
    method onScroll (line 126) | onScroll(event: any) {
    method ngAfterViewInit (line 131) | ngAfterViewInit() {
    method ngOnDestroy (line 142) | ngOnDestroy() {
    method toggleTheme (line 149) | toggleTheme(theme: any) {
    method goTop (line 158) | goTop() {
    method collapse (line 174) | collapse() {
    method toggleMode (line 178) | toggleMode() {
    method goSystemPage (line 193) | goSystemPage() {
    method handleOpen (line 198) | handleOpen() {
    method unregisterServiceWorkers (line 206) | unregisterServiceWorkers() {
    method handleSync (line 223) | handleSync() {
    method toggleLocale (line 239) | toggleLocale() {

FILE: src/components/footer/footer.component.ts
  class FooterComponent (line 20) | class FooterComponent {
    method constructor (line 26) | constructor() {}
    method ngOnInit (line 28) | ngOnInit() {
    method ngOnDestroy (line 34) | ngOnDestroy() {
    method handleApplyWeb (line 41) | handleApplyWeb() {
    method ngAfterViewInit (line 45) | ngAfterViewInit() {

FILE: src/components/holiday/drawer/index.component.ts
  type IHolidayProps (line 19) | interface IHolidayProps {
  class HolidayDrawerComponent (line 43) | class HolidayDrawerComponent {
    method constructor (line 54) | constructor(private fb: FormBuilder) {
    method items (line 60) | get items(): FormArray {
    method open (line 64) | open(data: any, idx: number) {
    method getHoliday (line 81) | getHoliday() {
    method handleHolidayChange (line 96) | handleHolidayChange(values: IHolidayProps[]) {
    method handleAdd (line 113) | handleAdd() {
    method handleDel (line 124) | handleDel(idx: number) {
    method handleClose (line 128) | handleClose() {
    method handleSubmit (line 133) | handleSubmit() {

FILE: src/components/holiday/index.component.ts
  class HolidayComponent (line 19) | class HolidayComponent {
    method constructor (line 26) | constructor() {}
    method ngOnChanges (line 28) | ngOnChanges() {
    method init (line 32) | private init() {

FILE: src/components/html/drawer/index.component.ts
  class HTMLDrawerComponent (line 32) | class HTMLDrawerComponent {
    method constructor (line 40) | constructor(private fb: FormBuilder) {
    method open (line 48) | open(data: any, idx: number) {
    method handleClose (line 56) | handleClose() {
    method handleSubmit (line 60) | handleSubmit() {

FILE: src/components/html/index.component.ts
  class HTMLComponent (line 18) | class HTMLComponent {
    method constructor (line 26) | constructor() {}
    method ngOnChanges (line 28) | ngOnChanges() {
    method ngOnDestroy (line 33) | ngOnDestroy() {
    method init (line 37) | private init() {
    method parseDescription (line 41) | private parseDescription() {

FILE: src/components/icon-git/icon-git.component.ts
  class IconGitComponent (line 17) | class IconGitComponent {
    method constructor (line 21) | constructor() {}

FILE: src/components/image/drawer/index.component.ts
  class ImageDrawerComponent (line 30) | class ImageDrawerComponent {
    method constructor (line 38) | constructor(private fb: FormBuilder) {
    method open (line 46) | open(data: any, idx: number) {
    method onUploadImage (line 54) | onUploadImage(data: any) {
    method handleClose (line 58) | handleClose() {
    method handleSubmit (line 62) | handleSubmit() {

FILE: src/components/image/index.component.ts
  class ImageComponent (line 16) | class ImageComponent {
    method constructor (line 21) | constructor(public jumpService: JumpService) {}

FILE: src/components/loading/index.component.ts
  class LoadingComponent (line 15) | class LoadingComponent {
    method constructor (line 16) | constructor() {}

FILE: src/components/login/login.component.ts
  class LoginComponent (line 42) | class LoginComponent {
    method constructor (line 54) | constructor(
    method ngAfterViewInit (line 63) | ngAfterViewInit(): void {
    method handleCancel (line 67) | handleCancel(): void {
    method inputFocus (line 72) | private inputFocus(): void {
    method onKey (line 78) | onKey(event: KeyboardEvent): void {
    method login (line 84) | async login(): Promise<void> {

FILE: src/components/logo/logo.component.ts
  class LogoComponent (line 16) | class LogoComponent {
    method constructor (line 26) | constructor() {}
    method ngOnInit (line 28) | ngOnInit() {
    method generateColor (line 35) | private generateColor() {
    method getFirstLetter (line 39) | private getFirstLetter() {
    method onError (line 45) | onError() {

FILE: src/components/move-web/index.component.ts
  class MoveWebComponent (line 34) | class MoveWebComponent {
    method constructor (line 49) | constructor(private message: NzMessageService) {
    method ngOnInit (line 55) | ngOnInit() {}
    method open (line 57) | open(
    method hanldeOneSelect (line 76) | hanldeOneSelect(id: number) {
    method hanldeTwoSelect (line 84) | hanldeTwoSelect(id: number) {
    method hanldeThreeSelect (line 91) | hanldeThreeSelect(id: number) {
    method handleCancel (line 95) | handleCancel() {
    method hanldeOk (line 101) | async hanldeOk(): Promise<any> {

FILE: src/components/news/drawer/index.component.ts
  class NewsDrawerComponent (line 37) | class NewsDrawerComponent {
    method constructor (line 61) | constructor(private fb: FormBuilder) {
    method open (line 69) | open(data: any, idx: number) {
    method handleClose (line 77) | handleClose() {
    method handleSubmit (line 81) | handleSubmit() {

FILE: src/components/news/index.component.ts
  type INewsItem (line 25) | interface INewsItem {
  class NewsComponent (line 39) | class NewsComponent {
    method constructor (line 52) | constructor(public readonly jumpService: JumpService) {
    method newsList (line 61) | get newsList() {
    method ngOnChanges (line 66) | ngOnChanges() {
    method onMouseEnter (line 70) | onMouseEnter(index: number) {
    method scrollIntoViewTabs (line 75) | scrollIntoViewTabs() {
    method getNews (line 85) | private getNews() {
    method trackByItem (line 124) | trackByItem(a: any, item: INewsItem) {

FILE: src/components/no-data/no-data.component.ts
  class NoDataComponent (line 17) | class NoDataComponent {

FILE: src/components/off-work/drawer/index.component.ts
  class OffWorkDrawerComponent (line 31) | class OffWorkDrawerComponent {
    method constructor (line 39) | constructor(
    method open (line 51) | open(data: any, idx: number) {
    method handleClose (line 59) | handleClose() {
    method handleSubmit (line 63) | handleSubmit(): any {

FILE: src/components/off-work/index.component.ts
  class OffWorkComponent (line 18) | class OffWorkComponent {
    method constructor (line 26) | constructor() {
    method ngOnChanges (line 33) | ngOnChanges() {
    method ngOnDestroy (line 38) | ngOnDestroy() {
    method visibilitychange (line 43) | private visibilitychange(e: any) {
    method init (line 51) | private init() {

FILE: src/components/phone-class/index.component.ts
  class PhoneClassComponent (line 24) | class PhoneClassComponent {
    method constructor (line 28) | constructor(public commonService: CommonService) {}
    method ngAfterViewInit (line 30) | ngAfterViewInit() {
    method handleClickTwo (line 41) | handleClickTwo(e: any, data: INavTwoProp) {

FILE: src/components/runtime/drawer/index.component.ts
  class RuntimeDrawerComponent (line 28) | class RuntimeDrawerComponent {
    method constructor (line 36) | constructor(private fb: FormBuilder) {
    method open (line 42) | open(data: any, idx: number) {
    method handleClose (line 50) | handleClose() {
    method handleSubmit (line 54) | handleSubmit() {

FILE: src/components/runtime/index.component.ts
  class RuntimeComponent (line 17) | class RuntimeComponent {
    method constructor (line 24) | constructor() {

FILE: src/components/search/index.component.ts
  class SearchComponent (line 40) | class SearchComponent {
    method constructor (line 58) | constructor(
    method logoImage (line 75) | get logoImage() {
    method inputFocus (line 80) | private inputFocus() {
    method ngAfterViewInit (line 86) | ngAfterViewInit() {
    method onSelectChange (line 92) | onSelectChange() {
    method clickEngineItem (line 96) | clickEngineItem(index: number) {
    method triggerSearch (line 103) | triggerSearch() {
    method onKey (line 130) | onKey(event: KeyboardEvent) {

FILE: src/components/search/types.ts
  type SearchType (line 3) | enum SearchType {

FILE: src/components/side-images/image/index.component.ts
  class SideImageComponent (line 19) | class SideImageComponent {
    method constructor (line 26) | constructor() {}
    method ngOnInit (line 28) | ngOnInit() {
    method ngAfterViewInit (line 35) | ngAfterViewInit() {
    method parseDescription (line 39) | private parseDescription() {

FILE: src/components/side-images/index.component.ts
  class SideImagesComponent (line 18) | class SideImagesComponent {
    method constructor (line 21) | constructor(public jumpService: JumpService) {}

FILE: src/components/sidebar/index.component.ts
  function getDefaultCollapsed (line 19) | function getDefaultCollapsed(): boolean {
  class SidebarComponent (line 44) | class SidebarComponent {
    method constructor (line 53) | constructor(public commonService: CommonService) {
    method logoImage (line 61) | get logoImage() {
    method openMenu (line 69) | openMenu(item: INavProps) {
    method toggleSidebar (line 73) | toggleSidebar(openSidebar?: boolean) {
    method handleCollapsed (line 82) | handleCollapsed() {
    method onClickNav (line 93) | onClickNav(item: INavTwoProp) {

FILE: src/components/swiper/index.component.ts
  class SwiperComponent (line 19) | class SwiperComponent {
    method constructor (line 27) | constructor(public jumpService: JumpService) {}
    method ngAfterViewInit (line 29) | ngAfterViewInit(): void {
    method ngOnDestroy (line 41) | ngOnDestroy(): void {
    method handleVisibilityChange (line 48) | handleVisibilityChange(): void {

FILE: src/components/swiper/swiper-item/index.component.ts
  class SwiperItemComponent (line 19) | class SwiperItemComponent {
    method constructor (line 28) | constructor() {}
    method ngOnInit (line 30) | ngOnInit() {
    method ngAfterViewInit (line 37) | ngAfterViewInit() {
    method parseDescription (line 41) | private parseDescription() {

FILE: src/components/tag-list/index.component.ts
  class TagListComponent (line 21) | class TagListComponent {
    method constructor (line 33) | constructor(public jumpService: JumpService) {}
    method handleClick (line 35) | private handleClick(e: any) {
    method openEditWebMoal (line 40) | openEditWebMoal(e: any) {
    method confirmDel (line 45) | confirmDel(e: any) {
    method openMoveWebModal (line 50) | openMoveWebModal(e: any) {

FILE: src/components/toolbar-title/index.component.ts
  class ToolbarTitleWebComponent (line 24) | class ToolbarTitleWebComponent {
    method constructor (line 33) | constructor(public commonService: CommonService) {}
    method openCreateWebModal (line 35) | openCreateWebModal() {
    method openMoveModal (line 41) | openMoveModal(e: Event, data: INavThreeProp) {
    method handleDelete (line 50) | async handleDelete(e: Event, id: number) {
    method stopPropagation (line 64) | stopPropagation(e: Event) {
    method handleEditName (line 69) | handleEditName(e: Event, data: INavThreeProp) {

FILE: src/components/upload-file/index.component.ts
  class UploadFileComponent (line 19) | class UploadFileComponent {
    method constructor (line 27) | constructor(private message: NzMessageService) {}
    method onChangeFile (line 29) | onChangeFile(e: any): any {
    method onUpload (line 43) | onUpload(file: File) {

FILE: src/components/upload-image/index.component.ts
  class UploadImageComponent (line 20) | class UploadImageComponent {
    method constructor (line 29) | constructor(private message: NzMessageService) {}
    method onChangeFile (line 31) | onChangeFile(e: any): any {
    method onUpload (line 48) | onUpload(file: File) {

FILE: src/components/web-list/index.component.ts
  constant DEFAULT_WEBSITE (line 21) | let DEFAULT_WEBSITE: Array<IWebProps> = []
  class WebListComponent (line 30) | class WebListComponent {
    method constructor (line 40) | constructor(
    method ngOnInit (line 47) | ngOnInit() {
    method getTopWeb (line 75) | getTopWeb() {

FILE: src/components/web-more-menu/index.component.ts
  class WebMoreMenuComponent (line 17) | class WebMoreMenuComponent {
    method ngOnInit (line 23) | ngOnInit() {}
    method handleCilck (line 25) | handleCilck(id: number) {

FILE: src/constants/index.ts
  constant DB_PATH (line 6) | const DB_PATH = 'data/db.json'
  constant TAG_PATH (line 8) | const TAG_PATH = 'data/tag.json'
  constant SETTING_PATH (line 10) | const SETTING_PATH = 'data/settings.json'
  constant SEARCH_PATH (line 12) | const SEARCH_PATH = 'data/search.json'
  constant COMPONENT_PATH (line 14) | const COMPONENT_PATH = 'data/component.json'
  constant VERSION (line 16) | const VERSION = navConfig.version
  constant STORAGE_KEY_MAP (line 18) | const STORAGE_KEY_MAP = {

FILE: src/constants/symbol.ts
  constant CODE_SYMBOL (line 1) | const CODE_SYMBOL = '!'
  constant SELF_SYMBOL (line 2) | const SELF_SYMBOL = '^'
  constant ROUTER_SYMBOL (line 3) | const ROUTER_SYMBOL = '@'
  constant DEFAULT_SORT_INDEX (line 5) | const DEFAULT_SORT_INDEX = 100000

FILE: src/locale/index.ts
  function getLocale (line 12) | function getLocale(): string {
  function $t (line 18) | function $t(s: string, map?: Record<string, any>): string {
  function isZhCN (line 33) | function isZhCN(): boolean {

FILE: src/pipe/safeHtml.pipe.ts
  class SafeHtmlPipe (line 12) | class SafeHtmlPipe implements PipeTransform {
    method constructor (line 13) | constructor(private sanitized: DomSanitizer) {}
    method transform (line 15) | transform(value: string): any {

FILE: src/services/common.ts
  class CommonService (line 24) | class CommonService {
    method constructor (line 38) | constructor(
    method handleClickClass (line 78) | handleClickClass(id: number) {
    method trackByItem (line 94) | trackByItem(a: any, item: any) {
    method trackByItemWeb (line 98) | trackByItemWeb(a: any, item: any) {
    method collapsed (line 102) | get collapsed() {
    method getOverIndex (line 117) | getOverIndex(selector: string) {
    method setOverIndex (line 127) | setOverIndex() {

FILE: src/services/jump.ts
  class JumpService (line 13) | class JumpService {
    method constructor (line 14) | constructor(private router: Router) {}
    method goUrl (line 16) | goUrl(e: any, url: string | null | undefined) {

FILE: src/types/index.ts
  type ThemeType (line 5) | type ThemeType = 'Light' | 'Sim' | 'Side' | 'App' | 'Shortcut' | 'Super'
  type TopType (line 7) | enum TopType {
  type ComponentType (line 12) | enum ComponentType {
  type ActionType (line 24) | enum ActionType {
  type NewsType (line 30) | enum NewsType {
  type INewsProps (line 47) | interface INewsProps {
  type ICalendarProps (line 53) | interface ICalendarProps {
  type IOffWorkProps (line 58) | interface IOffWorkProps {
  type ICarouselProps (line 65) | interface ICarouselProps {
  type IImageProps (line 71) | interface IImageProps {
  type ICountdownProps (line 77) | interface ICountdownProps {
  type IRuntimeProps (line 87) | interface IRuntimeProps {
  type IHtmlProps (line 91) | interface IHtmlProps {
  type IHolidayProps (line 97) | interface IHolidayProps {
  type IComponentItemProps (line 101) | interface IComponentItemProps
  type IComponentProps (line 115) | interface IComponentProps {
  type ICardType (line 120) | type ICardType =
  type OverType (line 129) | type OverType = 'overflow' | 'ellipsis'
  type Spider (line 131) | type Spider = 'NO' | 'EMPTY' | 'ALWAYS'
  type ITagPropValues (line 133) | interface ITagPropValues {
  type ITagProp (line 145) | interface ITagProp {
  type IWebTag (line 149) | interface IWebTag {
  type BaseNavItem (line 154) | interface BaseNavItem {
  type IWebProps (line 162) | interface IWebProps {
  type INavThreeProp (line 183) | interface INavThreeProp extends BaseNavItem {
  type INavTwoProp (line 189) | interface INavTwoProp extends BaseNavItem {
  type INavProps (line 195) | interface INavProps extends BaseNavItem {
  type ISearchItemProps (line 200) | interface ISearchItemProps {
  type ISearchProps (line 209) | interface ISearchProps {
  type ImageProps (line 216) | interface ImageProps {
  type IClassProps (line 221) | interface IClassProps {
  type ISettings (line 228) | interface ISettings {
  type InternalProps (line 318) | type InternalProps = {

FILE: src/utils/bookmark.ts
  function findUnclassifiedData (line 19) | function findUnclassifiedData(roolDL: Element): IWebProps[] {
  type BookmarkParseResult (line 41) | interface BookmarkParseResult {
  function parseBookmark (line 46) | function parseBookmark(

FILE: src/utils/http.ts
  function getAddress (line 14) | function getAddress(): string {
  function getBaseUrl (line 23) | function getBaseUrl() {
  function getImageBaseUrl (line 36) | function getImageBaseUrl() {
  function startLoad (line 50) | function startLoad() {
  function stopLoad (line 54) | function stopLoad() {
  constant HTTP_BASE_URL (line 97) | const HTTP_BASE_URL = 'https://api.nav3.cn'
  function getDefaultRequestData (line 104) | function getDefaultRequestData(data?: any) {

FILE: src/utils/index.ts
  function randomInt (line 21) | function randomInt(max: number) {
  function fuzzySearch (line 25) | function fuzzySearch(
  function randomColor (line 225) | function randomColor(): string {
  function randomBgImg (line 232) | function randomBgImg(): void {
  function removeBgImg (line 266) | function removeBgImg(): void {
  function queryString (line 277) | function queryString(cached: boolean = true) {
  function setLocation (line 301) | function setLocation() {
  function getDefaultSearchEngine (line 312) | function getDefaultSearchEngine(): ISearchItemProps {
  function setDefaultSearchEngine (line 327) | function setDefaultSearchEngine(engine: ISearchItemProps) {
  function isDark (line 334) | function isDark(): boolean {
  function copyText (line 345) | async function copyText(text: string): Promise<boolean> {
  function isValidImg (line 358) | async function isValidImg(
  function getTextContent (line 391) | function getTextContent(value: string = ''): string {
  function matchCurrentList (line 396) | function matchCurrentList(): INavThreeProp[] {
  function addZero (line 419) | function addZero(n: number): string {
  function getOverIndex (line 424) | function getOverIndex(selector: string): number {
  function isMobile (line 444) | function isMobile() {
  function getDayOfYear (line 451) | function getDayOfYear() {
  function getDateTime (line 460) | function getDateTime() {
  function getDefaultTheme (line 483) | function getDefaultTheme() {
  function getClassById (line 492) | function getClassById(id: unknown, initValue = 0, isWebId = false) {
  function scrollIntoViewLeft (line 552) | function scrollIntoViewLeft(
  function imageErrorHidden (line 571) | function imageErrorHidden(el: Event) {

FILE: src/utils/pureUtils.ts
  function replaceJsdelivrCDN (line 7) | function replaceJsdelivrCDN(
  function getIsGitee (line 22) | function getIsGitee(gitRepoUrl: string): boolean {
  function getIsGitLab (line 26) | function getIsGitLab(gitRepoUrl: string): boolean {
  function removeTrailingSlashes (line 30) | function removeTrailingSlashes(url: string | null | undefined): string {
  type WebProps (line 37) | type WebProps = {
  type DFSProps (line 41) | type DFSProps<T, F, C, C2> = {
  function dfsNavs (line 50) | function dfsNavs<
  function filterLoginData (line 108) | function filterLoginData(navs: any[], isLogin: boolean): INavProps[] {
  function cleanWebAttrs (line 127) | function cleanWebAttrs(navs: any) {
  function isNumber (line 144) | function isNumber(v: any): boolean {
  function transformSafeHTML (line 154) | function transformSafeHTML(str: string) {
  function transformUnSafeHTML (line 165) | function transformUnSafeHTML(str: string) {

FILE: src/utils/sw.ts
  function unregisterServiceWorkers (line 1) | async function unregisterServiceWorkers(): Promise<boolean> {
  function isPwaMode (line 34) | function isPwaMode(): boolean {

FILE: src/utils/user.ts
  function getToken (line 9) | function getToken() {
  function getAuthCode (line 13) | function getAuthCode() {
  function removeAuthCode (line 17) | function removeAuthCode() {
  function setAuthCode (line 21) | function setAuthCode(c: string) {
  function setToken (line 25) | function setToken(token: string) {
  function removeToken (line 29) | function removeToken() {
  function getImageToken (line 33) | function getImageToken() {
  function setImageToken (line 37) | function setImageToken(token: string) {
  function removeWebsite (line 41) | function removeWebsite() {
  function userLogout (line 45) | function userLogout() {
  function getPermissions (line 74) | function getPermissions(settings: ISettings) {

FILE: src/utils/utils.ts
  type TemplateData (line 12) | interface TemplateData {
  function compilerTemplate (line 18) | function compilerTemplate(str: string): string {
  constant DARK_THEME (line 32) | const DARK_THEME = {
  function addDark (line 38) | function addDark(): void {
  function removeDark (line 50) | function removeDark(): void {
  function parseHtmlWithContent (line 56) | function parseHtmlWithContent(node: HTMLElement, str: string) {
  function parseLoadingWithContent (line 86) | function parseLoadingWithContent(str: string): string {
  function getTempId (line 107) | function getTempId() {

FILE: src/utils/web.ts
  function getNavs (line 17) | async function getNavs() {
  function setNavs (line 72) | function setNavs(navs: INavProps[]): Promise<any> {
  function toggleCollapseAll (line 82) | function toggleCollapseAll(navs: INavProps[]): boolean {
  function deleteByIds (line 97) | async function deleteByIds(
  function updateByWeb (line 122) | function updateByWeb(oldId: number, newData: IWebProps) {
  function getWebById (line 146) | function getWebById(id: number): IWebProps | null {
  function updateByClass (line 162) | function updateByClass(oldId: number, newData: any) {
  function pushDataByAny (line 183) | function pushDataByAny(parentId: number, data: any): boolean {

FILE: src/view/light/index.component.ts
  class LightComponent (line 52) | class LightComponent {
    method constructor (line 59) | constructor(public commonService: CommonService) {}
    method isEllipsis (line 61) | get isEllipsis() {
    method ngOnInit (line 65) | ngOnInit() {
    method ngOnDestroy (line 69) | ngOnDestroy() {
    method ngAfterViewInit (line 74) | ngAfterViewInit() {
    method handleClickTop (line 95) | handleClickTop(e: any, data: INavProps) {

FILE: src/view/mobile/index.component.ts
  class MobileComponent (line 28) | class MobileComponent {
    method constructor (line 31) | constructor(public commonService: CommonService) {}
    method handleCilckNav (line 33) | handleCilckNav(id: number) {
    method handleToggleOpen (line 38) | handleToggleOpen() {

FILE: src/view/shortcut/index.component.ts
  class ShortcutComponent (line 34) | class ShortcutComponent {
    method constructor (line 51) | constructor(public jumpService: JumpService) {
    method ngOnInit (line 61) | ngOnInit() {
    method handleMouseLeave (line 72) | handleMouseLeave(e: any) {
    method handleMouseOver (line 82) | handleMouseOver(e: any) {
    method getDateTime (line 134) | getDateTime() {
    method ngOnDestroy (line 147) | ngOnDestroy() {
    method trackByItemWeb (line 151) | trackByItemWeb(a: any, item: any) {
    method iframeLoad (line 155) | iframeLoad() {

FILE: src/view/side/index.component.ts
  class SideComponent (line 43) | class SideComponent {
    method constructor (line 46) | constructor(public commonService: CommonService) {}

FILE: src/view/sim/index.component.ts
  class SimComponent (line 56) | class SimComponent {
    method constructor (line 62) | constructor(public commonService: CommonService) {}
    method ngOnDestroy (line 64) | ngOnDestroy() {
    method isEllipsis (line 68) | get isEllipsis() {
    method ngAfterViewInit (line 72) | ngAfterViewInit() {
    method handleClickTop (line 86) | handleClickTop(e: any, data: INavProps) {

FILE: src/view/super/index.component.ts
  class SideComponent (line 50) | class SideComponent {
    method constructor (line 58) | constructor(public commonService: CommonService) {}
    method isEllipsis (line 60) | get isEllipsis() {
    method ngAfterViewInit (line 64) | ngAfterViewInit() {
    method ngOnDestroy (line 85) | ngOnDestroy() {
    method openCreateWebModal (line 89) | openCreateWebModal() {
    method handleClickTop (line 96) | handleClickTop(e: any, data: INavProps) {
    method handleClickThree (line 105) | handleClickThree(e: any, data: INavThreeProp) {

FILE: src/view/system/auth/index.component.ts
  class AuthComponent (line 29) | class AuthComponent {
    method constructor (line 36) | constructor(private message: NzMessageService) {}
    method ngOnInit (line 38) | ngOnInit() {
    method getUserInfo (line 44) | private async getUserInfo(params?: any) {
    method handleSubmitAuthCode (line 59) | handleSubmitAuthCode() {
    method handleSave (line 70) | handleSave() {
    method logoutAuthCode (line 84) | logoutAuthCode() {

FILE: src/view/system/bookmark-export/index.component.ts
  class SystemBookmarkExportComponent (line 34) | class SystemBookmarkExportComponent {
    method constructor (line 38) | constructor(private notification: NzNotificationService) {}
    method bookmarksExport (line 40) | async bookmarksExport(): Promise<any> {

FILE: src/view/system/bookmark/index.component.ts
  class SystemBookmarkComponent (line 21) | class SystemBookmarkComponent {
    method constructor (line 26) | constructor(
    method ngOnInit (line 31) | ngOnInit() {}
    method onClickFile (line 33) | onClickFile() {
    method onBookChange (line 37) | onBookChange(e: any) {

FILE: src/view/system/collect/index.component.ts
  class CollectComponent (line 40) | class CollectComponent {
    method constructor (line 55) | constructor(
    method ngOnInit (line 61) | ngOnInit() {
    method onAllChecked (line 65) | onAllChecked(checked: boolean) {
    method onItemChecked (line 76) | onItemChecked(id: number, checked: boolean): void {
    method batchDelete (line 84) | batchDelete() {
    method handleDelete (line 113) | handleDelete(idx: number) {
    method highlightDifferences (line 126) | highlightDifferences(original: string, modified: string): string {
    method getUserCollect (line 173) | getUserCollect() {
    method handleSubmitAuthCode (line 200) | handleSubmitAuthCode() {
    method handleCreate (line 209) | handleCreate(data: any, idx: number) {
    method handleDeleteWeb (line 226) | handleDeleteWeb(data: any, idx: number) {
    method handleUpdateWeb (line 240) | handleUpdateWeb(data: any, idx: number) {
    method handleClick (line 252) | handleClick(data: any, idx: number) {
    method handleSubmit (line 262) | handleSubmit() {
    method trackByItem (line 288) | trackByItem(i: number, item: any) {

FILE: src/view/system/component/index.component.ts
  class SystemComponentComponent (line 75) | class SystemComponentComponent {
    method constructor (line 93) | constructor(
    method ngOnInit (line 98) | ngOnInit() {}
    method moveUp (line 101) | moveUp(index: number): void {
    method moveDown (line 112) | moveDown(index: number): void {
    method handleEdit (line 122) | handleEdit(data: any, idx: number) {
    method onAdd (line 138) | onAdd(data: IComponentItemProps) {
    method onDelete (line 147) | onDelete(idx: number) {
    method handleZoomChange (line 151) | handleZoomChange(value: number) {
    method handleOk (line 158) | handleOk(data: any) {
    method handleSubmit (line 167) | handleSubmit() {
    method trackByItem (line 197) | trackByItem(i: number, item: any) {

FILE: src/view/system/config/index.component.ts
  class SystemConfigComponent (line 49) | class SystemConfigComponent {
    method constructor (line 55) | constructor(
    method ngOnInit (line 69) | ngOnInit() {
    method getConfigInfo (line 73) | private getConfigInfo() {
    method handleSubmit (line 93) | async handleSubmit() {

FILE: src/view/system/index.component.ts
  class SystemComponent (line 45) | class SystemComponent {
    method constructor (line 58) | constructor(private router: Router) {
    method ngOnInit (line 75) | ngOnInit() {
    method toggleCollapsed (line 80) | toggleCollapsed() {
    method goBack (line 88) | goBack() {
    method goRoute (line 96) | goRoute(to: string, disabled = false) {
    method logout (line 103) | logout() {

FILE: src/view/system/info/index.component.ts
  class SystemInfoComponent (line 20) | class SystemInfoComponent {
    method constructor (line 28) | constructor() {}

FILE: src/view/system/search/index.component.ts
  class SystemSearchComponent (line 50) | class SystemSearchComponent {
    method constructor (line 56) | constructor(
    method onLogoChange (line 74) | onLogoChange(data: any, key: string) {
    method handleAdd (line 78) | handleAdd() {
    method handleDelete (line 93) | handleDelete(idx: number) {
    method moveUp (line 98) | moveUp(index: number): void {
    method moveDown (line 109) | moveDown(index: number): void {
    method handleSubmit (line 119) | async handleSubmit() {
    method onChangeUpload (line 168) | onChangeUpload(path: any, idx: number) {

FILE: src/view/system/setting/index.component.ts
  class SystemSettingComponent (line 77) | class SystemSettingComponent {
    method constructor (line 118) | constructor(
    method cdnUrl (line 164) | get cdnUrl(): string {
    method footTemplate (line 168) | get footTemplate(): string {
    method onFootTemplateChange (line 172) | onFootTemplateChange(v: any) {
    method onLogoChange (line 178) | onLogoChange(data: any, key: string) {
    method onBannerChange (line 183) | onBannerChange(data: any, key: string, idx: number) {
    method onChangeBannerUrl (line 187) | onChangeBannerUrl(e: any, key: string, idx: number) {
    method onChangeJumpUrl (line 192) | onChangeJumpUrl(e: any, key: string, idx: number) {
    method onDeleteBanner (line 197) | onDeleteBanner(key: string, idx: number) {
    method onAddBanner (line 201) | onAddBanner(key: string) {
    method onShortcutImgChange (line 208) | onShortcutImgChange(e: any) {
    method handleMoveUp (line 213) | handleMoveUp(key: string, idx: number) {
    method handleMoveDown (line 222) | handleMoveDown(key: string, idx: number) {
    method handleSpider (line 231) | async handleSpider() {
    method handleSubmit (line 265) | async handleSubmit() {

FILE: src/view/system/tag/index.component.ts
  class SystemTagComponent (line 37) | class SystemTagComponent {
    method constructor (line 43) | constructor(
    method ngOnInit (line 48) | ngOnInit() {}
    method moveUp (line 51) | moveUp(index: number): void {
    method moveDown (line 62) | moveDown(index: number): void {
    method onColorChange (line 72) | onColorChange(e: any, idx: number) {
    method handleAdd (line 77) | handleAdd() {
    method handleDelete (line 92) | handleDelete(idx: number) {
    method handleSubmit (line 96) | handleSubmit() {
    method trackByItem (line 155) | trackByItem(i: number, item: any) {

FILE: src/view/system/web/index.component.ts
  class WebpComponent (line 71) | class WebpComponent {
    method constructor (line 90) | constructor(
    method ngOnInit (line 97) | ngOnInit() {}
    method oneIndex (line 99) | get oneIndex() {
    method twoIndex (line 103) | get twoIndex() {
    method threeIndex (line 111) | get threeIndex() {
    method twoTableData (line 121) | get twoTableData(): INavTwoProp[] {
    method threeTableData (line 129) | get threeTableData(): INavThreeProp[] {
    method websiteTableData (line 139) | get websiteTableData(): IWebProps[] {
    method getErrorWebs (line 153) | getErrorWebs() {
    method onCheckAll (line 180) | onCheckAll(checked: boolean) {
    method onItemChecked (line 198) | onItemChecked(id: number, checked: boolean) {
    method onBatchDelete (line 206) | async onBatchDelete() {
    method handleRestoreData (line 236) | handleRestoreData() {
    method handleDownloadBackup (line 250) | handleDownloadBackup() {
    method handleUploadBackup (line 266) | handleUploadBackup(e: any) {
    method goBack (line 370) | goBack() {
    method openMoveWebModal (line 374) | openMoveWebModal(data: any, level?: number) {
    method openCreateWebModal (line 382) | openCreateWebModal(): any {
    method openEditWebModal (line 391) | openEditWebModal(detail: IWebProps) {
    method onTabChange (line 397) | onTabChange(index?: number) {
    method moveOneUp (line 405) | moveOneUp(index: number): void {
    method moveOneDown (line 420) | moveOneDown(index: number): void {
    method moveTwoUp (line 435) | moveTwoUp(index: number): void {
    method moveTwoDown (line 454) | moveTwoDown(index: number): void {
    method moveThreeUp (line 473) | moveThreeUp(index: number): void {
    method moveThreeDown (line 494) | moveThreeDown(index: number): void {
    method moveWebUp (line 517) | moveWebUp(index: number): void {
    method moveWebDown (line 545) | moveWebDown(index: number): void {
    method hanldeOneSelect (line 577) | hanldeOneSelect(id: number) {
    method hanldeTwoSelect (line 584) | hanldeTwoSelect(id: number) {
    method hanldeThreeSelect (line 590) | hanldeThreeSelect(id: number) {
    method openCreateClass (line 595) | openCreateClass(): any {
    method openEditClass (line 612) | openEditClass(data: any) {
    method handleSync (line 618) | handleSync() {
Condensed preview — 264 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (771K chars).
[
  {
    "path": ".editorconfig",
    "chars": 314,
    "preview": "# Editor configuration, see https://editorconfig.org\nroot = true\n\n[*]\ncharset = utf-8\nindent_style = space\nindent_size ="
  },
  {
    "path": ".eslintignore",
    "chars": 56,
    "preview": "data/\nmain.ts\npolyfills.ts\ntest.ts\nenvironments/\nassets/"
  },
  {
    "path": ".github/workflows/ci.yml",
    "chars": 807,
    "preview": "name: Build web\non:\n  push:\n    branches:\n      - master\n      - main\njobs:\n  build:\n    runs-on: ubuntu-latest\n    step"
  },
  {
    "path": ".gitignore",
    "chars": 672,
    "preview": "# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.\n\n# Comp"
  },
  {
    "path": ".npmrc",
    "chars": 21,
    "preview": "shamefully-hoist=true"
  },
  {
    "path": ".oxlintrc.json",
    "chars": 141,
    "preview": "{\n  \"rules\": {\n    \"no-this-alias\": 0,\n    \"no-unused-vars\": [\n      \"error\",\n      {\n        \"ignoreRestSiblings\": true"
  },
  {
    "path": ".postcssrc.json",
    "chars": 54,
    "preview": "{\n  \"plugins\": {\n    \"@tailwindcss/postcss\": {}\n  }\n}\n"
  },
  {
    "path": ".prettierrc.json",
    "chars": 43,
    "preview": "{\n  \"semi\": false,\n  \"singleQuote\": true\n}\n"
  },
  {
    "path": "LICENSE",
    "chars": 34888,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\nCopyright (C) 2007 Free S"
  },
  {
    "path": "README.md",
    "chars": 4214,
    "preview": "<p align=\"center\">\n  <a href=\"https://nav3.cn/?g\">\n    <img src=\"https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pag"
  },
  {
    "path": "README_EN.md",
    "chars": 6229,
    "preview": "<p align=\"center\">\n  <a href=\"https://nav3.cn/?g\">\n    <img src=\"https://gcore.jsdelivr.net/gh/xjh22222228/public@gh-pag"
  },
  {
    "path": "angular.json",
    "chars": 3038,
    "preview": "{\n  \"$schema\": \"./node_modules/@angular/cli/lib/config/schema.json\",\n  \"version\": 1,\n  \"newProjectRoot\": \"projects\",\n  \""
  },
  {
    "path": "data/component.json",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/db.json",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/internal.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "data/search.json",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "data/settings.json",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "data/tag.json",
    "chars": 3,
    "preview": "[]\n"
  },
  {
    "path": "nav.config.yaml",
    "chars": 1250,
    "preview": "# 发现导航 在未授权的情况下,您可以免费使用,必须公开可见,禁止商业用途。\n# LICENSE GPL-3.0 https://github.com/xjh22222228/nav/blob/main/LICENSE\n# 配置信息:htt"
  },
  {
    "path": "netlify.toml",
    "chars": 364,
    "preview": "[[redirects]]\n  from = \"/*\"\n  to = \"/index.html\"\n  status = 200\n[build.environment]\n  NODE_VERSION = \"22\"\n[build]\n  comm"
  },
  {
    "path": "ngsw-config.json",
    "chars": 639,
    "preview": "{\n  \"$schema\": \"./node_modules/@angular/service-worker/config/schema.json\",\n  \"index\": \"/index.html\",\n  \"assetGroups\": ["
  },
  {
    "path": "package.json",
    "chars": 2821,
    "preview": "{\n  \"name\": \"nav\",\n  \"version\": \"17.0.0\",\n  \"author\": \"xiejiahe\",\n  \"homepage\": \"https://github.com/xjh22222228/nav\",\n  "
  },
  {
    "path": "public/manifest.webmanifest",
    "chars": 462,
    "preview": "{\n  \"name\": \"发现导航\",\n  \"short_name\": \"发现导航\",\n  \"theme_color\": \"#ffffff\",\n  \"background_color\": \"#ffffff\",\n  \"display\": \"s"
  },
  {
    "path": "public/readme.md",
    "chars": 35,
    "preview": "https://github.com/xjh22222228/nav\n"
  },
  {
    "path": "scripts/build.ts",
    "chars": 1749,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejia.he. All rights reserved.\n// See https://github.c"
  },
  {
    "path": "scripts/db.ts",
    "chars": 102761,
    "preview": "const db: string = `NobwRALglhA2CmYBcZB52oCldCnuod0UwBowA7AQwDdlRIYFkxAAfUEXlQD7dBnRXyLIvGjkRUcB6noAs1diXJJKJALZ8wDQA3Og"
  },
  {
    "path": "scripts/loading.ts",
    "chars": 15152,
    "preview": "// Copyright @ 2018-present xiejia.he. All rights reserved.\n// See https://github.com/xjh22222228/nav\n\nconst loadingTemp"
  },
  {
    "path": "scripts/start.ts",
    "chars": 14569,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present x.iejiahe. All rights reserved.\n// See https://github.c"
  },
  {
    "path": "scripts/utils.ts",
    "chars": 18388,
    "preview": "// Copyright @ 2018-present xie.jiahe. All rights reserved.\n// See https://github.com/xjh22222228/nav\nimport dayjs from "
  },
  {
    "path": "src/api/index.ts",
    "chars": 11047,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/app/app.component.html",
    "chars": 379,
    "preview": "<div class=\"fetchIng flex-center\" *ngIf=\"fetchIng; else done\">\n  <nz-spin nzSimple [nzSize]=\"'large'\"></nz-spin>\n</div>\n"
  },
  {
    "path": "src/app/app.component.scss",
    "chars": 31,
    "preview": ".fetchIng {\n  height: 100vh;\n}\n"
  },
  {
    "path": "src/app/app.component.ts",
    "chars": 7853,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/app/app.config.ts",
    "chars": 2023,
    "preview": "import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'\nimport { registerLocaleData } from '@angul"
  },
  {
    "path": "src/app/app.routes.ts",
    "chars": 2873,
    "preview": "import { Routes } from '@angular/router'\nimport LightComponent from 'src/view/light/index.component'\nimport SuperCompone"
  },
  {
    "path": "src/assets/fonts/iconfont.css",
    "chars": 1158,
    "preview": "@font-face {\n  font-family: \"iconfont\"; /* Project id 2267418 */\n  src: url('iconfont.woff2?t=1743153395328') format('wo"
  },
  {
    "path": "src/assets/styles/dark.scss",
    "chars": 1915,
    "preview": "// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.com/xjh22222228/nav\n\n// <html>\n.dark-co"
  },
  {
    "path": "src/assets/styles/nprogress.css",
    "chars": 1399,
    "preview": "/* NProgress Make clicks pass-through */\n#nprogress {\n  pointer-events: none;\n}\n\n#nprogress .bar {\n  background: #29d;\n "
  },
  {
    "path": "src/assets/styles/tailwind.css",
    "chars": 23,
    "preview": "@import 'tailwindcss';\n"
  },
  {
    "path": "src/components/breadcrumb/index.component.html",
    "chars": 278,
    "preview": "<div\n  class=\"breadcrumb1 ellipsis\"\n  *ngIf=\"data.breadcrumb\"\n  (click)=\"handleClick($event)\"\n>\n  <span *ngFor=\"let text"
  },
  {
    "path": "src/components/breadcrumb/index.component.scss",
    "chars": 85,
    "preview": ".breadcrumb1 {\n  font-size: 12px;\n  color: #666;\n  .slash {\n    margin: 0 4px;\n  }\n}\n"
  },
  {
    "path": "src/components/breadcrumb/index.component.ts",
    "chars": 967,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/calendar/drawer/index.component.html",
    "chars": 1324,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/calendar/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/calendar/drawer/index.component.ts",
    "chars": 1604,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/calendar/index.component.html",
    "chars": 379,
    "preview": "<div class=\"calendar family citems\" [style.zoom]=\"component['zoom']\">\n  <div class=\"ctop\" [style.background]=\"data['topC"
  },
  {
    "path": "src/components/calendar/index.component.scss",
    "chars": 621,
    "preview": ".calendar {\n  width: 130px;\n  height: var(--componentHeight);\n  max-height: 100%;\n  border-radius: 12px;\n  text-align: c"
  },
  {
    "path": "src/components/calendar/index.component.ts",
    "chars": 924,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/card/index.component.html",
    "chars": 11980,
    "preview": "<div\n  class=\"card-container progrcode\"\n  *ngIf=\"isCode; else other\"\n  [innerHTML]=\"description | safeHtml\"\n  [ngStyle]="
  },
  {
    "path": "src/components/card/index.component.scss",
    "chars": 6061,
    "preview": "@media (hover: hover) and (pointer: fine) {\n  .example2,\n  .original2 {\n    &:hover {\n      border: 1px solid #78b7fa;\n "
  },
  {
    "path": "src/components/card/index.component.ts",
    "chars": 5060,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/carousel/drawer/index.component.html",
    "chars": 2368,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/carousel/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/carousel/drawer/index.component.ts",
    "chars": 2871,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/carousel/index.component.html",
    "chars": 195,
    "preview": "<div\n  class=\"ccarousel family citems\"\n  [ngStyle]=\"{ zoom: component['zoom'], width: data['width'] + 'px' }\"\n>\n  <app-s"
  },
  {
    "path": "src/components/carousel/index.component.scss",
    "chars": 222,
    "preview": ".ccarousel {\n  position: relative;\n  height: var(--componentHeight);\n  max-height: 100%;\n  border-radius: 12px;\n  overfl"
  },
  {
    "path": "src/components/carousel/index.component.ts",
    "chars": 718,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/class-tabs/index.component.html",
    "chars": 310,
    "preview": "<div *ngIf=\"data && data.length > 1\" class=\"class-tabs dark-bg-gary2\" #parent>\n  <div #anchor class=\"anchor\"></div>\n  <d"
  },
  {
    "path": "src/components/class-tabs/index.component.scss",
    "chars": 870,
    "preview": ".class-tabs {\n  --height: 28px;\n  position: relative;\n  padding: 4px;\n  border-radius: 8px;\n  background-color: #ededee;"
  },
  {
    "path": "src/components/class-tabs/index.component.ts",
    "chars": 4926,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/component-group/index.component.html",
    "chars": 1283,
    "preview": "<div\n  class=\"component-group justify-center md:justify-start\"\n  *ngIf=\"components.length > 0\"\n  [class.directionCol]=\"d"
  },
  {
    "path": "src/components/component-group/index.component.scss",
    "chars": 1549,
    "preview": "@keyframes zoomInDown {\n  from {\n    opacity: 0;\n  }\n\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes arrow {\n  0% {\n    tran"
  },
  {
    "path": "src/components/component-group/index.component.ts",
    "chars": 4772,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/countdown/drawer/index.component.html",
    "chars": 2771,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/countdown/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/countdown/drawer/index.component.ts",
    "chars": 2069,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/countdown/index.component.html",
    "chars": 533,
    "preview": "<div class=\"holiday family citems\" [style.zoom]=\"component['zoom']\">\n  <div class=\"top\" [style.background]=\"data['topCol"
  },
  {
    "path": "src/components/countdown/index.component.scss",
    "chars": 594,
    "preview": ".holiday {\n  position: relative;\n  width: 160px;\n  height: var(--componentHeight);\n  max-height: 100%;\n  border-radius: "
  },
  {
    "path": "src/components/countdown/index.component.ts",
    "chars": 1208,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/create-web/index.component.html",
    "chars": 8348,
    "preview": "<nz-modal\n  [nzWidth]=\"570\"\n  [(nzVisible)]=\"showModal\"\n  [nzTitle]=\"modalTitle\"\n  (nzOnCancel)=\"onClose()\"\n  [nzBodySty"
  },
  {
    "path": "src/components/create-web/index.component.scss",
    "chars": 131,
    "preview": ".row {\n  display: flex;\n  justify-content: space-around;\n}\n\n@media (max-width: 580px) {\n  ::ng-deep .ant-modal {\n    top"
  },
  {
    "path": "src/components/create-web/index.component.ts",
    "chars": 14130,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/delete-modal/index.component.html",
    "chars": 718,
    "preview": "<nz-modal\n  [(nzVisible)]=\"showModal\"\n  [nzTitle]=\"$t('_confirmDel')\"\n  (nzOnCancel)=\"handleCancel()\"\n  nzWidth=\"350px\"\n"
  },
  {
    "path": "src/components/delete-modal/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/delete-modal/index.component.ts",
    "chars": 2060,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/edit-class/index.component.html",
    "chars": 1557,
    "preview": "<nz-modal\n  [(nzVisible)]=\"showModal\"\n  [nzTitle]=\"isEdit ? $t('_edit') : $t('_add')\"\n  (nzOnCancel)=\"onCancel()\"\n  (nzO"
  },
  {
    "path": "src/components/edit-class/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/edit-class/index.component.ts",
    "chars": 3895,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/fixbar/index.component.html",
    "chars": 2936,
    "preview": "<div class=\"fixbar\" [class.openFixbar]=\"open\">\n  <div\n    class=\"common-show wrapper dark-bg dark-border-color dark-acti"
  },
  {
    "path": "src/components/fixbar/index.component.scss",
    "chars": 1431,
    "preview": "@media (min-width: 768px) {\n  .wrapper {\n    &:hover {\n      box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);\n      transform: s"
  },
  {
    "path": "src/components/fixbar/index.component.ts",
    "chars": 6094,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/footer/footer.component.html",
    "chars": 208,
    "preview": "<footer id=\"app-footer\" class=\"footer dark-text xie-jiahe\" [class]=\"className\">\n  <div\n    class=\"copyright dark-text\"\n "
  },
  {
    "path": "src/components/footer/footer.component.scss",
    "chars": 34,
    "preview": ".footer {\n  text-align: center;\n}\n"
  },
  {
    "path": "src/components/footer/footer.component.ts",
    "chars": 1398,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/footer/template.ts",
    "chars": 2866,
    "preview": "const t: Record<string, any> = {\n  footTemplate1: `\n<div class=\"bg-white py-8 px-4 mx-auto text-left dark-bg dark-border"
  },
  {
    "path": "src/components/holiday/drawer/index.component.html",
    "chars": 3170,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/holiday/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/holiday/drawer/index.component.ts",
    "chars": 4126,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/holiday/index.component.html",
    "chars": 1097,
    "preview": "<div\n  class=\"holiday family citems\"\n  *ngIf=\"items.length\"\n  [style.zoom]=\"component['zoom']\"\n>\n  <div class=\"left\" [cl"
  },
  {
    "path": "src/components/holiday/index.component.scss",
    "chars": 1619,
    "preview": ".holiday {\n  position: relative;\n  width: 320px;\n  height: var(--componentHeight);\n  max-height: 100%;\n  border-radius: "
  },
  {
    "path": "src/components/holiday/index.component.ts",
    "chars": 2264,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/html/drawer/index.component.html",
    "chars": 1483,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/html/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/html/drawer/index.component.ts",
    "chars": 1693,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/html/index.component.html",
    "chars": 195,
    "preview": "<div\n  class=\"html family citems\"\n  [style.zoom]=\"component['zoom']\"\n  [style.width]=\"data['width'] + 'px'\"\n  [style.bac"
  },
  {
    "path": "src/components/html/index.component.scss",
    "chars": 212,
    "preview": ".html {\n  position: relative;\n  height: var(--componentHeight) !important;\n  max-height: 100%;\n  border-radius: 12px;\n  "
  },
  {
    "path": "src/components/html/index.component.ts",
    "chars": 1277,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/icon-git/icon-git.component.html",
    "chars": 1730,
    "preview": "<a\n  [href]=\"gitRepoUrl\"\n  target=\"_blank\"\n  rel=\"noreferer noopener\"\n  class=\"github-link hidden md:block\"\n  *ngIf=\"git"
  },
  {
    "path": "src/components/icon-git/icon-git.component.scss",
    "chars": 163,
    "preview": "@media (max-width: 580px) {\n  .github-link {\n    display: none;\n  }\n}\n\n.github-link {\n  position: fixed;\n  top: -6px;\n  "
  },
  {
    "path": "src/components/icon-git/icon-git.component.ts",
    "chars": 722,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\nimport config from '../."
  },
  {
    "path": "src/components/image/drawer/index.component.html",
    "chars": 1478,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/image/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/image/drawer/index.component.ts",
    "chars": 1721,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/image/index.component.html",
    "chars": 283,
    "preview": "<div\n  class=\"cimage family citems\"\n  [style.backgroundImage]=\"data['url'] && 'url(' + data['url'] + ')'\"\n  [class.curso"
  },
  {
    "path": "src/components/image/index.component.scss",
    "chars": 383,
    "preview": ".cimage {\n  position: relative;\n  width: 170px;\n  height: var(--componentHeight);\n  max-height: 100%;\n  border-radius: 1"
  },
  {
    "path": "src/components/image/index.component.ts",
    "chars": 628,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/loading/index.component.html",
    "chars": 114,
    "preview": "<svg viewBox=\"25 25 50 50\" class=\"cc1\">\n  <circle cx=\"50\" cy=\"50\" r=\"20\" fill=\"none\" class=\"cc2\"></circle>\n</svg>\n"
  },
  {
    "path": "src/components/loading/index.component.scss",
    "chars": 362,
    "preview": ".cc1 {\n  z-index: 2;\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translate(-50%, -50%);\n  width: 15px;\n "
  },
  {
    "path": "src/components/loading/index.component.ts",
    "chars": 471,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/login/login.component.html",
    "chars": 871,
    "preview": "<nz-modal\n  [(nzVisible)]=\"visible\"\n  [nzTitle]=\"$t('_authLogin')\"\n  [nzOkLoading]=\"submitting\"\n  (nzOnCancel)=\"handleCa"
  },
  {
    "path": "src/components/login/login.component.scss",
    "chars": 72,
    "preview": ".prefix-icon {\n  width: 20px;\n  height: 20px;\n  pointer-events: none;\n}\n"
  },
  {
    "path": "src/components/login/login.component.ts",
    "chars": 3331,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/logo/logo.component.html",
    "chars": 1056,
    "preview": "<div\n  *ngIf=\"!src; else img\"\n  class=\"circle common-icon\"\n  [ngStyle]=\"{\n    width: size === 0 ? '' : size + 'px',\n    "
  },
  {
    "path": "src/components/logo/logo.component.scss",
    "chars": 631,
    "preview": ".icon {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n  pointer-events: none;\n  border-radius"
  },
  {
    "path": "src/components/logo/logo.component.ts",
    "chars": 1232,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/move-web/index.component.html",
    "chars": 1671,
    "preview": "<nz-modal\n  [nzWidth]=\"560\"\n  [(nzVisible)]=\"showModal\"\n  [nzTitle]=\"$t('_moveTo')\"\n  (nzOnCancel)=\"handleCancel()\"\n  (n"
  },
  {
    "path": "src/components/move-web/index.component.scss",
    "chars": 29,
    "preview": ".act {\n  margin-top: 30px;\n}\n"
  },
  {
    "path": "src/components/move-web/index.component.ts",
    "chars": 5934,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/news/drawer/index.component.html",
    "chars": 1452,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/news/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/news/drawer/index.component.ts",
    "chars": 2999,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/news/index.component.html",
    "chars": 1030,
    "preview": "<div\n  class=\"news citems family\"\n  [ngStyle]=\"{ zoom: component['zoom'], background: data['bgColor'] }\"\n>\n  <div\n    cl"
  },
  {
    "path": "src/components/news/index.component.scss",
    "chars": 1350,
    "preview": ".news {\n  position: relative;\n  width: 310px;\n  height: var(--componentHeight) !important;\n  max-height: 100%;\n  border-"
  },
  {
    "path": "src/components/news/index.component.ts",
    "chars": 3166,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/news/types.ts",
    "chars": 754,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/no-data/no-data.component.html",
    "chars": 217,
    "preview": "<div class=\"no-result dark-text\">\n  <nz-empty [nzNotFoundContent]=\"$t('_empty')\"></nz-empty>\n  <div class=\"back\">\n    <b"
  },
  {
    "path": "src/components/no-data/no-data.component.scss",
    "chars": 93,
    "preview": ".no-result {\n  padding: 80px 0;\n  text-align: center;\n\n  .back {\n    margin-top: 30px;\n  }\n}\n"
  },
  {
    "path": "src/components/no-data/no-data.component.ts",
    "chars": 633,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n\nimport { Component, Cha"
  },
  {
    "path": "src/components/off-work/drawer/index.component.html",
    "chars": 1539,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/off-work/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/off-work/drawer/index.component.ts",
    "chars": 1977,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/off-work/index.component.html",
    "chars": 555,
    "preview": "<div\n  class=\"offwork family citems\"\n  [class.rest]=\"isRest\"\n  [style.zoom]=\"component['zoom']\"\n>\n  <div class=\"title\">\n"
  },
  {
    "path": "src/components/off-work/index.component.scss",
    "chars": 721,
    "preview": ".offwork {\n  pointer-events: none;\n  position: relative;\n  width: 170px;\n  height: var(--componentHeight);\n  max-height:"
  },
  {
    "path": "src/components/off-work/index.component.ts",
    "chars": 2554,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/phone-class/index.component.html",
    "chars": 532,
    "preview": "<div\n  #parent\n  class=\"phone-nav dark-bg-gary md:!hidden\"\n  *ngIf=\"\n    commonService.navs()[commonService.oneIndex]?.n"
  },
  {
    "path": "src/components/phone-class/index.component.scss",
    "chars": 444,
    "preview": ".phone-nav {\n  display: flex;\n  align-items: center;\n  background-color: #e1e1e1;\n  border-radius: 50px;\n  padding: 4px;"
  },
  {
    "path": "src/components/phone-class/index.component.ts",
    "chars": 1207,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/runtime/drawer/index.component.html",
    "chars": 808,
    "preview": "<nz-drawer\n  [nzClosable]=\"false\"\n  [nzVisible]=\"visible\"\n  nzPlacement=\"right\"\n  [nzTitle]=\"$t('_edit')\"\n  (nzOnClose)="
  },
  {
    "path": "src/components/runtime/drawer/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/runtime/drawer/index.component.ts",
    "chars": 1488,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/runtime/index.component.html",
    "chars": 349,
    "preview": "<div class=\"runtime family citems\" [style.zoom]=\"component['zoom']\">\n  <div class=\"title\">{{ data['title'] }}</div>\n  <d"
  },
  {
    "path": "src/components/runtime/index.component.scss",
    "chars": 880,
    "preview": ".runtime {\n  pointer-events: none;\n  position: relative;\n  width: 230px;\n  height: var(--componentHeight);\n  max-height:"
  },
  {
    "path": "src/components/runtime/index.component.ts",
    "chars": 985,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/search/index.component.html",
    "chars": 3200,
    "preview": "<div\n  class=\"search-engine\"\n  *ngIf=\"searchEngineList && searchEngineList.length > 0\"\n>\n  <img\n    *ngIf=\"showLogo && l"
  },
  {
    "path": "src/components/search/index.component.scss",
    "chars": 1343,
    "preview": ".search-engine {\n  position: relative;\n  display: flex;\n  justify-content: center;\n  flex-direction: column;\n  align-ite"
  },
  {
    "path": "src/components/search/index.component.ts",
    "chars": 3466,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n\nimport { Component, Inp"
  },
  {
    "path": "src/components/search/types.ts",
    "chars": 142,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n\nexport enum SearchType {\n  All = 1,\n  Title,\n  Desc,\n  Url,\n  Current,\n  Quick,\n  "
  },
  {
    "path": "src/components/side-images/image/index.component.html",
    "chars": 198,
    "preview": "<div\n  class=\"w-full\"\n  *ngIf=\"isCode; else other\"\n  [innerHTML]=\"html | safeHtml\"\n  #root\n></div>\n<ng-template #other>\n"
  },
  {
    "path": "src/components/side-images/image/index.component.scss",
    "chars": 67,
    "preview": ".adsimg {\n  display: block;\n  width: 100%;\n  border-radius: 4px;\n}\n"
  },
  {
    "path": "src/components/side-images/image/index.component.ts",
    "chars": 1213,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/side-images/index.component.html",
    "chars": 246,
    "preview": "<div class=\"sideimg hidden-scrollbar\">\n  <div\n    class=\"aditem\"\n    *ngFor=\"let item of data\"\n    (click)=\"jumpService."
  },
  {
    "path": "src/components/side-images/index.component.scss",
    "chars": 310,
    "preview": ".sideimg {\n  max-width: 100%;\n  width: 230px;\n  max-height: calc(100vh - 50px);\n  overflow: hidden;\n  overflow-y: auto;\n"
  },
  {
    "path": "src/components/side-images/index.component.ts",
    "chars": 708,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/sidebar/index.component.html",
    "chars": 3291,
    "preview": "<nz-sider\n  class=\"sider-compnent\"\n  [class.showSidebar]=\"openSidebar\"\n  nzCollapsible\n  [(nzCollapsed)]=\"isCollapsed\"\n "
  },
  {
    "path": "src/components/sidebar/index.component.scss",
    "chars": 2381,
    "preview": "@media (max-width: 768px) {\n  .sider-compnent {\n    position: fixed !important;\n    top: 0 !important;\n    left: 0 !impo"
  },
  {
    "path": "src/components/sidebar/index.component.ts",
    "chars": 2639,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/swiper/index.component.html",
    "chars": 537,
    "preview": "<div\n  class=\"swiper\"\n  [ngStyle]=\"{ height: height <= 0 ? '' : height + 'px' }\"\n  *ngIf=\"images && images.length > 0\"\n>"
  },
  {
    "path": "src/components/swiper/index.component.scss",
    "chars": 162,
    "preview": ".swiper {\n  user-select: none;\n  overflow: hidden;\n  ::ng-deep {\n    .slick-slide,\n    .slick-track,\n    .slick-list {\n "
  },
  {
    "path": "src/components/swiper/index.component.ts",
    "chars": 1448,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/swiper/swiper-item/index.component.html",
    "chars": 288,
    "preview": "<div\n  class=\"w-full\"\n  *ngIf=\"isCode; else other\"\n  [innerHTML]=\"html | safeHtml\"\n  #root\n></div>\n<ng-template #other>\n"
  },
  {
    "path": "src/components/swiper/swiper-item/index.component.scss",
    "chars": 26,
    "preview": ".bgimg {\n  width: 100%;\n}\n"
  },
  {
    "path": "src/components/swiper/swiper-item/index.component.ts",
    "chars": 1276,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/tag-list/index.component.html",
    "chars": 1036,
    "preview": "<div class=\"tagbox\">\n  <div\n    class=\"tag-item\"\n    [class.cursor-pointer]=\"item.url\"\n    *ngFor=\"let item of data\"\n   "
  },
  {
    "path": "src/components/tag-list/index.component.scss",
    "chars": 306,
    "preview": ".tagbox {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 6px;\n}\n.tag-item {\n  padding: 0 6px;\n  border-radius: 2px;\n  font-s"
  },
  {
    "path": "src/components/tag-list/index.component.ts",
    "chars": 1552,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/toolbar-title/index.component.html",
    "chars": 1411,
    "preview": "<div\n  [id]=\"'t' + dataSource.id\"\n  class=\"title tool-title dark-primary dark-border-color\"\n  *ngIf=\"dataSource && dataS"
  },
  {
    "path": "src/components/toolbar-title/index.component.scss",
    "chars": 559,
    "preview": ".title {\n  position: relative;\n  font-size: 16px;\n  border-bottom: 1px solid rgba(0, 0, 0, 0.05);\n  padding: 10px 0;\n  p"
  },
  {
    "path": "src/components/toolbar-title/index.component.ts",
    "chars": 2004,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/upload-file/index.component.html",
    "chars": 331,
    "preview": "<label [id]=\"id\">\n  <i\n    *ngIf=\"!uploading\"\n    nz-icon\n    nzType=\"upload\"\n    nzTheme=\"outline\"\n    class=\"cursor-po"
  },
  {
    "path": "src/components/upload-file/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/upload-file/index.component.ts",
    "chars": 2025,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/upload-image/index.component.html",
    "chars": 353,
    "preview": "<label [id]=\"id\">\n  <i\n    *ngIf=\"!uploading\"\n    nz-icon\n    nzType=\"upload\"\n    nzTheme=\"outline\"\n    class=\"cursor-po"
  },
  {
    "path": "src/components/upload-image/index.component.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/components/upload-image/index.component.ts",
    "chars": 2386,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/web-list/index.component.html",
    "chars": 321,
    "preview": "<div\n  class=\"web-list\"\n  [class.overflowScroll]=\"overflow\"\n  *ngIf=\"dataList.length > 0\"\n>\n  <div class=\"wrapper gap-x-"
  },
  {
    "path": "src/components/web-list/index.component.scss",
    "chars": 347,
    "preview": "@media (max-width: 768px) {\n  .web-list {\n    &.overflowScroll .wrapper {\n      padding: 0;\n      flex-wrap: nowrap;\n   "
  },
  {
    "path": "src/components/web-list/index.component.ts",
    "chars": 3558,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/components/web-more-menu/index.component.html",
    "chars": 577,
    "preview": "<span\n  class=\"more-btn dark-white iconfont icongengduo\"\n  nz-dropdown\n  [nzDropdownMenu]=\"menu\"\n  nzPlacement=\"bottomRi"
  },
  {
    "path": "src/components/web-more-menu/index.component.scss",
    "chars": 246,
    "preview": ".over-item {\n  cursor: pointer;\n  margin: 0;\n  padding: 7px 16px;\n  text-align: center;\n  &.moreActive {\n    font-weight"
  },
  {
    "path": "src/components/web-more-menu/index.component.ts",
    "chars": 788,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/constants/index.ts",
    "chars": 903,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/constants/symbol.ts",
    "chars": 137,
    "preview": "export const CODE_SYMBOL = '!'\nexport const SELF_SYMBOL = '^'\nexport const ROUTER_SYMBOL = '@'\n\nexport const DEFAULT_SOR"
  },
  {
    "path": "src/environments/environment.prod.ts",
    "chars": 51,
    "preview": "export const environment = {\n  production: true,\n}\n"
  },
  {
    "path": "src/environments/environment.ts",
    "chars": 662,
    "preview": "// This file can be replaced during build by using the `fileReplacements` array.\n// `ng build --prod` replaces `environm"
  },
  {
    "path": "src/locale/english.ts",
    "chars": 12804,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/locale/index.ts",
    "chars": 806,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\nimport english from './english'\nimport zh_CN from './zh_CN'\nimport { STORAGE_KEY_MA"
  },
  {
    "path": "src/locale/zh_CN.ts",
    "chars": 8207,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/main.html",
    "chars": 2380,
    "preview": "<!doctype html>\n<!--\n                                                                          \n                        "
  },
  {
    "path": "src/main.ts",
    "chars": 243,
    "preview": "import { bootstrapApplication } from '@angular/platform-browser'\nimport { appConfig } from './app/app.config'\nimport { A"
  },
  {
    "path": "src/pipe/safeHtml.pipe.ts",
    "chars": 501,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/services/common.ts",
    "chars": 3042,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/services/jump.ts",
    "chars": 1048,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/store/index.ts",
    "chars": 1395,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/styles.scss",
    "chars": 6437,
    "preview": "// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.com/xjh22222228/nav\n@use './assets/styl"
  },
  {
    "path": "src/types/index.ts",
    "chars": 5656,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/types/type.d.ts",
    "chars": 389,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/utils/bookmark.ts",
    "chars": 7086,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xie.jiahe. All rights reserved.\n// See https://github.c"
  },
  {
    "path": "src/utils/http.ts",
    "chars": 3986,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/utils/index.ts",
    "chars": 14457,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  },
  {
    "path": "src/utils/mitt.ts",
    "chars": 185,
    "preview": "// 开源项目,未经作者同意,不得以抄袭/复制代码/修改源代码版权信息。\n// Copyright @ 2018-present xiejiahe. All rights reserved.\n// See https://github.co"
  }
]

// ... and 64 more files (download for full content)

About this extraction

This page contains the full source code of the xjh22222228/nav GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 264 files (707.6 KB), approximately 245.7k tokens, and a symbol index with 646 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!