Bläddra i källkod

Added Documentation for React-bootstrap

dohsimpson 4 år sedan
förälder
incheckning
6f1a9aab21

+ 17 - 0
lib/docs/filters/react_bootstrap/clean_html.rb

@@ -0,0 +1,17 @@
+module Docs
+  class ReactBootstrap
+    class CleanHtmlFilter < Filter
+      def call
+        css('.flex-column.d-flex').remove
+        css('header').remove
+        css('.bs-example').remove
+        css('.position-relative').each do |node|
+          code = node.at_css('textarea')
+          code.name = 'pre'
+          code['style'] = code['style'] + '; border: solid 1px;'
+        end
+        doc
+      end
+    end
+  end
+end

+ 23 - 0
lib/docs/filters/react_bootstrap/entries.rb

@@ -0,0 +1,23 @@
+module Docs
+  class ReactBootstrap
+    class EntriesFilter < Docs::EntriesFilter
+      def get_name
+        name = at_css('#rb-docs-content h1, #rb-docs-content h2').content
+        if name.end_with? '#'
+          name = name[0..-2]
+        end
+        name
+      end
+
+      def get_type
+        type = slug.split('/')[0..-2].join(': ')
+        if type == ''
+          type = slug.split('/').join('')
+        end
+        type.gsub!('-', ' ')
+        type.split.map(&:capitalize).join(' ')
+        type
+      end
+    end
+  end
+end

+ 34 - 0
lib/docs/scrapers/react_bootstrap.rb

@@ -0,0 +1,34 @@
+module Docs
+  class ReactBootstrap < UrlScraper
+    self.slug = 'react_bootstrap'
+    self.type = 'simple'
+    self.release = '1.5.0'
+    self.base_url = 'https://react-bootstrap.github.io/'
+
+    self.links = {
+      home: 'https://react-bootstrap.github.io',
+      code: 'https://github.com/react-bootstrap/react-bootstrap'
+    }
+
+    html_filters.push 'react_bootstrap/entries', 'react_bootstrap/clean_html'
+
+    options[:skip] = %w(
+      react-overlays/
+    )
+
+    options[:replace_paths] = {
+    }
+
+    options[:trailing_slash] = true
+
+    options[:attribution] = <<-HTML
+      &copy; 2014&ndash;present Stephen J. Collings, Matthew Honnibal, Pieter Vanderwerff<br>
+      Licensed under the MIT License (MIT).
+    HTML
+
+    def get_latest_version(opts)
+      doc = fetch_doc('https://react-bootstrap.github.io/', opts)
+      doc.at_css('#t-version>a').content.split()[0].strip[1..-1]
+    end
+  end
+end

BIN
public/icons/docs/react_bootstrap/16.png


BIN
public/icons/docs/react_bootstrap/16@2x.png


+ 1 - 0
public/icons/docs/react_bootstrap/SOURCE

@@ -0,0 +1 @@
+https://github.com/react-bootstrap/react-bootstrap/blob/master/www/static/logo.svg