Available Functions and Documentation¶
This page provides an overview of all the available functions and their documentation in our project.
Contributors Plugin¶
display_contributors_info(repo_path)
¶
Generates a Dash layout component showing the contributors and their commit counts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repo_path
|
The file system path to the git repository. |
required |
Returns:
Type | Description |
---|---|
A Dash HTML component with the list of contributors or an error message. |
Source code in insight_git/plugins/contributors_info.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|
display_updated_contributors(updated_data)
¶
Updates the displayed list of contributors based on the updated data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
updated_data
|
The updated contributors' data from the updated-contributors-store. |
required |
Returns:
Type | Description |
---|---|
A list of Dash components representing the updated contributors. |
Source code in insight_git/plugins/contributors_info.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
extract_contributors(repo_path)
¶
Extracts the contributors and their commit counts from a git repository.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repo_path
|
The file system path to the git repository. |
required |
Returns:
Type | Description |
---|---|
A Counter object with contributors' names as keys and their commit counts as values. |
|
If an error occurs, returns a dict with an 'error' key and the error message. |
Source code in insight_git/plugins/contributors_info.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
|
update_contributors_data(n_clicks, initial_data, updated_data, original_name, unified_name)
¶
Updates the contributors' data by unifying names based on user input.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_clicks
|
Number of times the unify button has been clicked. |
required | |
initial_data
|
The initial data from the contributors-store. |
required | |
updated_data
|
The potentially updated data from the updated-contributors-store. |
required | |
original_name
|
The original name to be replaced. |
required | |
unified_name
|
The new name that replaces the original. |
required |
Returns:
Type | Description |
---|---|
The updated contributors' data. |
Source code in insight_git/plugins/contributors_info.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
|
Documents functions related to extracting and displaying contributor information from a Git repository.
Git Statistics¶
display_git_statistics(repo_path)
¶
Creates a Dash HTML component displaying general Git statistics for a repository including branch information.
This function uses the extract_git_stats
function to gather statistics about a repository's commit history and branches,
then constructs a Dash HTML component to visually present these statistics.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repo_path
|
str
|
The file system path to the local Git repository. |
required |
Returns:
Type | Description |
---|---|
dash.html.Div: A Dash HTML component containing the visual representation of the repository's general statistics. If an error occurs during statistics extraction, the component will display the error message. |
Source code in insight_git/plugins/git_statistics.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
|
extract_git_stats(repo_path)
¶
Extracts comprehensive Git statistics from a repository's commit history including branch details.
This function collects data on the number of commits, commit dates, total lines added and deleted across all commits, and computes the average lines changed per commit. It also provides dates for the first and last commit and detailed information on each branch.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repo_path
|
str
|
The file system path to the local Git repository. |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
A dictionary containing statistics about the repository including the total number of commits, a list of commit dates, the first and last commit date, total and average lines changed per commit, total branches, and details of each branch. If an error occurs, returns a dictionary with an 'error' key containing the error message. |
Source code in insight_git/plugins/git_statistics.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|
Details the functionalities for gathering and displaying various statistics from a Git repository.
Commit Graph¶
display_commit_graph(repo_path)
¶
Generates and displays a graph of commit activity over time for a Git repository using Dash and Plotly.
This function first extracts commit dates and then uses Pandas to organize these dates into a DataFrame for easy plotting with Plotly. The resulting graph shows the number of commits per day.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repo_path
|
str
|
The file system path to the local Git repository. |
required |
Returns:
Type | Description |
---|---|
dash.dcc.Graph: A Dash graph component that visually represents commit activity over time. |
|
If an error occurs in extracting commit dates, this function raises PreventUpdate to stop the Dash app from updating. |
Raises:
Type | Description |
---|---|
PreventUpdate
|
If there is an error in extracting commit dates, indicating that the graph cannot be displayed. |
Source code in insight_git/plugins/commit_graph.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
|
extract_commit_dates(repo_path)
¶
Extracts commit dates from a local Git repository to analyze commit activity over time.
This function iterates over all commits in the specified repository, collecting the datetime for each commit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repo_path
|
str
|
The file system path to the local Git repository. |
required |
Returns:
Name | Type | Description |
---|---|---|
list |
A list of datetime objects representing the commit dates. |
|
Returns a dictionary with an 'error' key if an exception occurs. |
Source code in insight_git/plugins/commit_graph.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
Describes how to generate and display graphical representations of commit histories.
Commit Type¶
categorize_commit_type(commit_message)
¶
Categorizes a commit message into predefined types such as Bug Fix, Feature, Documentation, or Other.
This function analyzes the commit message for keywords that indicate its type.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
commit_message
|
str
|
The commit message to categorize. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
The category of the commit based on its message. |
Source code in insight_git/plugins/commit_type.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
extract_commit_types(repo_path)
¶
Extracts and counts the types of commits in a local Git repository based on commit messages.
This function iterates over all commits in the specified repository, categorizing each commit according to predefined types (e.g., Bug Fix, Feature, Documentation) based on its message.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repo_path
|
str
|
The file system path to the local Git repository. |
required |
Returns:
Type | Description |
---|---|
collections.Counter: A Counter object mapping commit types to their frequencies. |
|
Returns a dictionary with an 'error' key if an exception occurs. |
Source code in insight_git/plugins/commit_type.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|
Explains the methods used to categorize and display commit types based on commit messages.