debian-mirror-gitlab/doc/development/fe_guide/architecture.md

31 lines
1.3 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
stage: none
group: unassigned
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-29 00:20:46 +05:30
---
2017-08-17 22:00:37 +05:30
# Architecture
2021-03-11 19:13:27 +05:30
When developing a feature that requires architectural design, or changing the fundamental design of an existing feature, discuss it with a Frontend Architecture Expert.
2017-08-17 22:00:37 +05:30
A Frontend Architect is an expert who makes high-level Frontend design decisions
and decides on technical standards, including coding standards and frameworks.
2022-08-27 11:52:29 +05:30
Architectural decisions should be accessible to everyone, so document
2017-08-17 22:00:37 +05:30
them in the relevant Merge Request discussion or by updating our documentation
when appropriate.
2019-10-12 21:52:04 +05:30
You can find the Frontend Architecture experts on the [team page](https://about.gitlab.com/company/team/).
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
## Widget Architecture
2022-08-27 11:52:29 +05:30
The [Plan stage](https://about.gitlab.com/handbook/engineering/development/dev/plan-project-management/)
2021-04-17 20:07:23 +05:30
is refactoring the right sidebar to consist of **widgets**. They have a specific architecture to be
reusable and to expose an interface that can be used by external Vue applications on the page.
Learn more about the [widget architecture](widgets.md).
2017-08-17 22:00:37 +05:30
## Examples
2021-01-03 14:25:43 +05:30
You can find [documentation about the desired architecture](vue.md) for a new
feature built with Vue.js.