Compare commits

..

25 Commits
v0.1 ... master

Author SHA1 Message Date
97793d58aa why do you hate me ? 2020-04-25 23:42:54 +02:00
c0c68f7565 fixed case sensitive filenames 2020-04-25 23:26:20 +02:00
47c5b1e6a4 fixed git tag in webpack with drone 2020-04-25 23:00:50 +02:00
d0092657d7 Merge pull request 'v0.3: Extension' (#3) from develop into master
Reviewed-on: #3
2020-04-25 20:38:56 +00:00
3fa751367c updatet drone for extension 2020-04-25 22:35:46 +02:00
381f03eb97 set current version in manifest 2020-04-25 22:35:27 +02:00
d9a0b2a75f updated README for extension 2020-04-25 21:17:38 +02:00
9d92db8aa0 added id to manifest 2020-04-25 21:17:26 +02:00
94a60e0f20 format fix 2020-04-25 21:01:38 +02:00
a38d016137 added ext run to vscode tasks 2020-04-25 21:01:17 +02:00
aa0bc66967 changed quick to use the bookmarks 2020-04-25 02:31:03 +02:00
ed98f821bb added bookmark functions 2020-04-25 02:09:44 +02:00
0e5a311028 added group for vscode tasks 2020-04-25 02:09:23 +02:00
c7c544d82d improved npm scripts 2020-04-25 02:09:04 +02:00
981c2f0832 added types for extrension api 2020-04-25 02:08:39 +02:00
d15b3ee22b added web-ext 2020-04-25 00:56:32 +02:00
d5d9291999 added update url to manifest 2020-04-25 00:55:51 +02:00
e34ef08be6 added manifest.json for extention support 2020-04-24 22:37:30 +02:00
bb86ffac8b added suggestion to search 2020-04-24 00:01:04 +02:00
a5d72902e1 added webpack watch 2020-04-24 00:00:45 +02:00
066780bfba Merge pull request 'v0.2' (#2) from develop into master
Reviewed-on: #2
2020-04-23 12:16:21 +00:00
ae289bf75b fixed typo in quick url 2020-04-23 14:09:37 +02:00
9191aee449 fixed missing link 2020-04-23 14:03:09 +02:00
9a84a04157 added serach component 2020-04-23 02:56:19 +02:00
0bd1400068 added README 2020-04-23 02:26:08 +02:00
23 changed files with 4581 additions and 48 deletions

View File

@ -7,8 +7,12 @@ steps:
commands:
- npm install
- npm run buildProd
- mkdir build
- tar -czvf build/bundle.tar.gz dist
- npm run ext:sign
environment:
WEB_EXT_API_KEY:
from_secret: WEB_EXT_API_KEY
WEB_EXT_API_SECRET:
from_secret: WEB_EXT_API_SECRET
- name: gitea_release
image: plugins/gitea-release
@ -17,7 +21,7 @@ steps:
from_secret: GITEA_API_KEY
base_url: https://git.kapelle.org
files:
- build/*
- web-ext-artifacts/*
checksum:
- md5
- sha1

View File

@ -18,5 +18,8 @@
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"VERSION": true
}
}

32
.vscode/tasks.json vendored
View File

@ -15,6 +15,20 @@
"group": "none",
"problemMatcher": []
},
{
"label": "watch",
"command": "npm",
"type": "shell",
"args": [
"run",
"watch"
],
"presentation": {
"reveal": "always"
},
"group": "none",
"problemMatcher": []
},
{
"label": "Build prod",
"command": "npm",
@ -26,7 +40,7 @@
"presentation": {
"reveal": "always"
},
"group": "none",
"group": "build",
"problemMatcher": []
},
{
@ -40,7 +54,21 @@
"presentation": {
"reveal": "always"
},
"group": "none",
"group": "build",
"problemMatcher": []
},
{
"label": "ext:run",
"command": "npm",
"type": "shell",
"args": [
"run",
"ext:run"
],
"presentation": {
"reveal": "always"
},
"group": "build",
"problemMatcher": []
}
]

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# How to install
1. Download the extension
2. Goto `about:addons`
3. Click on the top right button
4. Click `Install Add-on From File`
5. Select the Add-on
# How to build
1. Build the bundle with `npm run buildProd`
2. Provide the secrets required for signing the addon
3. Sign the Add-on by Mozilla with `npm run ext:sign`
# Usefull links
- [Mozilla Developer hub](https://addons.mozilla.org/en-US/developers/)
- [Mozilla Extension documentation](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions)
- [Web ext documentation](https://extensionworkshop.com/documentation/develop/web-ext-command-reference/)

4134
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,11 @@
"scripts": {
"devServer": "webpack-dev-server --mode development --open",
"build": "webpack --mode development",
"buildProd": "webpack --mode production"
"buildProd": "webpack --mode production",
"watch": "webpack --watch --mode development",
"ext:build": "web-ext build --source-dir dist --overwrite-dest",
"ext:sign": "web-ext sign --source-dir dist --channel unlisted",
"ext:run": "web-ext run --source-dir dist --no-reload"
},
"author": "",
"license": "ISC",
@ -16,6 +20,8 @@
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
@ -26,6 +32,8 @@
"sass-loader": "^8.0.2",
"ts-loader": "^7.0.0",
"typescript": "^3.8.3",
"web-ext": "^4.2.0",
"web-ext-types": "^3.2.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"

View File

@ -1,9 +1,8 @@
import * as React from "react";
import Quick from "./Quick";
import QuickItem from "./QuickItem";
import QuickCategory from "./QuickCategory";
import Clock from "./Clock";
import Search from "./Search";
class App extends React.Component {
constructor(props) {
@ -13,24 +12,9 @@ class App extends React.Component {
render(): JSX.Element {
return <div>
<div className="center-wrapper">
<Clock/>
<Quick>
<QuickCategory name="Productivity">
<QuickItem name="Nextcloud" url="#"/>
<QuickItem name="Git" url="#"/>
<QuickItem name="GitHub" url="https://github.com/"/>
</QuickCategory>
<QuickCategory name="Personal">
<QuickItem name="Youtube" url="https://youtube.com/"/>
<QuickItem name="Reddit" url="https://reddit.com/"/>
<QuickItem name="Netflix" url="https://netflix.com/"/>
</QuickCategory>
<QuickCategory name="Other">
<QuickItem name="Bitwarden" url="#"/>
</QuickCategory>
</Quick>
<Clock />
<Search />
<Quick />
</div>
</div>;
}

View File

@ -45,12 +45,12 @@ class Clock extends React.Component<{}, State> {
}
startTimer() {
this.interval = setInterval(()=>{
this.interval = setInterval(() => {
this.updateTime();
// This will change only if the tab stays open after midnight. But still, lets cover that
this.updateDate();
},1000);
}, 1000);
}
componentDidMount() {
@ -59,7 +59,7 @@ class Clock extends React.Component<{}, State> {
this.startTimer();
}
componentWillUnmount(){
componentWillUnmount() {
clearInterval(this.interval);
}

View File

@ -1,21 +1,43 @@
import * as React from "react";
import "../style/quick.scss";
import { Bookmarks } from "../types/Bookmarks";
import QuickCategory from "./QuickCategory";
import getBookmarks from "../functions/getBookmarks";
interface Props {
children: React.ReactNode;
interface State {
bookmarks: Bookmarks;
}
class Quick extends React.Component<Props> {
class Quick extends React.Component<{}, State> {
constructor(props){
constructor(props) {
super(props);
this.state = {
bookmarks: {
folder: [],
orphans: []
}
};
}
async getBookmarks(): Promise<void> {
const bookmarks = await getBookmarks();
this.setState({
bookmarks: bookmarks
});
}
componentDidMount() {
this.getBookmarks();
}
render(): JSX.Element {
return <div className="quick-component">
<div className="container">
{this.props.children}
{this.state.bookmarks.folder.map((e, i) => {
return <QuickCategory folder={e} key={i} />;
})}
</div>
</div>;
}

View File

@ -1,25 +1,28 @@
import * as React from "react";
import "../style/quickCategory.scss";
import { BookmarkFolder } from "../types/Bookmarks";
import QuickItem from "./QuickItem";
interface Props {
children: React.ReactNode;
name: string;
folder: BookmarkFolder;
}
class QuickCategory extends React.Component<Props> {
constructor(props){
constructor(props) {
super(props);
}
render(): JSX.Element {
return <div className="quickCategory-component">
<div className="title">
{this.props.name}
{this.props.folder.name}
</div>
<div className="children">
{this.props.children}
{this.props.folder.bookmarks.map((e, i) => {
return <QuickItem bookmark={e} key={i} />;
})}
</div>
</div>;
}

View File

@ -1,10 +1,10 @@
import * as React from "react";
import "../style/quickItem.scss";
import { Bookmark } from "../types/Bookmarks";
interface Props {
name: string;
url: string;
bookmark: Bookmark;
}
class QuickItem extends React.Component<Props> {
@ -14,12 +14,12 @@ class QuickItem extends React.Component<Props> {
}
onClick() {
window.location.href = this.props.url;
window.location.href = this.props.bookmark.url;
}
render(): JSX.Element {
return <div className="quickItem-component" onClick={() => this.onClick()}>
{this.props.name}
{this.props.bookmark.name}
</div>;
}

105
src/components/Search.tsx Normal file
View File

@ -0,0 +1,105 @@
import * as React from "react";
import "../style/search.scss";
import Sugestion from "./Sugestion";
import { Suggestion, SuggestionType } from "../types/Suggestion";
import getGoogleSuggestions from "../functions/getGoogleSuggestions";
interface State {
sugestions: Suggestion[];
}
class Search extends React.Component<{}, State> {
private searchInput = React.createRef<HTMLInputElement>()
constructor(props) {
super(props);
this.state = {
sugestions: []
};
}
handleQuery(query: string) {
this.search(query);
}
search(query: string) {
const url = new URL("https://duckduckgo.com/");
const param = new URLSearchParams();
param.append("q", query);
url.search = param.toString();
window.location.href = url.toString();
}
async sugest(input: string) {
if (input === "") {
this.setState({
sugestions: []
});
} else {
const results = await getGoogleSuggestions(input);
const newSuggestionState: Suggestion[] = results.suggestions.map((e) => {
return {
display: e,
type: SuggestionType.QUERY
};
});
this.setState({
sugestions: newSuggestionState
});
}
}
onKeyDown(event: React.KeyboardEvent<HTMLInputElement>) {
if (event.key === 'Enter') {
this.handleQuery(this.searchInput.current.value);
} else if (event.key === "ArrowDown") {
console.log("down");
} else if (event.key === "ArrowUp") {
console.log("up");
}
}
onChange() {
this.sugest(this.searchInput.current.value);
}
onSugestionClick(e: Suggestion) {
if (e.type === SuggestionType.QUERY) {
this.search(e.display);
} else {
window.location.href = e.url;
}
}
render(): JSX.Element {
return <div className="search-component" >
<input type="text"
autoFocus
onKeyDown={(e) => this.onKeyDown(e)}
onChange={() => this.onChange()}
ref={this.searchInput}
autoComplete="off"
/>
<div className="suggestion-area">
{this.state.sugestions.map((e) => {
return <Sugestion
key={e.display}
suggestion={e}
onClick={() => { this.onSugestionClick(e); }}
/>;
})}
</div>
</div>;
}
}
export default Search;

View File

@ -0,0 +1,17 @@
import * as React from "react";
import "../style/suggestion.scss";
import { Suggestion } from "../types/Suggestion";
interface Props {
suggestion: Suggestion;
onClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
}
const Sugestion = (props: Props) => {
return <div className="suggestion-component" onClick={props.onClick}>
{props.suggestion.display}
</div>;
};
export default Sugestion;

View File

@ -0,0 +1,43 @@
import { Bookmarks, Bookmark } from "../types/Bookmarks";
function createBookmark(from: browser.bookmarks.BookmarkTreeNode): Bookmark {
return {
name: from.title,
url: from.url
};
}
export default async (): Promise<Bookmarks> => {
const treeNode = await browser.bookmarks.getTree();
const root: Bookmarks = {
folder: [],
orphans: []
};
const rootNode = treeNode[0].children.find((e)=>e.id === "menu________");
// Set all top level bookmarks (without folder)
root.orphans = rootNode.children
.filter((e)=> e.type === "bookmark" )
.sort((a,b)=> a.index - b.index )
.map(createBookmark);
// Get all top level folders
root.folder = rootNode.children
.filter((e)=> e.type === "folder")
.filter((e)=> e.children.length > 0)
.sort((a,b)=> a.index - b.index )
.map((e)=>{
const children: Bookmark[] = e.children
.filter((e)=> e.type === "bookmark")
.sort((a,b)=> a.index - b.index )
.map(createBookmark);
return {
name: e.title,
bookmarks: children
};
});
return root;
};

View File

@ -0,0 +1,17 @@
import GoogleSuggestions from "../types/GoogleSuggestions";
export default async (query: string): Promise<GoogleSuggestions> => {
const url = new URL(" http://suggestqueries.google.com/complete/search");
const param = new URLSearchParams();
param.append("q", query);
param.append("client", "firefox"); // TODO check if the result are different on different clients
url.search = param.toString();
const response = await fetch(url.toString());
const results = await response.json();
return {
query: results[0],
suggestions: results[1]
};
};

25
src/manifest.json Normal file
View File

@ -0,0 +1,25 @@
{
"manifest_version": 2,
"name": "Startpage",
"version": "$VERSION",
"description": "Startpage",
"developer": {
"name": "Djeeberjr"
},
"chrome_url_overrides": {
"newtab": "startpage/index.html"
},
"chrome_settings_overrides": {
"homepage": "startpage/index.html"
},
"permissions": [
"<all_urls>",
"bookmarks"
],
"applications": {
"gecko": {
"update_url": "https://cocainum.srv.kapelle.org/api/service/staticRedirect/staticRedirect/startpageExtUpdate",
"id": "{9c6ffd7a-0e0b-4276-8208-aa72030477ce}"
}
}
}

19
src/style/search.scss Normal file
View File

@ -0,0 +1,19 @@
.search-component{
margin: 2em auto 2em auto;
width: 50%;
position: relative;
input[type=text]{
width: 100%;
border: none;
padding: 0.5em 1em;
box-sizing: border-box;
}
.suggestion-area{
position: absolute;
right: 0;
left: 0;
}
}

12
src/style/suggestion.scss Normal file
View File

@ -0,0 +1,12 @@
.suggestion-component{
padding: 0.2em 1em;
background-color: white;
color: black;
border: 1px solid #d4d4d4;
border-top: none;
cursor: pointer;
&:hover {
background-color: #d4d4d4;
}
}

16
src/types/Bookmarks.ts Normal file
View File

@ -0,0 +1,16 @@
interface Bookmarks {
folder: BookmarkFolder[];
orphans: Bookmark[];
}
interface BookmarkFolder {
name: string;
bookmarks: Bookmark[];
}
interface Bookmark {
name: string;
url: string;
}
export { Bookmarks, Bookmark, BookmarkFolder };

View File

@ -0,0 +1,31 @@
/*
Example if client == chrome:
[
"hello w",
["hello world","hello world anime","hello world java","hello world c","hello world python","hello world html","hello world mhw","hello welcome home"],
["","","","","","","",""],
[],
{
"google:clientdata":{"bpc":false,"tlw":false},
"google:suggestrelevance":[1250,1050,850,700,601,600,551,550],
"google:suggesttype":["QUERY","QUERY","QUERY","QUERY","QUERY","QUERY","QUERY","QUERY"],
"google:verbatimrelevance":851
}
]
Example if client == firefox:
[
"hello wo",
[
"hello world","hello world anime","hello world java","hello world c","hello world python","hello world html",
"hello world mhw","hello world anime stream","hello world programm","hello world anime ger sub"
]
]
*/
interface GoogleSuggestions {
query: string;
suggestions: string[];
}
export default GoogleSuggestions;

12
src/types/Suggestion.ts Normal file
View File

@ -0,0 +1,12 @@
enum SuggestionType {
QUICK,
QUERY
}
interface Suggestion {
display: string;
type: SuggestionType;
url?: string;
}
export { SuggestionType, Suggestion };

View File

@ -6,6 +6,7 @@
"sourceMap": true,
"noLib": false,
"jsx": "react",
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types"],
},
"exclude": [
"node_modules"

View File

@ -3,10 +3,24 @@
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const CaseSensitivePathsPlugin = require("case-sensitive-paths-webpack-plugin");
const Webpack = require("webpack");
const path = require("path");
const DEVELOPMENT = process.env.NODE_ENV === "development";
let version = process.env.DRONE_TAG;
if(!version){
version = require('child_process')
.execSync("git describe --abbrev=0")
.toString();
}
version = version.replace("v", "").trim();
module.exports = {
context: path.join(__dirname, "src"),
resolve: {
@ -14,7 +28,7 @@ module.exports = {
},
entry: ["./index.tsx"],
output: {
path: path.join(__dirname, "dist"),
path: path.join(__dirname, "dist/startpage"),
filename: "bundle.js"
},
devtool: DEVELOPMENT ? "source-map" : false,
@ -27,6 +41,9 @@ module.exports = {
liveReload: true,
watchContentBase: true
},
watchOptions: {
ignored: ['dist/**', 'node_modules/**']
},
module: {
rules: [
{
@ -58,6 +75,19 @@ module.exports = {
hash: true,
minify: !DEVELOPMENT
}),
new MiniCssExtractPlugin()
new MiniCssExtractPlugin(),
new CopyWebpackPlugin([
{
from: "manifest.json",
to: "..",
transform(content) {
return content.toString().replace("$VERSION", version);
}
}
]),
new Webpack.DefinePlugin({
VERSION: JSON.stringify(version),
}),
new CaseSensitivePathsPlugin()
]
};