organizing react proj
|
|
@ -1,7 +1,5 @@
|
|||
import * as React from "react";
|
||||
import { IListDto } from "./IListDto";
|
||||
import { ISoftwareDto } from "./ISoftwareDto";
|
||||
import { ILanguageDto } from "./ILanguageDto";
|
||||
import { IListDto, ISoftwareDto, ILanguageDto } from "./interfaces";
|
||||
import { Tagline, ListsTable, IColumnVisibility } from "./components";
|
||||
|
||||
const columnVisibilityDefaults = [
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
import * as React from "react";
|
||||
import "isomorphic-fetch";
|
||||
import { IListDto } from "./IListDto";
|
||||
import { ISoftwareDto } from "./ISoftwareDto";
|
||||
import { ILanguageDto } from "./ILanguageDto";
|
||||
import { IListDto, ISoftwareDto, ILanguageDto } from "./interfaces";
|
||||
import "../../utils/loader.css";
|
||||
import { Home } from "./Home";
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import { Languages } from "./Languages";
|
|||
import { License } from "./License";
|
||||
import { PublishedDate } from "./PublishedDate";
|
||||
import { RuleCount } from "./RuleCount";
|
||||
import { SoftwareIcon } from "../../listsTable/SoftwareIcon";
|
||||
import { SoftwareIcon } from "../../softwareIcon";
|
||||
import { Syntax } from "./Syntax";
|
||||
import { Tags } from "./Tags";
|
||||
import { UpdatedDate } from "./UpdatedDate";
|
||||
|
|
|
|||
|
|
@ -1,12 +1,10 @@
|
|||
import * as React from "react";
|
||||
import { IListDto } from "../../IListDto";
|
||||
import { ISoftwareDto } from "../../ISoftwareDto";
|
||||
import { ILanguageDto } from "../../ILanguageDto";
|
||||
import { IListDto, ISoftwareDto, ILanguageDto } from "../../interfaces";
|
||||
import ReactTable from "react-table"
|
||||
import "react-table/react-table.css"
|
||||
import "./listsTable.css";
|
||||
import * as moment from "moment";
|
||||
import { SoftwareIcon } from "./SoftwareIcon";
|
||||
import { SoftwareIcon } from "../softwareIcon";
|
||||
import { getContrast } from "../../../../utils/GetContrast";
|
||||
import { DetailsExpander } from "../../components";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
import * as React from "react";
|
||||
import img1 from "../../../../imgs/software/01-uBlock-Origin.svg";
|
||||
import img2 from "../../../../imgs/software/02-Adblock-Plus.svg";
|
||||
import img3 from "../../../../imgs/software/03-AdGuard.png";
|
||||
import img4 from "../../../../imgs/software/04-DNS66.png";
|
||||
import img5 from "../../../../imgs/software/05-Nano-Adblocker.png";
|
||||
import img6 from "../../../../imgs/software/06-AdBlock.png";
|
||||
import img7 from "../../../../imgs/software/07-AdAway.png";
|
||||
import img8 from "../../../../imgs/software/08-Personal-Blocklist.png";
|
||||
import img10 from "../../../../imgs/software/10-Redirector.png";
|
||||
import img13 from "../../../../imgs/software/13-MinerBlock.svg";
|
||||
import img14 from "../../../../imgs/software/14-Pi-hole.png";
|
||||
import img15 from "../../../../imgs/software/15-uBlock.svg";
|
||||
import img16 from "../../../../imgs/software/16-Internet-Explorer-TPL.png";
|
||||
import img18 from "../../../../imgs/software/18-FireHOL.png";
|
||||
import img1 from "./imgs/01-uBlock-Origin.svg";
|
||||
import img2 from "./imgs/02-Adblock-Plus.svg";
|
||||
import img3 from "./imgs/03-AdGuard.png";
|
||||
import img4 from "./imgs/04-DNS66.png";
|
||||
import img5 from "./imgs/05-Nano-Adblocker.png";
|
||||
import img6 from "./imgs/06-AdBlock.png";
|
||||
import img7 from "./imgs/07-AdAway.png";
|
||||
import img8 from "./imgs/08-Personal-Blocklist.png";
|
||||
import img10 from "./imgs/10-Redirector.png";
|
||||
import img13 from "./imgs/13-MinerBlock.svg";
|
||||
import img14 from "./imgs/14-Pi-hole.png";
|
||||
import img15 from "./imgs/15-uBlock.svg";
|
||||
import img16 from "./imgs/16-Internet-Explorer-TPL.png";
|
||||
import img18 from "./imgs/18-FireHOL.png";
|
||||
|
||||
interface IProps {
|
||||
id: number;
|
||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 893 B After Width: | Height: | Size: 893 B |
|
Before Width: | Height: | Size: 851 B After Width: | Height: | Size: 851 B |
|
Before Width: | Height: | Size: 711 B After Width: | Height: | Size: 711 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 658 B After Width: | Height: | Size: 658 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 654 B After Width: | Height: | Size: 654 B |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 972 B After Width: | Height: | Size: 972 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 886 B After Width: | Height: | Size: 886 B |
|
|
@ -0,0 +1,5 @@
|
|||
import { SoftwareIcon } from "./SoftwareIcon";
|
||||
|
||||
export {
|
||||
SoftwareIcon
|
||||
};
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
import { ILanguageDto } from "./ILanguageDto";
|
||||
import { IListDto } from "./IListDto";
|
||||
import { ISoftwareDto } from "./ISoftwareDto";
|
||||
|
||||
export {
|
||||
ILanguageDto,
|
||||
IListDto,
|
||||
ISoftwareDto
|
||||
};
|
||||