Skip to content

Commit

Permalink
Merge pull request #1204 from Nesma775/update-component-library-docs
Browse files Browse the repository at this point in the history
Update Component Library documentation
  • Loading branch information
sarjona authored Dec 18, 2024
2 parents f4063e0 + 11a1a3c commit 267d6a0
Showing 1 changed file with 26 additions and 27 deletions.
53 changes: 26 additions & 27 deletions general/development/tools/component-library.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Component library
title: Component Library
tags:
- Coding_guidelines
- Core_development
Expand All @@ -12,49 +12,48 @@ tags:
- Usability
---

The Component Library is a developer tool provided to help identify frequently-used user interface components, and encourage their re-use.
The Component Library is a tool designed for developers to identify frequently used user interface (UI) components and encourage their reuse within Moodle. It includes both components from `Twitter Bootstrap` and Moodle itself. The library provides an organized display of these components, showcasing them with your current Moodle theme.

It includes components from both Twitter Bootstrap, and from Moodle, and it displays these features using your current Moodle theme.
This tool aims to assist developers working on Moodle themes, core features, and extensions by providing easy access to the UI components, which ultimately helps in creating more efficient and consistent user interfaces.

This should help you to work on your theme features, bringing together most of Moodle into one convenient location.
## Who should use the Component Library?

The library is a tool for visual designers, front-end developers, UX developers and anybody creating core Moodle code or Moodle extensions. Its use will allow you to create user interfaces more efficiently.
The Component Library is useful for:

- Visual designers
- Front-end developers
- UX developers
- Anyone working on core Moodle code or creating Moodle extensions.

## Getting started

### Where is the Component Library?

The library is built right into Moodle, but is only shown to developers. You can find it in your site by navigating to Site administration -> Development -> UI Component library.
The library is built into Moodle but is only visible to developers. To access it, navigate to:

If you cannot see "UI Component library" then you will need to build it first - see below.
- **Site administration → Development → UI Component library**

You can also browse the Component Library online http://componentlibrary.moodle.com/admin/tool/componentlibrary/docspage.php/library/getting-started/
If you can't see "**UI Component library**," you'll need to build it first (instructions below). You can also access the online version of the library at [Component Library online](http://componentlibrary.moodle.com/admin/tool/componentlibrary/docspage.php/library/getting-started/).

### Building the Component Library

The Component Library is written using the same Hugo tooling that the Twitter Bootstrap framework uses. It also includes the Bootstrap libraries for the version of Bootstrap used in Moodle.

The library is built from your console, and you will need to install the same NodeJS dependencies that we use for many of our other development features.

See our [Grunt](./nodejs.md#grunt) documentation for information on how to install these dependencies.

Once you have installed the NodeJS dependencies you can then use the [grunt](http://gruntjs.com/) tooling to build the library.:

```console title="Building the component library"
grunt componentlibrary
```
`Hugo` tooling is used to create the Component Library, as is the `Twitter Bootstrap` framework. It includes the necessary `Bootstrap` libraries that correspond to the version used by Moodle.

Simples! What could be easier!?
To build the Component Library, follow these steps:

### What should be documented
1. **Install NodeJS dependencies** (refer to the [Grunt documentation](./nodejs.md#grunt) for installation instructions).
2. Once the dependencies are installed, run the following command in your console:

The main aim of this library is to improve consistency of the user interface to provide a better user (and developer) experience by re-using components across Moodle.
```bash
grunt componentlibrary
```

Whenever a new Moodle feature is created or updated, the building blocks for the UI of the feature should be documented in this library.
This will build the Component Library.

The initial aim is to document any new UI feature which:
## What should be documented?

- is made available in the `core` component, or any core subsystem
- is made available for re-use in a plugin which offers sub-plugins
The main goal of the Component Library is to enhance UI consistency across Moodle. New UI components should be documented within the library whenever:

The documentation of other features will also be welcomed.
- A new Moodle feature is created or updated, especially when it involves UI elements.
- A UI component becomes available for reuse in a plugin that offers sub-plugins.
- Documentation for other UI features will also be welcomed, ensuring that the library grows and helps developers in their work.

0 comments on commit 267d6a0

Please sign in to comment.