|
|
@@ -0,0 +1,35 @@
|
|
|
+module Docs
|
|
|
+ class Jest
|
|
|
+ class EntriesFilter < Docs::EntriesFilter
|
|
|
+ def get_name
|
|
|
+ at_css('.mainContainer h1').content
|
|
|
+ end
|
|
|
+
|
|
|
+ def get_type
|
|
|
+ type = at_css('.navItemActive').ancestors('.navGroup').first.at_css('h3').content
|
|
|
+
|
|
|
+ if type == 'Introduction'
|
|
|
+ 'Guides: Introduction'
|
|
|
+ elsif type == 'API Reference'
|
|
|
+ self.name
|
|
|
+ else
|
|
|
+ type
|
|
|
+ end
|
|
|
+ end
|
|
|
+
|
|
|
+ def additional_entries
|
|
|
+ return [] unless !root_page? && self.type == self.name # api page
|
|
|
+
|
|
|
+ at_css('.mainContainer ul').css('li > a').map do |node|
|
|
|
+ name = node.at_css('code').content.strip
|
|
|
+ name.sub! %r{\(.*\)}, '()'
|
|
|
+ name.remove! %r{[\s=<].*}
|
|
|
+ name.prepend 'jest ' if name.start_with?('--')
|
|
|
+ name.prepend 'Config: ' if slug == 'configuration'
|
|
|
+ id = node['href'].remove('#')
|
|
|
+ [name, id]
|
|
|
+ end
|
|
|
+ end
|
|
|
+ end
|
|
|
+ end
|
|
|
+end
|