js_dependency 0.3.9 → 0.3.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6ac19bdd54aa746f7e5f40bb7cf8c92660eb8384c074347734f8e484d60d878
4
- data.tar.gz: a5f4a090fec3d3a4af1c8a8b5747efc830f8f92c4f29dce852e91348c0d867c6
3
+ metadata.gz: 8a4e8c31528eb944e9acf98aaf37710cffb27728f6e5c9b7337f85dcf5a3ca13
4
+ data.tar.gz: fb428fe8a8eca603ebef72f19771d8b8d94235d782ccb301e2de7bb11da0a004
5
5
  SHA512:
6
- metadata.gz: '0902a104039ef853937b3d1739ec0f1fe249d17f7428d23457124e66b16003a8f7a3136ceefb14a6f3122c99bfcbeeeec0f77d589066f6e0956d95e11b36b963'
7
- data.tar.gz: 746f673194445bf43f180a2ec650bd2530795e9966e8cc6a35f5bb55d37ff8688187ceaff41475117bd166d6a788624a3bbb63555b52901231a5d46dace1f4dd
6
+ metadata.gz: 7531ac4e27d5ec92a7efeea5e13051baed6471d7b059c622bd2aa21885a9d09bfcf9767c99bc59812adf1de6b333e60374518a888a7f3ef704d64a0d827ac812
7
+ data.tar.gz: 818a5e4210088a3f3d240a18d437909842c46619636e0c38cac1ffd3444659812e2b3a13dfe10b98f39bc4561fb8f52594696374159215f8d4bd29214f436cd1
@@ -1,5 +1,8 @@
1
1
  src_path: ./src
2
2
  target_path: ./src/App.vue
3
+ target_paths:
4
+ - ./src/App1.vue
5
+ - ./src/App2.vue
3
6
  child_analyze_level: 2
4
7
  parent_analyze_level: 2
5
8
  name_level: 1
data/.rubocop_todo.yml CHANGED
@@ -1,22 +1,27 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2022-08-11 15:14:43 UTC using RuboCop version 1.34.1.
3
+ # on 2022-08-13 15:05:03 UTC using RuboCop version 1.35.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 3
9
+ # Offense count: 2
10
+ Lint/UselessAssignment:
11
+ Exclude:
12
+ - 'spec/js_dependency_spec.rb'
13
+
14
+ # Offense count: 2
10
15
  # Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, CountRepeatedAttributes.
11
16
  Metrics/AbcSize:
12
- Max: 33
17
+ Max: 29
13
18
 
14
- # Offense count: 3
19
+ # Offense count: 2
15
20
  # Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods.
16
21
  Metrics/CyclomaticComplexity:
17
- Max: 19
22
+ Max: 15
18
23
 
19
- # Offense count: 8
24
+ # Offense count: 7
20
25
  # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
21
26
  Metrics/MethodLength:
22
27
  Max: 19
@@ -26,19 +31,14 @@ Metrics/MethodLength:
26
31
  Metrics/ParameterLists:
27
32
  Max: 9
28
33
 
29
- # Offense count: 3
34
+ # Offense count: 2
30
35
  # Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods.
31
36
  Metrics/PerceivedComplexity:
32
- Max: 20
33
-
34
- # Offense count: 1
35
- Style/MultilineBlockChain:
36
- Exclude:
37
- - 'lib/js_dependency/mermaid/root.rb'
37
+ Max: 15
38
38
 
39
- # Offense count: 8
39
+ # Offense count: 18
40
40
  # This cop supports safe autocorrection (--autocorrect).
41
41
  # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
42
42
  # URISchemes: http, https
43
43
  Layout/LineLength:
44
- Max: 183
44
+ Max: 187
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.12] - 2022-08-14
4
+
5
+ - Add rspec test.
6
+ - Fix script tag contents extraction if script tag has `src` like `<script src="">` .
7
+
8
+ ## [0.3.11] - 2022-08-13
9
+
10
+ - Add target_paths options in configuration file to use array.
11
+
12
+ ## [0.3.10] - 2022-08-13
13
+
14
+ - Add file_config options to specify configuration yaml which user like.
15
+
3
16
  ## [0.3.9] - 2022-08-12
4
17
 
5
18
  - Add alias_paths options of hash.
data/Gemfile CHANGED
@@ -10,6 +10,7 @@ gem "rake", "~> 13.0"
10
10
  gem "rspec", "~> 3.0"
11
11
 
12
12
  gem "codecov", require: false, group: "test"
13
+ gem "debug", ">= 1.0.0"
13
14
  gem "rubocop", "~> 1.21"
14
15
  gem "simplecov", require: false, group: :test
15
16
  gem "yarn"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- js_dependency (0.3.9)
4
+ js_dependency (0.3.12)
5
5
  pathname
6
6
  thor
7
7
  yaml
@@ -14,8 +14,14 @@ GEM
14
14
  codecov (0.6.0)
15
15
  simplecov (>= 0.15, < 0.22)
16
16
  coderay (1.1.3)
17
+ debug (1.5.0)
18
+ irb (>= 1.3.6)
19
+ reline (>= 0.2.7)
17
20
  diff-lcs (1.5.0)
18
21
  docile (1.4.0)
22
+ io-console (0.5.11)
23
+ irb (1.4.1)
24
+ reline (>= 0.3.0)
19
25
  json (2.6.2)
20
26
  parallel (1.22.1)
21
27
  parser (3.1.2.1)
@@ -30,6 +36,8 @@ GEM
30
36
  rainbow (3.1.1)
31
37
  rake (13.0.6)
32
38
  regexp_parser (2.5.0)
39
+ reline (0.3.1)
40
+ io-console (~> 0.5)
33
41
  rexml (3.2.5)
34
42
  rspec (3.11.0)
35
43
  rspec-core (~> 3.11.0)
@@ -94,6 +102,7 @@ PLATFORMS
94
102
 
95
103
  DEPENDENCIES
96
104
  codecov
105
+ debug (>= 1.0.0)
97
106
  js_dependency!
98
107
  rake (~> 13.0)
99
108
  rspec (~> 3.0)
data/README.md CHANGED
@@ -35,6 +35,9 @@ Configuration file is `./.js_dependency.yml`. This file includes parameters for
35
35
  ```yaml
36
36
  src_path: ./src # Root folder
37
37
  target_path: ./src/App.vue # Target file tha you want to analyze
38
+ target_paths: # Target files tha you want to analyze
39
+ - ./src/App1.vue
40
+ - ./src/App2.vue
38
41
  child_analyze_level: 2 # Output level of child analyze
39
42
  parent_analyze_level: 2 # Output level of parent analyze
40
43
  name_level: 1 # Output name level
@@ -46,6 +49,12 @@ excludes: # Exclude words that you want to skip from export.
46
49
  - excludeWord2
47
50
  ```
48
51
 
52
+ If you want to specify .js_dependency.yml as another path, you can add option path by `-f` option.
53
+
54
+ ```shell
55
+ js_dependency -f path/to/yourfilename.yml
56
+ ```
57
+
49
58
  Each parameter is overridden by the command line.
50
59
 
51
60
  ```
@@ -16,9 +16,10 @@ module JsDependency
16
16
  method_option :name_level, type: :numeric, aliases: "-n", desc: "Output name level"
17
17
  method_option :excludes, type: :array, aliases: "-e", desc: "Exclude the word that is included in the path"
18
18
  method_option :alias_paths, type: :hash, aliases: "-a", desc: "Alias paths by hash format."
19
+ method_option :file_config, type: :string, aliases: "-f", desc: "Configuration file path."
19
20
 
20
21
  def export_mermaid
21
- args = JsDependency::CliUtils::Yaml.new.args
22
+ args = JsDependency::CliUtils::Yaml.new(path: options[:file_config]).args
22
23
  config = JsDependency::CliUtils::Config.new(options, args)
23
24
  puts JsDependency.export_mermaid(
24
25
  config.src_path,
@@ -39,9 +40,10 @@ module JsDependency
39
40
  method_option :parent_analyze_level, type: :numeric, aliases: "-p", desc: "Output level of parent dependency"
40
41
  method_option :excludes, type: :array, aliases: "-e", desc: "Exclude the word that is included in the path"
41
42
  method_option :alias_paths, type: :hash, aliases: "-a", desc: "Alias paths by hash format."
43
+ method_option :file_config, type: :string, aliases: "-f", desc: "Configuration file path."
42
44
 
43
45
  def parents
44
- args = JsDependency::CliUtils::Yaml.new.args
46
+ args = JsDependency::CliUtils::Yaml.new(path: options[:file_config]).args
45
47
  config = JsDependency::CliUtils::Config.new(options, args)
46
48
  puts JsDependency.parents(
47
49
  config.src_path,
@@ -60,9 +62,10 @@ module JsDependency
60
62
  method_option :child_analyze_level, type: :numeric, aliases: "-c", desc: "Output level of child dependency"
61
63
  method_option :excludes, type: :array, aliases: "-e", desc: "Exclude the word that is included in the path"
62
64
  method_option :alias_paths, type: :hash, aliases: "-a", desc: "Alias paths by hash format."
65
+ method_option :file_config, type: :string, aliases: "-f", desc: "Configuration file path."
63
66
 
64
67
  def children
65
- args = JsDependency::CliUtils::Yaml.new.args
68
+ args = JsDependency::CliUtils::Yaml.new(path: options[:file_config]).args
66
69
  config = JsDependency::CliUtils::Config.new(options, args)
67
70
  puts JsDependency.children(
68
71
  config.src_path,
@@ -77,9 +80,10 @@ module JsDependency
77
80
  desc "orphan", "export components than is not depended by others"
78
81
  method_option :src_path, type: :string, aliases: "-s", desc: "Root folder."
79
82
  method_option :alias_paths, type: :hash, aliases: "-a", desc: "Alias paths by hash format."
83
+ method_option :file_config, type: :string, aliases: "-f", desc: "Configuration file path."
80
84
 
81
85
  def orphan
82
- args = JsDependency::CliUtils::Yaml.new.args
86
+ args = JsDependency::CliUtils::Yaml.new(path: options[:file_config]).args
83
87
  config = JsDependency::CliUtils::Config.new(options, args)
84
88
  puts JsDependency.orphan(
85
89
  config.src_path,
@@ -90,9 +94,10 @@ module JsDependency
90
94
  desc "leave", "export components than is not depended by others"
91
95
  method_option :src_path, type: :string, aliases: "-s", desc: "Root folder."
92
96
  method_option :alias_paths, type: :hash, aliases: "-a", desc: "Alias paths by hash format."
97
+ method_option :file_config, type: :string, aliases: "-f", desc: "Configuration file path."
93
98
 
94
99
  def leave
95
- args = JsDependency::CliUtils::Yaml.new.args
100
+ args = JsDependency::CliUtils::Yaml.new(path: options[:file_config]).args
96
101
  config = JsDependency::CliUtils::Config.new(options, args)
97
102
  puts JsDependency.leave(
98
103
  config.src_path,
@@ -10,18 +10,82 @@ module JsDependency
10
10
  # @param [Hash] args
11
11
  def initialize(options, args)
12
12
  @src_path = options[:src_path] || args[:src_path]
13
- @target_paths = options[:target_paths] || (args[:target_path].is_a?(String) ? [args[:target_path]] : args[:target_path])
14
- @target_path = options[:target_path] || args[:target_path]
13
+ @target_paths = calc_target_paths(options[:target_path], options[:target_paths], args[:target_path],
14
+ args[:target_paths])
15
+ @target_path = calc_target_path(options[:target_path], options[:target_paths], args[:target_path],
16
+ args[:target_paths])
15
17
  @child_analyze_level = options[:child_analyze_level] || args[:child_analyze_level] || 2
16
18
  @parent_analyze_level = options[:parent_analyze_level] || args[:parent_analyze_level] || 2
17
19
  @output_path = options[:output_path] || args[:output_path] || nil
18
20
  @alias_paths = options[:alias_paths] || args[:alias_paths] || {}
19
21
  @name_level = options[:name_level] || args[:name_level] || 1
20
- @excludes = if options[:excludes]&.length&.positive?
21
- options[:excludes]
22
- elsif args[:excludes]
23
- args[:excludes]
24
- end
22
+ @excludes = calc_excludes(options[:excludes], args[:excludes])
23
+ end
24
+
25
+ private
26
+
27
+ # @param [String, Array, nil] option_target_path
28
+ # @param [String, Array, nil] option_target_paths
29
+ # @param [String, Array, nil] args_target_path
30
+ # @param [String, Array, nil] args_target_paths
31
+ # @return [nil, Array]
32
+ def calc_target_paths(option_target_path, option_target_paths, args_target_path, args_target_paths)
33
+ [option_target_paths, option_target_path, args_target_paths, args_target_path].each do |obj|
34
+ return as_array(obj) if present?(obj)
35
+ end
36
+
37
+ nil
38
+ end
39
+
40
+ # @param [String, Array, nil] option_target_path
41
+ # @param [String, Array, nil] option_target_paths
42
+ # @param [String, Array, nil] args_target_path
43
+ # @param [String, Array, nil] args_target_paths
44
+ # @return [nil, String]
45
+ def calc_target_path(option_target_path, option_target_paths, args_target_path, args_target_paths)
46
+ [option_target_path, option_target_paths, args_target_path, args_target_paths].each do |obj|
47
+ return as_string_or_first(obj) if present?(obj)
48
+ end
49
+
50
+ nil
51
+ end
52
+
53
+ # @param [Object] option_excludes
54
+ # @param [Object] args_excludes
55
+ # @return [nil, Array]
56
+ def calc_excludes(option_excludes, args_excludes)
57
+ [option_excludes, args_excludes].each do |obj|
58
+ return as_array(obj) if present?(obj)
59
+ end
60
+
61
+ nil
62
+ end
63
+
64
+ # @param [Array, String, nil] obj
65
+ # @return [TrueClass, FalseClass]
66
+ def present?(obj)
67
+ return false if obj.nil?
68
+ return false if obj.empty?
69
+
70
+ true
71
+ end
72
+
73
+ # @param [Array, String, nil] obj
74
+ # @return [Array, nil]
75
+ def as_array(obj)
76
+ return nil if obj.nil?
77
+ return obj if obj.is_a?(Array)
78
+
79
+ [obj]
80
+ end
81
+
82
+ # @param [Array, String, nil] obj
83
+ # @return [String, nil]
84
+ def as_string_or_first(obj)
85
+ return nil if obj.nil?
86
+ return obj if obj.is_a?(String)
87
+
88
+ return obj.first if obj.is_a?(Array)
25
89
  end
26
90
  end
27
91
  end
@@ -3,22 +3,42 @@
3
3
  module JsDependency
4
4
  module CliUtils
5
5
  class Yaml
6
- attr_reader :args,
7
- :dir_path
6
+ attr_reader :dir_path,
7
+ :path
8
8
 
9
9
  # @param [String, nil] dir_path
10
- def initialize(dir_path: nil)
11
- @dir_path = dir_path || Dir.pwd
12
- pathname = config_pathname
13
- @args = if pathname.nil?
14
- {}
15
- else
16
- symbolize_keys(YAML.safe_load(pathname.read))
17
- end
10
+ # @param [String, nil] path
11
+ def initialize(dir_path: nil, path: nil)
12
+ @dir_path = present?(dir_path) ? dir_path : Dir.pwd
13
+ @path = path
14
+ end
15
+
16
+ # @return [Hash]
17
+ def args
18
+ pathname = if present?(@path)
19
+ Pathname.new(@path)
20
+ else
21
+ config_pathname
22
+ end
23
+
24
+ if pathname.nil?
25
+ {}
26
+ else
27
+ symbolize_keys(YAML.safe_load(pathname.read))
28
+ end
18
29
  end
19
30
 
20
31
  private
21
32
 
33
+ # @param [String] str
34
+ # @return [TrueClass, FalseClass]
35
+ def present?(str)
36
+ return false if str.nil?
37
+ return false if str.empty?
38
+
39
+ true
40
+ end
41
+
22
42
  # @return [Pathname, nil]
23
43
  def config_pathname
24
44
  dir_pathname = Pathname.new(@dir_path)
@@ -15,6 +15,10 @@ module JsDependency
15
15
  list << Regexp.last_match(1)
16
16
  end
17
17
 
18
+ scripts += str.gsub(%r{<script.+src=".+">(.+)</script>}m).with_object([]) do |_, list|
19
+ list << Regexp.last_match(1)
20
+ end
21
+
18
22
  scripts.uniq.sort.join("\n")
19
23
  end
20
24
 
@@ -26,10 +26,32 @@ module JsDependency
26
26
  mermaid_str(@child, level)
27
27
  end
28
28
 
29
+ # @param [String] src_path
30
+ # @return [JsDependency::Mermaid::NodesLink]
31
+ def relative_path_from(src_path)
32
+ NodesLink.new(
33
+ relative_parent_path(src_path),
34
+ relative_child_path(src_path)
35
+ )
36
+ end
37
+
29
38
  private
30
39
 
40
+ # @param [String] src_path
41
+ # @return [String]
42
+ def relative_parent_path(src_path)
43
+ parent.exist? ? parent.realpath.relative_path_from(Pathname.new(src_path).realpath.to_s).to_s : parent.to_s
44
+ end
45
+
46
+ # @param [String] src_path
47
+ # @return [String]
48
+ def relative_child_path(src_path)
49
+ child.exist? ? child.realpath.relative_path_from(Pathname.new(src_path).realpath.to_s).to_s : child.to_s
50
+ end
51
+
31
52
  # @param [Pathname] pathname
32
53
  # @param [Integer] level
54
+ # @return [String]
33
55
  def mermaid_str(pathname, level = 0)
34
56
  "#{parse(pathname).join("_")}[\"#{parse(pathname, level).join("/")}\"]"
35
57
  end
@@ -5,6 +5,7 @@ module JsDependency
5
5
  module Mermaid
6
6
  class Root
7
7
  attr_accessor :orientation
8
+ attr_reader :list
8
9
 
9
10
  # @param [String] orientation
10
11
  def initialize(orientation = "LR")
@@ -35,18 +36,14 @@ module JsDependency
35
36
  # @return [Array<String>]
36
37
  def export_nodes(name_level: 1, src_path: nil)
37
38
  nodes_links = if src_path
38
- src_pathname = Pathname.new(src_path).realpath
39
- @list.map do |nodes_link|
40
- NodesLink.new(nodes_link.parent.exist? ? nodes_link.parent.relative_path_from(src_pathname.to_s) : nodes_link.parent.to_s,
41
- nodes_link.child.exist? ? nodes_link.child.relative_path_from(src_pathname.to_s) : nodes_link.child.to_s)
42
- end
39
+ @list.map { |nodes_link| nodes_link.relative_path_from(src_path) }
43
40
  else
44
41
  @list
45
42
  end
46
- nodes_links.uniq do |link|
47
- "#{link.parent}__#{link.child}"
48
- end.sort_by { |link| "#{link.parent}__#{link.child}" }.map do |link|
49
- "#{link.parent_module_name(name_level)} --> #{link.child_module_name(name_level)}"
43
+ nodes_links = nodes_links.uniq { |nodes_link| "#{nodes_link.parent}__#{nodes_link.child}" }
44
+ nodes_links = nodes_links.sort_by { |nodes_link| "#{nodes_link.parent}__#{nodes_link.child}" }
45
+ nodes_links.map do |nodes_link|
46
+ "#{nodes_link.parent_module_name(name_level)} --> #{nodes_link.child_module_name(name_level)}"
50
47
  end
51
48
  end
52
49
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JsDependency
4
- VERSION = "0.3.9"
4
+ VERSION = "0.3.12"
5
5
  end
data/lib/js_dependency.rb CHANGED
@@ -71,7 +71,7 @@ module JsDependency
71
71
  nodes += mermaid_root.export_nodes(name_level: name_level, src_path: src_path)
72
72
  end
73
73
 
74
- output = (["flowchart LR"] + nodes.uniq + styles.uniq).join("\n")
74
+ output = "#{(["flowchart LR"] + nodes.uniq + styles.uniq).join("\n")}\n"
75
75
  output_pathname&.write(output)
76
76
  output
77
77
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: js_dependency
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.9
4
+ version: 0.3.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - junara
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-11 00:00:00.000000000 Z
11
+ date: 2022-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pathname