This repository was archived by the owner on Dec 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 953
Expand file tree
/
Copy pathlist_components
More file actions
executable file
·80 lines (71 loc) · 1.88 KB
/
list_components
File metadata and controls
executable file
·80 lines (71 loc) · 1.88 KB
1
2
3
4
5
6
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
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
#
# Copyright 2017-present the Material Components for iOS authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# List all component directories.
#
# If --public (-p) is specified, list public components.
# If --private (-P) is specified, list private components.
#
# If nothing is specified, act as if --public were specified.
readonly SCRIPTS_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
readonly ROOT_DIR="$SCRIPTS_DIR/.."
# Detect if the output is a terminal.
if [ -t 1 ]; then
terminal=0
else
terminal=1
fi
# Parse command-line arguments.
#
# Note that we're following the command-line exit status convention of zero
# to mean "success".
private=1
public=1
one_per_line=$terminal
for i in "$@"; do
case $i in
-P|--private)
private=0
shift
;;
-p|--public)
public=0
shift
;;
*)
echo "Unknown option $i, aborting."
exit -1
;;
esac
done
# If neither are set, list public components.
if [[ "$private" -eq 1 && "$public" -eq 1 ]]; then
public=0
fi
dirs=()
if [ "$public" -eq 0 ]; then
dirs[0]="$ROOT_DIR/components"
fi
if [ "$private" -eq 0 ]; then
dirs[1]="$ROOT_DIR/components/private"
fi
readonly COMPONENTS=$(find ${dirs[*]} -depth 1 -type d ! \( -regex '.*/private$' -or -regex '.*/docs$' \))
if [ $terminal -eq 0 ]; then
for i in $COMPONENTS; do
echo $i
done
else
echo $COMPONENTS
fi