Highlight parent menu item when submenu is open (#11659)
Initial plan
fix: highlight parent menu item when sub-menu is open
Co-authored-by: tommoor 380914+tommoor@users.noreply.github.com
Co-authored-by: copilot-swe-agent[bot] 198982749+Copilot@users.noreply.github.com Co-authored-by: tommoor 380914+tommoor@users.noreply.github.com
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
A fast, collaborative, knowledge base for your team built using React and Node.js.
Try out Outline using our hosted version at www.getoutline.com.
This is the source code that runs Outline and all the associated services. If you want to use Outline then you don’t need to run this code, A hosted version of the app is offered at getoutline.com. You can also find documentation on using Outline in our guide.
If you’d like to run your own copy of Outline or contribute to development then this is the place for you.
Installation
Please see the documentation for running your own copy of Outline in a production configuration.
If you have questions or improvements for the docs please create a thread in GitHub discussions.
Development
There is a short guide for setting up a development environment if you wish to contribute changes, fixes, and improvements to Outline.
Contributing
Outline is built and maintained by a small team – we’d love your help to fix bugs and add features!
Before submitting a pull request please discuss with the core team by creating or commenting in an issue on GitHub – we’d also love to hear from you in the discussions. This way we can ensure that an approach is agreed on before code is written. This will result in a much higher likelihood of your code being accepted.
If you’re looking for ways to get started, here’s a list of ways to help us improve Outline:
good first issuelabelArchitecture
If you’re interested in contributing or learning more about the Outline codebase please refer to the architecture document first for a high level overview of how the application is put together.
Debugging
In development Outline outputs simple logging to the console, prefixed by categories. In production it outputs JSON logs, these can be easily parsed by your preferred log ingestion pipeline.
HTTP logging is disabled by default, but can be enabled by setting the
DEBUG=httpenvironment variable. logging can be enabled for all categories by settingDEBUG=*or for specific categories such asDEBUG=databaseandLOG_LEVEL=debug, orLOG_LEVEL=sillyfor very verbose logging.Tests
We aim to have sufficient test coverage for critical parts of the application and aren’t aiming for 100% unit test coverage. All API endpoints and anything authentication related should be thoroughly tested.
To add new tests, write your tests with Jest and add a file with
.test.tsextension next to the tested code.Once the test database is created with
make testyou may individually run frontend and backend tests directly with jest:Migrations
Sequelize is used to create and run migrations, for example:
Or, to run migrations on test database:
Activity
License
Outline is BSL 1.1 licensed.