Compare commits

..

4 Commits

59 changed files with 3340 additions and 12463 deletions

1
.nvmrc
View File

@ -1 +0,0 @@
lts/gallium

View File

@ -1,25 +1,21 @@
FROM golang:1.19 AS build FROM golang:1.13 AS build
ARG HTTP_PROXY= ARG HTTP_PROXY=
ARG HTTPS_PROXY= ARG HTTPS_PROXY=
ARG http_proxy= ARG http_proxy=
ARG https_proxy= ARG https_proxy=
ARG NODE_MAJOR=16
RUN apt-get update && apt-get install -y build-essential git bash curl ca-certificates gnupg RUN apt-get update && apt-get install -y build-essential git bash curl
RUN echo 'Package: nodejs\nPin: origin deb.nodesource.com\nPin-Priority: 600' > /etc/apt/preferences.d/nodesource \ RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
&& mkdir -p /etc/apt/keyrings \
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
&& apt-get update \
&& apt-get install -y nodejs && apt-get install -y nodejs
COPY . /src COPY . /src
WORKDIR /src WORKDIR /src
RUN make deps \ RUN ( cd client && npm install ) \
&& ( cd server && go mod vendor ) \
&& make ARCH_TARGETS=amd64 release && make ARCH_TARGETS=amd64 release
FROM busybox FROM busybox

View File

@ -4,7 +4,8 @@ watch:
modd modd
deps: deps:
cd client && npm ci cd client && npm install
cd server && go mod vendor
build: clean build-server build-client build: clean build-server build-client
@ -12,7 +13,7 @@ build-client:
cd client && npm run build cd client && npm run build
build-server: build-server:
cd server && CGO_ENABLED=0 go build -v -o bin/server ./cmd/server cd server && CGO_ENABLED=0 go build -mod=vendor -v -o bin/server ./cmd/server
clean: clean:
rm -rf client/dist server/bin release rm -rf client/dist server/bin release

View File

@ -9,7 +9,6 @@ Application de création collaborative destimations de temps/coût pour la r
- [Go >= 1.13](https://golang.org/) - [Go >= 1.13](https://golang.org/)
- [GNU Make](https://fr.wikipedia.org/wiki/GNU_Make) - [GNU Make](https://fr.wikipedia.org/wiki/GNU_Make)
- [NVM](https://github.com/nvm-sh/nvm)
- Git - Git
- NodeJS/NPM - NodeJS/NPM
@ -30,7 +29,6 @@ Application de création collaborative destimations de temps/coût pour la r
3. Générer une version de distribution 3. Générer une version de distribution
``` ```
nvm use
make deps make deps
make release make release
``` ```

14038
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -6,23 +6,21 @@
"dependencies": { "dependencies": {
"@types/bs58": "^4.0.1", "@types/bs58": "^4.0.1",
"@types/json-merge-patch": "0.0.4", "@types/json-merge-patch": "0.0.4",
"@types/react-router-dom": "^5.1.5",
"bs58": "^4.0.1", "bs58": "^4.0.1",
"bulma": "^0.9.4", "bulma": "^0.8.2",
"bulma-switch": "^2.0.0", "bulma-switch": "^2.0.0",
"json-merge-patch": "^0.2.3", "json-merge-patch": "^0.2.3",
"react": "^16.13.1", "local-storage-fallback": "^4.1.1",
"react-dom": "^16.13.1", "preact": "^10.4.1",
"react-redux": "^7.2.0", "preact-markup": "^1.6.0",
"react-router": "^5.2.0", "preact-render-to-string": "^5.1.6",
"react-router-dom": "^5.2.0", "preact-router": "^3.2.1",
"redux-saga": "^1.1.3",
"style-loader": "^1.1.4", "style-loader": "^1.1.4",
"typescript": "^3.8.3" "typescript": "^3.8.3"
}, },
"devDependencies": { "devDependencies": {
"@teamsupercell/typings-for-css-modules-loader": "^2.1.1", "@teamsupercell/typings-for-css-modules-loader": "^2.1.1",
"@types/react": "^16.9.34", "@types/react": "^16.9.3",
"css-loader": "^3.5.2", "css-loader": "^3.5.2",
"fork-ts-checker-webpack-plugin": "^4.1.3", "fork-ts-checker-webpack-plugin": "^4.1.3",
"html-webpack-plugin": "^4.2.0", "html-webpack-plugin": "^4.2.0",
@ -31,7 +29,7 @@
"ts-loader": "^7.0.1", "ts-loader": "^7.0.1",
"webpack": "^4.43.0", "webpack": "^4.43.0",
"webpack-cli": "^3.3.11", "webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0" "webpack-dev-server": "^3.10.3"
}, },
"scripts": { "scripts": {
"dev": "NODE_ENV=development webpack-dev-server --watch", "dev": "NODE_ENV=development webpack-dev-server --watch",

View File

@ -1,22 +1,27 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h } from "preact";
import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; import { Route, Router, RouterOnChangeArgs } from "preact-router";
import Home from "../routes/home/index"; import Home from "../routes/home/index";
import Project from "../routes/project/index"; import Project from "../routes/project/index";
import NotFound from '../routes/notfound/index'; import Pdf from "../routes/pdf/index";
import NotFoundPage from '../routes/notfound/index';
import Header from "./header/index"; import Header from "./header/index";
import Footer from "./footer"; import Footer from "./footer";
const App: FunctionComponent = () => { const App: FunctionalComponent = () => {
let currentUrl: string;
const handleRoute = (e: RouterOnChangeArgs) => {
currentUrl = e.url;
};
return ( return (
<div id="app"> <div id="app">
<Header class="noPrint" /> <Header class="noPrint" />
<Router> <Router onChange={handleRoute}>
<Switch> <Route path="/" component={Home} />
<Route exact path="/" component={Home} /> <Route path="/p/:projectId" component={Project} />
<Route exact path="/p/:projectId" component={Project} /> <Route path="/pdf/:projectId" component={Pdf} />
<Route component={NotFound} /> <NotFoundPage default />
</Switch>
</Router> </Router>
<Footer /> <Footer />
</div> </div>

View File

@ -1,19 +1,16 @@
import React, { import { FunctionalComponent, h, Component, ComponentChild, Fragment } from "preact";
FunctionComponent, Fragment,
ReactNode, ChangeEvent,
useState, useEffect
} from "react";
import * as style from "./style.module.css"; import * as style from "./style.module.css";
import { useState, useEffect } from "preact/hooks";
export interface EditableTextProps { export interface EditableTextProps {
value: string value: string
class?: string class?: string
editIconClass?: string editIconClass?: string
onChange?: (value: string) => void onChange?: (value: string) => void
render?: (value: string) => ReactNode render?: (value: string) => ComponentChild
} }
const EditableText: FunctionComponent<EditableTextProps> = ({ onChange, value, render, ...props }) => { const EditableText: FunctionalComponent<EditableTextProps> = ({ onChange, value, render, ...props }) => {
const [ internalValue, setInternalValue ] = useState(value); const [ internalValue, setInternalValue ] = useState(value);
const [ editMode, setEditMode ] = useState(false); const [ editMode, setEditMode ] = useState(false);
@ -34,28 +31,28 @@ const EditableText: FunctionComponent<EditableTextProps> = ({ onChange, value, r
setEditMode(false); setEditMode(false);
} }
const onValueChange = (evt: ChangeEvent) => { const onValueChange = (evt: Event) => {
const currentTarget = evt.currentTarget as HTMLInputElement; const currentTarget = evt.currentTarget as HTMLInputElement;
setInternalValue(currentTarget.value); setInternalValue(currentTarget.value);
}; };
return ( return (
<div className={`${style.editableText} ${props.class ? props.class : ''}`}> <div class={`${style.editableText} ${props.class ? props.class : ''}`}>
{ {
editMode ? editMode ?
<div className="field has-addons"> <div class="field has-addons">
<div className="control"> <div class="control">
<input className="input is-expanded" type="text" value={internalValue} onChange={onValueChange} /> <input class="input is-expanded" type="text" value={internalValue} onChange={onValueChange} />
</div> </div>
<div className="control"> <div class="control">
<a className="button" onClick={onValidateButtonClick}></a> <a class="button" onClick={onValidateButtonClick}></a>
</div> </div>
</div> : </div> :
<Fragment> <Fragment>
{ render ? render(internalValue) : <span>{internalValue}</span> } { render ? render(internalValue) : <span>{internalValue}</span> }
<i className={`${style.editIcon} icon ${props.editIconClass ? props.editIconClass : ''}`} onClick={onEditIconClick}>🖋</i> <i class={`${style.editIcon} icon ${props.editIconClass ? props.editIconClass : ''}`} onClick={onEditIconClick}>🖋</i>
</Fragment> </Fragment>
} }
</div> </div>
); );
}; };

View File

@ -1,13 +1,13 @@
declare namespace StyleModuleCssModule { declare namespace StyleModuleCssNamespace {
export interface IStyleModuleCss { export interface IStyleModuleCss {
editIcon: string; editIcon: string;
editableText: string; editableText: string;
} }
} }
declare const StyleModuleCssModule: StyleModuleCssModule.IStyleModuleCss & { declare const StyleModuleCssModule: StyleModuleCssNamespace.IStyleModuleCss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */ /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: StyleModuleCssModule.IStyleModuleCss; locals: StyleModuleCssNamespace.IStyleModuleCss;
}; };
export = StyleModuleCssModule; export = StyleModuleCssModule;

View File

@ -1,7 +1,7 @@
import ProjectTimeUnit from "./project-time-unit"; import ProjectTimeUnit from "./project-time-unit";
import { getRoundUpEstimations } from "../models/params"; import { defaults, getRoundUpEstimations } from "../models/params";
import { Project } from "../models/project"; import { Project } from "../models/project";
import React, { Fragment,FunctionComponent } from "react"; import { FunctionalComponent, Fragment, h } from "preact";
import { Estimation } from "../hooks/use-project-estimations"; import { Estimation } from "../hooks/use-project-estimations";
export interface EstimationRangeProps { export interface EstimationRangeProps {
@ -9,7 +9,7 @@ export interface EstimationRangeProps {
estimation: Estimation estimation: Estimation
} }
export const EstimationRange: FunctionComponent<EstimationRangeProps> = ({ project, estimation }) => { export const EstimationRange: FunctionalComponent<EstimationRangeProps> = ({ project, estimation }) => {
const roundUp = getRoundUpEstimations(project); const roundUp = getRoundUpEstimations(project);
let e: number|string = estimation.e; let e: number|string = estimation.e;
let sd: number|string = estimation.sd; let sd: number|string = estimation.sd;

View File

@ -1,6 +1,5 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h } from "preact";
import style from "./style.module.css"; import style from "./style.module.css";
import { formatDate } from "../../util/date";
declare var __BUILD__: any; declare var __BUILD__: any;
@ -8,17 +7,19 @@ export interface FooterProps {
class?: string class?: string
} }
const Footer: FunctionComponent<FooterProps> = ({ ...props}) => { const Footer: FunctionalComponent<FooterProps> = ({ ...props}) => {
console.log(__BUILD__)
return ( return (
<div className={`container ${style.footer} ${props.class ? props.class : ''}`}> <div class={`container ${style.footer} ${props.class ? props.class : ''}`}>
<div className="columns"> <div class="columns">
<div className="column is-4 is-offset-8"> <div class="column is-4 is-offset-8">
<p className="has-text-right is-size-7"> <p class="has-text-right is-size-7">
Propulsé par <a className="has-text-primary" href="https://forge.cadoles.com/wpetit/guesstimate">Guesstimate</a> et publié sous licence <a className="has-text-primary" href="https://www.gnu.org/licenses/agpl-3.0.txt">AGPL-3.0</a>. Propulsé par <a class="has-text-primary" href="https://forge.cadoles.com/wpetit/guesstimate">Guesstimate</a> et publié sous licence <a class="has-text-primary" href="https://www.gnu.org/licenses/agpl-3.0.txt">AGPL-3.0</a>.
</p> </p>
<p className="has-text-right is-size-7"> <p class="has-text-right is-size-7">
Réf.: {__BUILD__.gitRef ? __BUILD__.gitRef : '??'} | Version: {__BUILD__.version} -
Date de construction: {__BUILD__.buildDate ? formatDate(__BUILD__.buildDate) : '??'} Réf.: {__BUILD__.gitRef ? __BUILD__.gitRef : '??'} -
Date de construction: {__BUILD__.buildDate ? __BUILD__.buildDate : '??'}
</p> </p>
</div> </div>
</div> </div>

View File

@ -1,12 +1,12 @@
declare namespace StyleModuleCssModule { declare namespace StyleModuleCssNamespace {
export interface IStyleModuleCss { export interface IStyleModuleCss {
footer: string; footer: string;
} }
} }
declare const StyleModuleCssModule: StyleModuleCssModule.IStyleModuleCss & { declare const StyleModuleCssModule: StyleModuleCssNamespace.IStyleModuleCss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */ /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: StyleModuleCssModule.IStyleModuleCss; locals: StyleModuleCssNamespace.IStyleModuleCss;
}; };
export = StyleModuleCssModule; export = StyleModuleCssModule;

View File

@ -1,21 +1,21 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h } from "preact";
import style from "./style.module.css"; import style from "./style.module.css";
export interface HeaderProps { export interface HeaderProps {
class?: string class?: string
} }
const Header: FunctionComponent<HeaderProps> = ({ ...props}) => { const Header: FunctionalComponent<HeaderProps> = ({ ...props}) => {
return ( return (
<div className={`container ${style.header} ${props.class ? props.class : ''}`}> <div class={`container ${style.header} ${props.class ? props.class : ''}`}>
<div className="columns"> <div class="columns">
<div className="column"> <div class="column">
<nav className="navbar" role="navigation" aria-label="main navigation"> <nav class="navbar" role="navigation" aria-label="main navigation">
<div className="navbar-brand"> <div class="navbar-brand">
<a className="navbar-item" href="/"> <a class="navbar-item" href="/">
<h1 className="title is-size-4"> Guesstimate</h1> <h1 class="title is-size-4"> Guesstimate</h1>
</a> </a>
<a role="button" className="navbar-burger" aria-label="menu" aria-expanded="false"> <a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span> <span aria-hidden="true"></span>
<span aria-hidden="true"></span> <span aria-hidden="true"></span>
<span aria-hidden="true"></span> <span aria-hidden="true"></span>

View File

@ -1,12 +1,12 @@
declare namespace StyleModuleCssModule { declare namespace StyleModuleCssNamespace {
export interface IStyleModuleCss { export interface IStyleModuleCss {
header: string; header: string;
} }
} }
declare const StyleModuleCssModule: StyleModuleCssModule.IStyleModuleCss & { declare const StyleModuleCssModule: StyleModuleCssNamespace.IStyleModuleCss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */ /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: StyleModuleCssModule.IStyleModuleCss; locals: StyleModuleCssNamespace.IStyleModuleCss;
}; };
export = StyleModuleCssModule; export = StyleModuleCssModule;

View File

@ -1,4 +1,4 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h } from "preact";
import { Project } from "../models/project"; import { Project } from "../models/project";
import { getTimeUnit } from "../models/params"; import { getTimeUnit } from "../models/params";
@ -6,7 +6,7 @@ export interface ProjectTimeUnitProps {
project: Project project: Project
} }
const ProjectTimeUnit: FunctionComponent<ProjectTimeUnitProps> = ({ project }) => { const ProjectTimeUnit: FunctionalComponent<ProjectTimeUnitProps> = ({ project }) => {
const timeUnit = getTimeUnit(project); const timeUnit = getTimeUnit(project);
return ( return (
<abbr title={timeUnit.label}>{timeUnit.acronym}</abbr> <abbr title={timeUnit.label}>{timeUnit.acronym}</abbr>

View File

@ -1,10 +1,11 @@
import React, { FunctionComponent, useState, ReactNode } from "react"; import { FunctionalComponent, h, ComponentChild } from "preact";
import style from "./style.module.css"; import style from "./style.module.css";
import { useState } from "preact/hooks";
export interface TabItem { export interface TabItem {
label: string label: string
icon?: string icon?: string
render: () => ReactNode render: () => ComponentChild
} }
export interface TabsProps { export interface TabsProps {
@ -12,7 +13,7 @@ export interface TabsProps {
items: TabItem[] items: TabItem[]
} }
const Tabs: FunctionComponent<TabsProps> = ({ items, ...props }) => { const Tabs: FunctionalComponent<TabsProps> = ({ items, ...props }) => {
const [ selectedTabIndex, setSelectedTabIndex ] = useState(0); const [ selectedTabIndex, setSelectedTabIndex ] = useState(0);
const onTabClick = (tabIndex: number) => { const onTabClick = (tabIndex: number) => {
@ -22,16 +23,16 @@ const Tabs: FunctionComponent<TabsProps> = ({ items, ...props }) => {
const selectedTab = items[selectedTabIndex]; const selectedTab = items[selectedTabIndex];
return ( return (
<div className={`${style.tabs} ${props.class}`}> <div class={`${style.tabs} ${props.class}`}>
<div className="tabs"> <div class="tabs">
<ul className={`noPrint`}> <ul class={`noPrint`}>
{ {
items.map((tabItem, tabIndex) => ( items.map((tabItem, tabIndex) => (
<li key={`tab-${tabIndex}`} <li key={`tab-${tabIndex}`}
onClick={onTabClick.bind(null, tabIndex)} onClick={onTabClick.bind(null, tabIndex)}
className={`${selectedTabIndex === tabIndex ? 'is-active' : ''}`}> class={`${selectedTabIndex === tabIndex ? 'is-active' : ''}`}>
<a> <a>
<span className="icon is-small">{tabItem.icon}</span> <span class="icon is-small">{tabItem.icon}</span>
{tabItem.label} {tabItem.label}
</a> </a>
</li> </li>
@ -39,7 +40,7 @@ const Tabs: FunctionComponent<TabsProps> = ({ items, ...props }) => {
} }
</ul> </ul>
</div> </div>
<div className={style.tabContent}> <div class={style.tabContent}>
{ selectedTab.render() } { selectedTab.render() }
</div> </div>
</div> </div>

View File

@ -1,13 +1,13 @@
declare namespace StyleModuleCssModule { declare namespace StyleModuleCssNamespace {
export interface IStyleModuleCss { export interface IStyleModuleCss {
tabContent: string; tabContent: string;
tabs: string; tabs: string;
} }
} }
declare const StyleModuleCssModule: StyleModuleCssModule.IStyleModuleCss & { declare const StyleModuleCssModule: StyleModuleCssNamespace.IStyleModuleCss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */ /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: StyleModuleCssModule.IStyleModuleCss; locals: StyleModuleCssNamespace.IStyleModuleCss;
}; };
export = StyleModuleCssModule; export = StyleModuleCssModule;

View File

@ -1,4 +1,4 @@
import { useMemo, useState } from "react"; import { useMemo, useState } from "preact/hooks";
export default function useDebounce(func: Function, delay: number) { export default function useDebounce(func: Function, delay: number) {
const [id, setId] = useState<number|null>(null) const [id, setId] = useState<number|null>(null)

View File

@ -1,12 +1,20 @@
import { useState } from "react"; import { useState } from "preact/hooks";
import storage from 'local-storage-fallback'
export function useLocalStorage<T>(key: string, initialValue: T) { export function useLocalStorage<T>(key: string, initialValue: T) {
//Define storage to localStorage and fallback if not avalaible (in wkhtmltopdf for exemple)
let localStorage: any;
localStorage = window.localStorage
if (null === localStorage) {
localStorage = storage;
}
// State to store our value // State to store our value
// Pass initial state function to useState so logic is only executed once // Pass initial state function to useState so logic is only executed once
const [storedValue, setStoredValue] = useState(() => { const [storedValue, setStoredValue] = useState(() => {
try { try {
// Get from local storage by key // Get from local storage by key
const item = window.localStorage.getItem(key); const item = localStorage.getItem(key);
// Parse stored json or if none return initialValue // Parse stored json or if none return initialValue
return item ? JSON.parse(item) : initialValue; return item ? JSON.parse(item) : initialValue;
} catch (error) { } catch (error) {
@ -26,7 +34,7 @@ export function useLocalStorage<T>(key: string, initialValue: T) {
// Save state // Save state
setStoredValue(valueToStore); setStoredValue(valueToStore);
// Save to local storage // Save to local storage
window.localStorage.setItem(key, JSON.stringify(valueToStore)); localStorage.setItem(key, JSON.stringify(valueToStore));
} catch (error) { } catch (error) {
// A more advanced implementation would handle the error case // A more advanced implementation would handle the error case
console.error(error); console.error(error);

View File

@ -1,4 +1,4 @@
import { useEffect, useState } from "react"; import { useEffect, useState } from "preact/hooks";
export function useMediaQuery(query: string): boolean { export function useMediaQuery(query: string): boolean {
const media = window.matchMedia(query); const media = window.matchMedia(query);

View File

@ -1,7 +1,7 @@
import { useEffect, useRef } from "react"; import { useEffect, useRef } from "preact/hooks";
export function usePrevious<T>(value: T): T|undefined { export function usePrevious<T>(value: T): T|undefined {
const ref = useRef<T>(); const ref = useRef();
useEffect(() => { useEffect(() => {
ref.current = value; ref.current = value;

View File

@ -1,5 +1,5 @@
import { Project } from "../models/project"; import { Project } from "../models/project";
import { useState, useEffect } from "react"; import { useState, useEffect } from "preact/hooks";
import { getProjectWeightedMean, getProjectStandardDeviation } from "../util/stat"; import { getProjectWeightedMean, getProjectStandardDeviation } from "../util/stat";
export interface Estimation { export interface Estimation {

View File

@ -1,6 +1,6 @@
import { Project, sanitize } from "../models/project"; import { Project } from "../models/project";
import { Task, TaskID, EstimationConfidence, TaskCategoryID, TaskCategory } from "../models/task"; import { Task, TaskID, EstimationConfidence, TaskCategoryID, TaskCategory } from "../models/task";
import { useReducer } from "react"; import { useReducer } from "preact/hooks";
import { generate as diff } from "json-merge-patch"; import { generate as diff } from "json-merge-patch";
import { applyPatch } from "../util/patch"; import { applyPatch } from "../util/patch";
@ -27,7 +27,7 @@ export function useProjectReducer(project: Project) {
} }
export function projectReducer(project: Project, action: ProjectReducerActions): Project { export function projectReducer(project: Project, action: ProjectReducerActions): Project {
console.log('action', action); console.log(action);
switch(action.type) { switch(action.type) {
case ADD_TASK: case ADD_TASK:
return handleAddTask(project, action as AddTask); return handleAddTask(project, action as AddTask);
@ -43,9 +43,6 @@ export function projectReducer(project: Project, action: ProjectReducerActions):
case UPDATE_TASK_LABEL: case UPDATE_TASK_LABEL:
return handleUpdateTaskLabel(project, action as UpdateTaskLabel); return handleUpdateTaskLabel(project, action as UpdateTaskLabel);
case MOVE_TASK:
return handleMoveTask(project, action as MoveTask);
case UPDATE_PARAM: case UPDATE_PARAM:
return handleUpdateParam(project, action as UpdateParam); return handleUpdateParam(project, action as UpdateParam);
@ -86,12 +83,7 @@ export function handleAddTask(project: Project, action: AddTask): Project {
tasks: { tasks: {
...project.tasks, ...project.tasks,
[task.id]: task, [task.id]: task,
}, }
ordering: [
...project.ordering,
task.id
],
updatedAt: new Date(),
}; };
} }
@ -108,18 +100,9 @@ export function removeTask(id: TaskID): RemoveTask {
export function handleRemoveTask(project: Project, action: RemoveTask): Project { export function handleRemoveTask(project: Project, action: RemoveTask): Project {
const tasks = { ...project.tasks }; const tasks = { ...project.tasks };
delete tasks[action.id]; delete tasks[action.id];
const ordering = [ ...(project.ordering ?? []) ]
const taskIndex = ordering.findIndex(taskId => taskId === action.id)
if (taskIndex !== -1) {
ordering.splice(taskIndex, 1)
}
return { return {
...project, ...project,
tasks, tasks
ordering,
updatedAt: new Date(),
}; };
} }
@ -141,6 +124,14 @@ export function handleUpdateTaskEstimation(project: Project, action: UpdateTaskE
[action.confidence]: action.value [action.confidence]: action.value
}; };
if (estimations.likely < estimations.optimistic) {
estimations.likely = estimations.optimistic;
}
if (estimations.pessimistic < estimations.likely) {
estimations.pessimistic = estimations.likely;
}
return { return {
...project, ...project,
tasks: { tasks: {
@ -148,9 +139,8 @@ export function handleUpdateTaskEstimation(project: Project, action: UpdateTaskE
[action.id]: { [action.id]: {
...project.tasks[action.id], ...project.tasks[action.id],
estimations: estimations, estimations: estimations,
}, }
}, }
updatedAt: new Date(),
}; };
} }
@ -168,8 +158,7 @@ export function updateProjectLabel(label: string): UpdateProjectLabel {
export function handleUpdateProjectLabel(project: Project, action: UpdateProjectLabel): Project { export function handleUpdateProjectLabel(project: Project, action: UpdateProjectLabel): Project {
return { return {
...project, ...project,
label: action.label, label: action.label
updatedAt: new Date(),
}; };
} }
@ -193,48 +182,10 @@ export function handleUpdateTaskLabel(project: Project, action: UpdateTaskLabel)
...project.tasks[action.id], ...project.tasks[action.id],
label: action.label, label: action.label,
} }
}, }
updatedAt: new Date(),
}; };
} }
export const MOVE_TASK = "MOVE_TASK";
export interface MoveTask extends Action {
id: TaskID
move: number
}
export function moveTask(id: TaskID, move: number): MoveTask {
return { type: MOVE_TASK, id, move };
}
export function handleMoveTask(project: Project, action: MoveTask): Project {
let ordering = [
...(project.ordering ?? []),
]
if (ordering.length === 0) {
ordering = Object.keys(project.tasks)
}
const taskIndex = ordering.findIndex(taskId => action.id === taskId)
if (taskIndex+action.move < 0 || taskIndex+action.move > ordering.length-1 ) {
return project
}
ordering.splice(taskIndex, 1)
ordering.splice(taskIndex+action.move, 0, action.id)
return {
...project,
ordering,
updatedAt: new Date(),
}
}
export interface UpdateParam extends Action { export interface UpdateParam extends Action {
name: string name: string
value: any value: any
@ -252,8 +203,7 @@ export function handleUpdateParam(project: Project, action: UpdateParam): Projec
params: { params: {
...project.params, ...project.params,
[action.name]: action.value, [action.name]: action.value,
}, }
updatedAt: new Date(),
}; };
} }
@ -280,8 +230,7 @@ export function handleUpdateTaskCategoryLabel(project: Project, action: UpdateTa
label: action.label label: action.label
}, },
} }
}, }
updatedAt: new Date(),
}; };
} }
@ -308,8 +257,7 @@ export function handleUpdateTaskCategoryCost(project: Project, action: UpdateTas
costPerTimeUnit: action.costPerTimeUnit costPerTimeUnit: action.costPerTimeUnit
}, },
} }
}, }
updatedAt: new Date(),
}; };
} }
@ -333,8 +281,7 @@ export function handleAddTaskCategory(project: Project, action: AddTaskCategory)
...project.params.taskCategories, ...project.params.taskCategories,
[taskCategory.id]: taskCategory, [taskCategory.id]: taskCategory,
} }
}, }
updatedAt: new Date(),
}; };
} }
@ -356,8 +303,7 @@ export function handleRemoveTaskCategory(project: Project, action: RemoveTaskCat
params: { params: {
...project.params, ...project.params,
taskCategories taskCategories
}, }
updatedAt: new Date(),
}; };
} }
@ -375,9 +321,5 @@ export function handlePatchProject(project: Project, action: PatchProject): Proj
const p = diff(project, action.from); const p = diff(project, action.from);
console.log('patch to apply', p); console.log('patch to apply', p);
if (!p) return project; if (!p) return project;
const patched: Project = applyPatch(project, p) as Project return applyPatch(project, p) as Project;
sanitize(patched)
return patched;
} }

View File

@ -1,6 +1,8 @@
import { Project } from "../models/project"; import { Project } from "../models/project";
import { useEffect, useState } from "react"; import { usePrevious } from "./use-previous";
import { useEffect, useState, useRef } from "preact/hooks";
import { generate as diff } from "json-merge-patch"; import { generate as diff } from "json-merge-patch";
import useDebounce from "./use-debounce";
export interface ServerSyncOptions { export interface ServerSyncOptions {
projectURL: string projectURL: string

View File

@ -1,38 +1,35 @@
import { Project, sanitize } from "../models/project"; import {Project} from "../models/project";
import { useState } from "react"; import { useState } from "preact/hooks";
import { ProjectStorageKeyPrefix } from "../util/storage"; import { ProjectStorageKeyPrefix } from "../util/storage";
export function loadStoredProjects(): Project[] { export function loadStoredProjects(): Project[] {
const projects: Project[] = []; const projects: Project[] = [];
Object.keys(window.localStorage).forEach(key => { Object.keys(window.localStorage).forEach(key => {
if (key.startsWith(ProjectStorageKeyPrefix)) { if (key.startsWith(ProjectStorageKeyPrefix)) {
try { try {
const data = window.localStorage.getItem(key); const data = window.localStorage.getItem(key);
if (data) { if (data) {
const project: Project = JSON.parse(data); const project = JSON.parse(data);
projects.push(project);
sanitize(project) }
} catch(err) {
projects.push(project); console.error(err);
}
} }
} catch (err) { });
console.error(err);
}
}
});
return projects return projects
} }
export function useStoredProjectList(): [Project[], () => void] { export function useStoredProjectList(): [Project[], () => void] {
const [projects, setProjects] = useState(() => { const [ projects, setProjects ] = useState(() => {
return loadStoredProjects(); return loadStoredProjects();
}); });
const refresh = () => { const refresh = () => {
setProjects(loadStoredProjects()); setProjects(loadStoredProjects());
}; };
return [projects, refresh]; return [ projects, refresh];
} }

View File

@ -1,7 +0,0 @@
import { useEffect } from "react"
export const useTitle = (title: string) => {
useEffect(() => {
window.document.title = `⏱️ | ${title}`
}, [title])
}

View File

@ -1,31 +0,0 @@
import { useCallback, useEffect, useState } from "react";
export enum Direction {
ASC = 1,
DESC = -1
}
export function useKeySort<T>(items: T[], key: string, direction: Direction = Direction.ASC): T[] {
const predicate = useCallback((a: any, b: any) => {
if (!a.hasOwnProperty(key)) return -direction;
if (!b.hasOwnProperty(key)) return direction;
if (a[key] > b[key]) return direction;
if (a[key] < b[key]) return -direction;
return 0
}, [key, direction])
return useSort(items, predicate)
}
export function useSort<T>(items: T[], predicate: (a:T, b:T) => number): T[] {
const [ sorted, setSorted ] = useState(items);
useEffect(() => {
const sorted = [ ...items ]
sorted.sort(predicate)
setSorted(sorted)
}, [items, predicate])
return sorted
}

View File

@ -2,11 +2,13 @@ import "./style/index.css";
import "bulma/css/bulma.css"; import "bulma/css/bulma.css";
import "bulma-switch/dist/css/bulma-switch.min.css"; import "bulma-switch/dist/css/bulma-switch.min.css";
import React from 'react'; import { h, render } from 'preact'
import { render } from 'react-dom';
import App from "./components/app"; import App from "./components/app";
render( render(h(App, {}), document.getElementById('app'));
React.createElement(App, {}, null),
document.getElementById('app') // Hot Module Replacement
); if (module.hot) {
require("preact/debug");
module.hot.accept();
}

View File

@ -1,4 +1,4 @@
import { Task, TaskID } from './task'; import { Task, TaskCategory, TaskID } from './task';
import { Params, defaults } from "./params"; import { Params, defaults } from "./params";
import { uuidV4 } from "../util/uuid"; import { uuidV4 } from "../util/uuid";
@ -10,9 +10,6 @@ export interface Project {
description: string description: string
tasks: Tasks tasks: Tasks
params: Params params: Params
createdAt: Date
updatedAt: Date
ordering: TaskID[]
} }
export interface Tasks { export interface Tasks {
@ -28,24 +25,5 @@ export function newProject(id?: string): Project {
params: { params: {
...defaults ...defaults
}, },
createdAt: new Date(),
updatedAt: new Date(),
ordering: [],
}; };
}
export function sanitize(project: Project): Project {
if (!Array.isArray(project.ordering)) {
project.ordering = Object.keys(project.tasks)
}
if (typeof project.updatedAt === 'string') {
project.updatedAt = new Date(project.updatedAt)
}
if (typeof project.createdAt === 'string') {
project.createdAt = new Date(project.createdAt)
}
return project
} }

View File

@ -1,111 +1,57 @@
import React, { FunctionComponent, MouseEvent, useCallback, useEffect, useState } from "react"; import { FunctionalComponent, h } from "preact";
import style from "./style.module.css"; import style from "./style.module.css";
import { useHistory } from 'react-router'; import { route } from 'preact-router';
import { base58UUID } from '../../util/uuid'; import { base58UUID } from '../../util/uuid';
import { useStoredProjectList } from "../../hooks/use-stored-project-list"; import { useStoredProjectList } from "../../hooks/use-stored-project-list";
import { formatDate } from "../../util/date";
import { Direction, useKeySort, useSort } from "../../hooks/useSort";
import { useTitle } from "../../hooks/use-title";
const Home: FunctionComponent = () => { const Home: FunctionalComponent = () => {
useTitle('Accueil') const [ projects, refreshProjects ] = useStoredProjectList();
const [projects] = useStoredProjectList() const openNewProject = () => {
const [sortingKey, setSortingKey] = useState('updatedAt') const uuid = base58UUID();
const [sortingDirection, setSortingDirection] = useState<Direction>(Direction.DESC) route(`/p/${uuid}`);
const sortedProjects = useKeySort(projects, sortingKey, sortingDirection) };
const history = useHistory()
const openNewProject = () => { return (
const uuid = base58UUID() <div class={`container ${style.home}`}>
history.push(`/p/${uuid}`) <div class="columns">
}; <div class="column">
<div class="buttons is-right">
const openProject = useCallback((evt: MouseEvent<HTMLTableRowElement>) => { <button class="button is-primary"
const projectId = evt.currentTarget.dataset.projectId; onClick={openNewProject}>
history.push(`/p/${projectId}`) <strong>+</strong>&nbsp;&nbsp;Nouveau projet
}, []) </button>
</div>
const sortBy = useCallback((evt: MouseEvent<HTMLTableCellElement>) => { <div class="panel">
const key = evt.currentTarget.dataset.sortKey <p class="panel-heading">
if (!key) return Mes projets
</p>
if (sortingKey !== key) { {/* <div class="panel-block">
setSortingKey(key) <p class="control has-icons-left">
return <input class="input" type="text" placeholder="Search" />
} <span class="icon is-left">🔍</span>
</p>
setSortingDirection(sortingDirection => -sortingDirection) </div> */}
}, [sortingKey, sortingDirection]) {
projects.map(p => (
return ( <a class="panel-block" href={`/p/${p.id}`}>
<div className={`container ${style.home}`}> <span class="panel-icon">🗒</span>
<div className="columns"> { p.label ? p.label : "Projet sans nom" }
<div className="column"> </a>
<div className="buttons is-right"> ))
<button className="button is-primary is-medium" }
onClick={openNewProject}> {
<strong>+</strong>&nbsp;&nbsp;Nouveau projet projects.length === 0 ?
</button> <p class="panel-block">
</div> <div class={style.noProjects}>Aucun project pour l'instant.</div>
<div className="box"> </p> :
<div className="table-container"> null
<table className="table is-fullwidth is-hoverable"> }
<thead> </div>
<tr className="is-size-5"> </div>
<TableHeader onClick={sortBy} label="Projet" isCurrentSortingKey={sortingKey === 'label'} sortingDirection={sortingDirection} sortingKey="label" />
<TableHeader onClick={sortBy} label="Mis à jour le" isCurrentSortingKey={sortingKey === 'updatedAt'} sortingDirection={sortingDirection} sortingKey="updatedAt" />
</tr>
</thead>
<tbody>
{
sortedProjects.map(p => (
<tr
key={`project-${p.id}`}
data-project-id={p.id}
onClick={openProject}
className="is-clickable">
<td>
<span className="mr-3">🗒</span>
{p.label ? p.label : "Projet sans nom"}
</td>
<td>
{p.updatedAt ? formatDate(p.updatedAt) : "--"}
</td>
</tr>
))
}
{
projects.length === 0 ?
<tr className={style.noProjects}>
<td colSpan={2}>
Aucun project pour l'instant.
</td>
</tr> :
null
}
</tbody>
</table>
</div> </div>
</div>
</div> </div>
</div> );
</div>
);
}; };
interface TableHeaderProps {
onClick?: React.MouseEventHandler<HTMLTableCellElement>
sortingKey: string
isCurrentSortingKey: boolean
sortingDirection: Direction
label: string
}
const TableHeader: FunctionComponent<TableHeaderProps> = ({ onClick, isCurrentSortingKey, sortingKey, label, sortingDirection }) => {
return (
<th className="is-clickable" onClick={onClick} data-sort-key={sortingKey}>{label}<span className={`ml-1 ${!isCurrentSortingKey ? 'is-hidden' : ''}`}>{sortingDirection === Direction.ASC ? '↑' : '↓'}</span></th>
)
}
export default Home; export default Home;

View File

@ -1,13 +1,13 @@
declare namespace StyleModuleCssModule { declare namespace StyleModuleCssNamespace {
export interface IStyleModuleCss { export interface IStyleModuleCss {
home: string; home: string;
noProjects: string; noProjects: string;
} }
} }
declare const StyleModuleCssModule: StyleModuleCssModule.IStyleModuleCss & { declare const StyleModuleCssModule: StyleModuleCssNamespace.IStyleModuleCss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */ /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: StyleModuleCssModule.IStyleModuleCss; locals: StyleModuleCssNamespace.IStyleModuleCss;
}; };
export = StyleModuleCssModule; export = StyleModuleCssModule;

View File

@ -1,18 +1,15 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h } from "preact";
import { Link } from 'react-router-dom'; import { Link } from 'preact-router/match';
import style from "./style.module.css"; import style from "./style.module.css";
import { useTitle } from "../../hooks/use-title";
const NotFound: FunctionComponent = () => { const Notfound: FunctionalComponent = () => {
useTitle("Page non trouvée") return (
<div class={style.notFound}>
return ( <h1>Error 404</h1>
<div className={style.notFound}> <p>That page doesn't exist.</p>
<h1>Erreur 404</h1> <Link href="/"><h4>Back to Home</h4></Link>
<p>Cette page n'existe pas</p> </div>
<Link to="/"><h4>Retour à la page d'accueil</h4></Link> );
</div>
);
}; };
export default NotFound; export default Notfound;

View File

@ -1,12 +1,12 @@
declare namespace StyleModuleCssModule { declare namespace StyleModuleCssNamespace {
export interface IStyleModuleCss { export interface IStyleModuleCss {
notFound: string; notFound: string;
} }
} }
declare const StyleModuleCssModule: StyleModuleCssModule.IStyleModuleCss & { declare const StyleModuleCssModule: StyleModuleCssNamespace.IStyleModuleCss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */ /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: StyleModuleCssModule.IStyleModuleCss; locals: StyleModuleCssNamespace.IStyleModuleCss;
}; };
export = StyleModuleCssModule; export = StyleModuleCssModule;

View File

@ -0,0 +1,45 @@
import { FunctionalComponent, h } from "preact";
import style from "./style.module.css";
import { newProject, Project } from "../../models/project";
import { getProjectStorageKey } from "../../util/storage";
import { useLocalStorage } from "../../hooks/use-local-storage";
import TaskTable from "../project/tasks-table";
import { useProjectReducer, addTask, updateTaskEstimation, removeTask, updateTaskLabel } from "../../hooks/use-project-reducer";
import { Task, TaskID, EstimationConfidence } from "../../models/task";
import TimePreview from "../project/time-preview";
import RepartitionPreview from "../project/repartition-preview";
import FinancialPreview from "../project/financial-preview";
import { getHideFinancialPreviewOnPrint } from "../../models/params";
export interface PdfProps {
projectId: string
}
const Pdf: FunctionalComponent<PdfProps> = ({ projectId }) => {
const projectStorageKey = getProjectStorageKey(projectId);
const [ storedProject, storeProject ] = useLocalStorage(projectStorageKey, newProject(projectId));
const [ project, dispatch ] = useProjectReducer(storedProject);
return (
<div class={`container ${style.pdf}`}>
<div class="columns">
<div class="column is-9">
<TaskTable
project={project}
readonly={true} />
</div>
<div class="column is-3">
<TimePreview project={project} />
<RepartitionPreview project={project} />
</div>
</div>
<div class="columns">
<div class={`column ${getHideFinancialPreviewOnPrint(project) ? 'noPrint': ''}`}>
<FinancialPreview project={project} />
</div>
</div>
</div>
);
};
export default Pdf;

View File

@ -0,0 +1,3 @@
.pdf {
height: 100%;
}

View File

@ -0,0 +1,12 @@
declare namespace StyleModuleCssNamespace {
export interface IStyleModuleCss {
pdf: string;
}
}
declare const StyleModuleCssModule: StyleModuleCssNamespace.IStyleModuleCss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: StyleModuleCssNamespace.IStyleModuleCss;
};
export = StyleModuleCssModule;

View File

@ -1,74 +1,69 @@
import React, { FunctionComponent, Fragment, useCallback } from "react"; import { FunctionalComponent, h, Fragment } from "preact";
import { Project } from "../../models/project"; import { Project } from "../../models/project";
import TaskTable from "./tasks-table"; import TaskTable from "./tasks-table";
import TimePreview from "./time-preview"; import TimePreview from "./time-preview";
import FinancialPreview from "./financial-preview"; import FinancialPreview from "./financial-preview";
import { addTask, updateTaskEstimation, removeTask, updateTaskLabel, ProjectReducerActions, moveTask } from "../../hooks/use-project-reducer"; import { addTask, updateTaskEstimation, removeTask, updateProjectLabel, updateTaskLabel, ProjectReducerActions } from "../../hooks/use-project-reducer";
import { Task, TaskID, EstimationConfidence } from "../../models/task"; import { Task, TaskID, EstimationConfidence } from "../../models/task";
import RepartitionPreview from "./repartition-preview"; import RepartitionPreview from "./repartition-preview";
import { getHideFinancialPreviewOnPrint } from "../../models/params"; import { getHideFinancialPreviewOnPrint } from "../../models/params";
export interface EstimationTabProps { export interface EstimationTabProps {
project: Project project: Project
dispatch: (action: ProjectReducerActions) => void dispatch: (action: ProjectReducerActions) => void
} }
const EstimationTab: FunctionComponent<EstimationTabProps> = ({ project, dispatch }) => { const EstimationTab: FunctionalComponent<EstimationTabProps> = ({ project, dispatch }) => {
const onTaskAdd = (task: Task) => { const onTaskAdd = (task: Task) => {
dispatch(addTask(task)); dispatch(addTask(task));
}; };
const onTaskRemove = (taskId: TaskID) => { const onTaskRemove = (taskId: TaskID) => {
dispatch(removeTask(taskId)); dispatch(removeTask(taskId));
} }
const onTaskLabelUpdate = (taskId: TaskID, label: string) => { const onTaskLabelUpdate = (taskId: TaskID, label: string) => {
dispatch(updateTaskLabel(taskId, label)); dispatch(updateTaskLabel(taskId, label));
} }
const onEstimationChange = (taskId: TaskID, confidence: EstimationConfidence, value: number) => { const onEstimationChange = (taskId: TaskID, confidence: EstimationConfidence, value: number) => {
dispatch(updateTaskEstimation(taskId, confidence, value)); dispatch(updateTaskEstimation(taskId, confidence, value));
}; };
const onTaskMove = useCallback((taskId: TaskID, move: number) => { return (
dispatch(moveTask(taskId, move)) <Fragment>
}, [dispatch]) <div class="columns">
<div class="column is-9">
return ( <TaskTable
<Fragment> project={project}
<div className="columns"> onTaskAdd={onTaskAdd}
<div className="column is-9"> onTaskRemove={onTaskRemove}
<TaskTable onTaskLabelUpdate={onTaskLabelUpdate}
project={project} onEstimationChange={onEstimationChange} />
onTaskMove={onTaskMove} </div>
onTaskAdd={onTaskAdd} <div class="column is-3">
onTaskRemove={onTaskRemove} <TimePreview project={project} />
onTaskLabelUpdate={onTaskLabelUpdate} <RepartitionPreview project={project} />
onEstimationChange={onEstimationChange} /> </div>
</div> </div>
<div className="column is-3"> <div class="columns">
<TimePreview project={project} /> <div class={`column ${getHideFinancialPreviewOnPrint(project) ? 'noPrint': ''}`}>
<RepartitionPreview project={project} /> <FinancialPreview project={project} />
</div>
</div> </div>
</div> {
<div className="columns"> Object.keys(project.tasks).length <= 20 ?
<div className={`column ${getHideFinancialPreviewOnPrint(project) ? 'noPrint' : ''}`}> <div class="message noPrint">
<FinancialPreview project={project} /> <div class="message-body">
</div>
</div>
{
Object.keys(project.tasks).length <= 20 ?
<div className="message noPrint">
<div className="message-body">
<p><strong> Attention</strong></p> <p><strong> Attention</strong></p>
<p>Votre projet ne contient pas assez de tâches pour que les niveaux de confiance soient fiables. Un minimum de 20 tâches est conseillé pour obtenir une estimation pertinente.</p> <p>Votre projet ne contient pas assez de tâches pour que les niveaux de confiance soient fiables. Un minimum de 20 tâches est conseillé pour obtenir une estimation pertinente.</p>
</div> </div>
</div> : </div> :
null null
} }
<hr /> <hr />
</Fragment> </Fragment>
); );
}; };
export default EstimationTab; export default EstimationTab;

View File

@ -1,14 +1,63 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h, Fragment } from "preact";
import { Project } from "../../models/project"; import { Project } from "../../models/project";
import { route } from 'preact-router';
export interface ExportTabProps { export interface ExportTabProps {
project: Project project: Project
} }
const ExportTab: FunctionComponent<ExportTabProps> = ({ project }) => { const ExportTab: FunctionalComponent<ExportTabProps> = ({ project }) => {
const displayPdf = () => {
const uuid = project.id;
route(`/pdf/${uuid}`);
};
const showFile = (blob:any) => {
var newBlob = new Blob([blob], {type: "application/pdf"})
if (window.navigator && window.navigator.msSaveOrOpenBlob) {
window.navigator.msSaveOrOpenBlob(newBlob);
return;
}
const data = window.URL.createObjectURL(newBlob);
var link = document.createElement('a');
link.href = data;
link.download=project.label+".pdf";
link.click();
setTimeout(function(){
window.URL.revokeObjectURL(data);
}, 100);
}
const options = {
projectURL: `//${window.location.host}/export/projects`,
}
const exportPdf = () => {
return fetch(`${options.projectURL}/${project.id}`, {
method: 'GET',
}).then(r => r.blob())
.then(showFile);
};
return ( return (
<div> <div>
<label className="label is-size-4">Format JSON</label> <label class="label is-size-4">Format PDF</label>
<div class="field">
<button class="button is-default"
onClick={displayPdf}>
Aperçu PDF
</button>
</div>
<div class="field">
<a class="button is-primary"
onClick={exportPdf}>
Exporter PDF
</a>
</div>
<hr />
<label class="label is-size-4">Format JSON</label>
<pre>{ JSON.stringify(project, null, 2) }</pre> <pre>{ JSON.stringify(project, null, 2) }</pre>
<hr /> <hr />
</div> </div>

View File

@ -1,4 +1,4 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h } from "preact";
import { Project } from "../../models/project"; import { Project } from "../../models/project";
import { useProjectEstimations } from "../../hooks/use-project-estimations"; import { useProjectEstimations } from "../../hooks/use-project-estimations";
import { getCurrency, defaults, getTaskCategoryCost, getRoundUpEstimations } from "../../models/params"; import { getCurrency, defaults, getTaskCategoryCost, getRoundUpEstimations } from "../../models/params";
@ -10,34 +10,34 @@ export interface FinancialPreviewProps {
project: Project project: Project
} }
const FinancialPreview: FunctionComponent<FinancialPreviewProps> = ({ project }) => { const FinancialPreview: FunctionalComponent<FinancialPreviewProps> = ({ project }) => {
const estimations = useProjectEstimations(project); const estimations = useProjectEstimations(project);
const costs = getMinMaxCosts(project, estimations.p99); const costs = getMinMaxCosts(project, estimations.p99);
const roundUp = getRoundUpEstimations(project); const roundUp = getRoundUpEstimations(project);
return ( return (
<div className="table-container"> <div class="table-container">
<table className="table is-bordered is-striped is-fullwidth"> <table class="table is-bordered is-striped is-fullwidth">
<thead> <thead>
<tr> <tr>
<th colSpan={2}> <th colSpan={2}>
<span>Prévisionnel financier</span><br /> <span>Prévisionnel financier</span><br />
<span className="is-size-7 has-text-weight-normal">confiance >= 99.7%</span> <span class="is-size-7 has-text-weight-normal">confiance {'>'}= 99.7%</span>
</th> </th>
</tr> </tr>
<tr> <tr>
<th className="is-narrow">Temps</th> <th class="is-narrow">Temps</th>
<th>Coût</th> <th>Coût</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td className="is-narrow">Maximum</td> <td class="is-narrow">Maximum</td>
<td> <td>
<CostDetails project={project} cost={costs.max} roundUp={roundUp} /> <CostDetails project={project} cost={costs.max} roundUp={roundUp} />
</td> </td>
</tr> </tr>
<tr> <tr>
<td className="is-narrow">Minimum</td> <td class="is-narrow">Minimum</td>
<td> <td>
<CostDetails project={project} cost={costs.min} roundUp={roundUp} /> <CostDetails project={project} cost={costs.min} roundUp={roundUp} />
</td> </td>
@ -54,14 +54,14 @@ export interface CostDetailsProps {
roundUp: boolean roundUp: boolean
} }
export const CostDetails:FunctionComponent<CostDetailsProps> = ({ project, cost, roundUp }) => { export const CostDetails:FunctionalComponent<CostDetailsProps> = ({ project, cost, roundUp }) => {
return ( return (
<details> <details>
<summary><strong> <summary><strong>
{cost.totalCost} {getCurrency(project)}</strong> {cost.totalCost} {getCurrency(project)}</strong>
<span className="is-pulled-right">{ roundUp ? Math.ceil(cost.totalTime) : cost.totalTime.toFixed(2) } <ProjectTimeUnit project={project} /></span> <span class="is-pulled-right">{ roundUp ? Math.ceil(cost.totalTime) : cost.totalTime.toFixed(2) } <ProjectTimeUnit project={project} /></span>
</summary> </summary>
<table className={`table is-fullwidth`}> <table class={`table is-fullwidth`}>
<tbody> <tbody>
{ {
Object.keys(cost.details).map(taskCategoryId => { Object.keys(cost.details).map(taskCategoryId => {
@ -69,9 +69,9 @@ export const CostDetails:FunctionComponent<CostDetailsProps> = ({ project, cost,
const details = cost.details[taskCategoryId]; const details = cost.details[taskCategoryId];
return ( return (
<tr key={`task-category-cost-${taskCategory.id}`}> <tr key={`task-category-cost-${taskCategory.id}`}>
<td className={`${style.noBorder} is-size-6`}>{taskCategory.label}</td> <td class={`${style.noBorder} is-size-6`}>{taskCategory.label}</td>
<td className={`${style.noBorder} is-size-6`}>{details.cost} {getCurrency(project)}</td> <td class={`${style.noBorder} is-size-6`}>{details.cost} {getCurrency(project)}</td>
<td className={`${style.noBorder} is-size-6`}>{ roundUp ? Math.ceil(details.time) : details.time.toFixed(2) } <ProjectTimeUnit project={project} /> × {getTaskCategoryCost(taskCategory)} {getCurrency(project)}</td> <td class={`${style.noBorder} is-size-6`}>{ roundUp ? Math.ceil(details.time) : details.time.toFixed(2) } <ProjectTimeUnit project={project} /> × {getTaskCategoryCost(taskCategory)} {getCurrency(project)}</td>
</tr> </tr>
) )
}) })

View File

@ -1,6 +1,7 @@
import React, { FunctionComponent, useEffect } from "react"; import { FunctionalComponent, h } from "preact";
import { useEffect } from "preact/hooks";
import style from "./style.module.css"; import style from "./style.module.css";
import { newProject, Project, sanitize } from "../../models/project"; import { newProject, Project } from "../../models/project";
import { useProjectReducer, updateProjectLabel, patchProject } from "../../hooks/use-project-reducer"; import { useProjectReducer, updateProjectLabel, patchProject } from "../../hooks/use-project-reducer";
import { getProjectStorageKey } from "../../util/storage"; import { getProjectStorageKey } from "../../util/storage";
import { useLocalStorage } from "../../hooks/use-local-storage"; import { useLocalStorage } from "../../hooks/use-local-storage";
@ -10,64 +11,58 @@ import EstimationTab from "./estimation-tab";
import ParamsTab from "./params-tab"; import ParamsTab from "./params-tab";
import ExportTab from "./export-tab"; import ExportTab from "./export-tab";
import { useServerSync } from "../../hooks/use-server-sync"; import { useServerSync } from "../../hooks/use-server-sync";
import { RouteChildrenProps, RouteProps, useParams } from "react-router";
import { useTitle } from "../../hooks/use-title";
export interface ProjectProps { export interface ProjectProps {
projectId: string projectId: string
} }
const Project: FunctionComponent<ProjectProps> = () => { const Project: FunctionalComponent<ProjectProps> = ({ projectId }) => {
const { projectId } = useParams<{ projectId: string }>(); const projectStorageKey = getProjectStorageKey(projectId);
const projectStorageKey = getProjectStorageKey(projectId); const [ storedProject, storeProject ] = useLocalStorage(projectStorageKey, newProject(projectId));
const [ storedProject, storeProject ] = useLocalStorage(projectStorageKey, newProject(projectId)); const [ project, dispatch ] = useProjectReducer(storedProject);
const [ project, dispatch ] = useProjectReducer(sanitize(storedProject));
useServerSync(project, (project: Project) => {
useServerSync(project, (project: Project) => { dispatch(patchProject(project));
sanitize(project) });
dispatch(patchProject(project));
});
const onProjectLabelChange = (projectLabel: string) => {
dispatch(updateProjectLabel(projectLabel));
};
// Save project in local storage on change
useEffect(()=> {
storeProject(project);
}, [project]);
useTitle(project.label ? project.label : "Projet sans nom") const onProjectLabelChange = (projectLabel: string) => {
dispatch(updateProjectLabel(projectLabel));
return ( };
<div className={`container ${style.estimation}`}>
<EditableText // Save project in local storage on change
editIconClass="is-size-4" useEffect(()=> {
render={(value) => (<h2 className="is-size-3">{value}</h2>)} storeProject(project);
onChange={onProjectLabelChange} }, [project]);
value={project.label ? project.label : "Projet sans nom"}
/> return (
<div className={style.tabContainer}> <div class={`container ${style.estimation}`}>
<Tabs items={[ <EditableText
{ editIconClass="is-size-4"
label: 'Estimation', render={(value) => (<h2 class="is-size-3">{value}</h2>)}
icon: '📋', onChange={onProjectLabelChange}
render: () => <EstimationTab project={project} dispatch={dispatch} /> value={project.label ? project.label : "Projet sans nom"} />
}, <div class={style.tabContainer}>
{ <Tabs items={[
label: 'Options avancées', {
icon: '⚙️', label: 'Estimation',
render: () => <ParamsTab project={project} dispatch={dispatch} /> icon: '📋',
}, render: () => <EstimationTab project={project} dispatch={dispatch} />
{ },
label: 'Exporter', {
icon: '↗️', label: 'Options avancées',
render: () => <ExportTab project={project} /> icon: '⚙️',
} render: () => <ParamsTab project={project} dispatch={dispatch} />
]} /> },
</div> {
</div> label: 'Exporter',
); icon: '↗️',
render: () => <ExportTab project={project} />
}
]}
/>
</div>
</div>
);
}; };
export default Project; export default Project;

View File

@ -1,9 +1,10 @@
import React, { FunctionComponent, Fragment, useState, ChangeEvent, MouseEvent } from "react"; import { FunctionalComponent, h, Fragment } from "preact";
import { Project } from "../../models/project"; import { Project } from "../../models/project";
import { ProjectReducerActions, updateParam } from "../../hooks/use-project-reducer"; import { ProjectReducerActions, updateParam } from "../../hooks/use-project-reducer";
import { getRoundUpEstimations, getCurrency, getTimeUnit, getHideFinancialPreviewOnPrint } from "../../models/params"; import { getRoundUpEstimations, getCurrency, getTimeUnit, getHideFinancialPreviewOnPrint } from "../../models/params";
import TaskCategoriesTable from "./task-categories-table"; import TaskCategoriesTable from "./task-categories-table";
import { useHistory } from "react-router"; import { useState } from "preact/hooks";
import { route } from "preact-router";
import { getProjectStorageKey } from "../../util/storage"; import { getProjectStorageKey } from "../../util/storage";
export interface ParamsTabProps { export interface ParamsTabProps {
@ -11,89 +12,88 @@ export interface ParamsTabProps {
dispatch: (action: ProjectReducerActions) => void dispatch: (action: ProjectReducerActions) => void
} }
const ParamsTab: FunctionComponent<ParamsTabProps> = ({ project, dispatch }) => { const ParamsTab: FunctionalComponent<ParamsTabProps> = ({ project, dispatch }) => {
const [ deleteButtonEnabled, setDeleteButtonEnabled ] = useState(false); const [ deleteButtonEnabled, setDeleteButtonEnabled ] = useState(false);
const history = useHistory();
const onEnableDeleteButtonChange = (evt: ChangeEvent) => { const onEnableDeleteButtonChange = (evt: Event) => {
const checked = (evt.currentTarget as HTMLInputElement).checked; const checked = (evt.currentTarget as HTMLInputElement).checked;
setDeleteButtonEnabled(checked); setDeleteButtonEnabled(checked);
} }
const onRoundUpChange = (evt: ChangeEvent) => { const onRoundUpChange = (evt: Event) => {
const checked = (evt.currentTarget as HTMLInputElement).checked; const checked = (evt.currentTarget as HTMLInputElement).checked;
dispatch(updateParam("roundUpEstimations", checked)); dispatch(updateParam("roundUpEstimations", checked));
}; };
const onHideFinancialPreview = (evt: ChangeEvent) => { const onHideFinancialPreview = (evt: Event) => {
const checked = (evt.currentTarget as HTMLInputElement).checked; const checked = (evt.currentTarget as HTMLInputElement).checked;
dispatch(updateParam("hideFinancialPreviewOnPrint", checked)); dispatch(updateParam("hideFinancialPreviewOnPrint", checked));
}; };
const onCurrencyChange = (evt: ChangeEvent) => { const onCurrencyChange = (evt: Event) => {
const value = (evt.currentTarget as HTMLInputElement).value; const value = (evt.currentTarget as HTMLInputElement).value;
dispatch(updateParam("currency", value)); dispatch(updateParam("currency", value));
}; };
const timeUnit = getTimeUnit(project); const timeUnit = getTimeUnit(project);
const onTimeUnitLabelChange = (evt: ChangeEvent) => { const onTimeUnitLabelChange = (evt: Event) => {
const value = (evt.currentTarget as HTMLInputElement).value; const value = (evt.currentTarget as HTMLInputElement).value;
dispatch(updateParam("timeUnit", { ...timeUnit, label: value })); dispatch(updateParam("timeUnit", { ...timeUnit, label: value }));
}; };
const onTimeUnitAcronymChange = (evt: ChangeEvent) => { const onTimeUnitAcronymChange = (evt: Event) => {
const value = (evt.currentTarget as HTMLInputElement).value; const value = (evt.currentTarget as HTMLInputElement).value;
dispatch(updateParam("timeUnit", { ...timeUnit, acronym: value })); dispatch(updateParam("timeUnit", { ...timeUnit, acronym: value }));
}; };
const onDeleteProjectClick = (evt: MouseEvent) => { const onDeleteProjectClick = (evt: Event) => {
const projectStorageKey = getProjectStorageKey(project.id); const projectStorageKey = getProjectStorageKey(project.id);
window.localStorage.removeItem(projectStorageKey); window.localStorage.removeItem(projectStorageKey);
history.push('/'); route('/');
}; };
return ( return (
<Fragment> <Fragment>
<label className="label is-size-5">Impression</label> <label class="label is-size-5">Export PDF</label>
<div className="field"> <div class="field">
<input type="checkbox" <input type="checkbox"
id="hideFinancialPreview" id="hideFinancialPreview"
name="hideFinancialPreview" name="hideFinancialPreview"
className="switch" class="switch"
onChange={onHideFinancialPreview} onChange={onHideFinancialPreview}
checked={getHideFinancialPreviewOnPrint(project)} /> checked={getHideFinancialPreviewOnPrint(project)} />
<label htmlFor="hideFinancialPreview">Cacher le prévisionnel financier lors de l'impression</label> <label for="hideFinancialPreview">Cacher le prévisionnel financier lors de l'export PDF</label>
</div> </div>
<hr /> <hr />
<div className="field"> <div class="field">
<label className="label is-size-5">Unité de temps</label> <label class="label is-size-5">Unité de temps</label>
<div className="control"> <div class="control">
<input className="input" type="text" <input class="input" type="text"
onChange={onTimeUnitLabelChange} onChange={onTimeUnitLabelChange}
value={timeUnit.label} /> value={timeUnit.label} />
</div> </div>
<label className="label is-size-6">Acronyme</label> <label class="label is-size-6">Acronyme</label>
<div className="control"> <div class="control">
<input className="input" type="text" <input class="input" type="text"
onChange={onTimeUnitAcronymChange} onChange={onTimeUnitAcronymChange}
value={timeUnit.acronym} /> value={timeUnit.acronym} />
</div> </div>
</div> </div>
<div className="field"> <div class="field">
<input type="checkbox" <input type="checkbox"
id="roundUpEstimations" id="roundUpEstimations"
name="roundUpEstimations" name="roundUpEstimations"
className="switch" class="switch"
onChange={onRoundUpChange} onChange={onRoundUpChange}
checked={getRoundUpEstimations(project)} /> checked={getRoundUpEstimations(project)} />
<label htmlFor="roundUpEstimations">Arrondir les estimations de temps à l'entier supérieur</label> <label for="roundUpEstimations">Arrondir les estimations de temps à l'entier supérieur</label>
</div> </div>
<hr /> <hr />
<div className="field"> <div class="field">
<label className="label is-size-5">Devise</label> <label class="label is-size-5">Devise</label>
<div className="control"> <div class="control">
<input className="input" type="text" <input class="input" type="text"
onChange={onCurrencyChange} onChange={onCurrencyChange}
value={getCurrency(project)} /> value={getCurrency(project)} />
</div> </div>
@ -102,17 +102,17 @@ const ParamsTab: FunctionComponent<ParamsTabProps> = ({ project, dispatch }) =>
<TaskCategoriesTable project={project} dispatch={dispatch} /> <TaskCategoriesTable project={project} dispatch={dispatch} />
<hr /> <hr />
<div> <div>
<label className="label is-size-5">Supprimer le projet</label> <label class="label is-size-5">Supprimer le projet</label>
<div className="field"> <div class="field">
<input type="checkbox" <input type="checkbox"
id="enableDeleteButton" id="enableDeleteButton"
name="enableDeleteButton" name="enableDeleteButton"
className="switch is-warning" class="switch is-warning"
onChange={onEnableDeleteButtonChange} onChange={onEnableDeleteButtonChange}
checked={deleteButtonEnabled} /> checked={deleteButtonEnabled} />
<label htmlFor="enableDeleteButton">Supprimer ce projet ?</label> <label for="enableDeleteButton">Supprimer ce projet ?</label>
</div> </div>
<button className="button is-danger" <button class="button is-danger"
onClick={onDeleteProjectClick} onClick={onDeleteProjectClick}
disabled={!deleteButtonEnabled}> disabled={!deleteButtonEnabled}>
🗑 Supprimer 🗑 Supprimer

View File

@ -1,16 +1,19 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h } from "preact";
import { Project } from "../../models/project"; import { Project } from "../../models/project";
import { getTaskCategoriesMeanRepartition } from "../../util/stat"; import { useProjectEstimations } from "../../hooks/use-project-estimations";
import { getCurrency, getRoundUpEstimations } from "../../models/params";
import ProjectTimeUnit from "../../components/project-time-unit";
import { getTaskCategoryWeightedMean, getProjectWeightedMean, getTaskCategoriesMeanRepartition } from "../../util/stat";
export interface RepartitionPreviewProps { export interface RepartitionPreviewProps {
project: Project project: Project
} }
const RepartitionPreview: FunctionComponent<RepartitionPreviewProps> = ({ project }) => { const RepartitionPreview: FunctionalComponent<RepartitionPreviewProps> = ({ project }) => {
const repartition = getTaskCategoriesMeanRepartition(project); const repartition = getTaskCategoriesMeanRepartition(project);
return ( return (
<div className="table-container"> <div class="table-container">
<table className="table is-bordered is-striped is-fullwidth"> <table class="table is-bordered is-striped is-fullwidth">
<thead> <thead>
<tr> <tr>
<th colSpan={2}>Répartition moyenne</th> <th colSpan={2}>Répartition moyenne</th>

View File

@ -1,4 +1,4 @@
declare namespace StyleModuleCssModule { declare namespace StyleModuleCssNamespace {
export interface IStyleModuleCss { export interface IStyleModuleCss {
estimation: string; estimation: string;
mainColumn: string; mainColumn: string;
@ -9,9 +9,9 @@ declare namespace StyleModuleCssModule {
} }
} }
declare const StyleModuleCssModule: StyleModuleCssModule.IStyleModuleCss & { declare const StyleModuleCssModule: StyleModuleCssNamespace.IStyleModuleCss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */ /** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: StyleModuleCssModule.IStyleModuleCss; locals: StyleModuleCssNamespace.IStyleModuleCss;
}; };
export = StyleModuleCssModule; export = StyleModuleCssModule;

View File

@ -1,17 +1,18 @@
import React, { FunctionComponent, useState, MouseEvent, ChangeEvent } from "react"; import { FunctionalComponent, h } from "preact";
import { Project } from "../../models/project"; import { Project } from "../../models/project";
import style from './style.module.css'; import style from './style.module.css';
import { ProjectReducerActions, updateTaskCategoryCost, updateTaskCategoryLabel, removeTaskCategory, addTaskCategory } from "../../hooks/use-project-reducer"; import { ProjectReducerActions, updateTaskCategoryCost, updateTaskCategoryLabel, removeTaskCategory, addTaskCategory } from "../../hooks/use-project-reducer";
import EditableText from "../../components/editable-text"; import EditableText from "../../components/editable-text";
import { TaskCategoryID, createTaskCategory } from "../../models/task"; import { TaskCategoryID, createTaskCategory } from "../../models/task";
import { getCurrency, getTaskCategoryCost } from "../../models/params"; import { getCurrency, getTaskCategoryCost } from "../../models/params";
import { useState } from "preact/hooks";
export interface TaskCategoriesTableProps { export interface TaskCategoriesTableProps {
project: Project project: Project
dispatch: (action: ProjectReducerActions) => void dispatch: (action: ProjectReducerActions) => void
} }
const TaskCategoriesTable: FunctionComponent<TaskCategoriesTableProps> = ({ project, dispatch }) => { const TaskCategoriesTable: FunctionalComponent<TaskCategoriesTableProps> = ({ project, dispatch }) => {
const [ newTaskCategory, setNewTaskCategory ] = useState(createTaskCategory()); const [ newTaskCategory, setNewTaskCategory ] = useState(createTaskCategory());
const onTaskCategoryRemove = (categoryId: TaskCategoryID) => { const onTaskCategoryRemove = (categoryId: TaskCategoryID) => {
@ -27,28 +28,28 @@ const TaskCategoriesTable: FunctionComponent<TaskCategoriesTableProps> = ({ proj
dispatch(updateTaskCategoryCost(categoryId, cost)); dispatch(updateTaskCategoryCost(categoryId, cost));
}; };
const onNewTaskCategoryCostChange = (evt: ChangeEvent) => { const onNewTaskCategoryCostChange = (evt: Event) => {
const costPerTimeUnit = parseFloat((evt.currentTarget as HTMLInputElement).value); const costPerTimeUnit = parseFloat((evt.currentTarget as HTMLInputElement).value);
setNewTaskCategory(newTaskCategory => ({ ...newTaskCategory, costPerTimeUnit })); setNewTaskCategory(newTaskCategory => ({ ...newTaskCategory, costPerTimeUnit }));
}; };
const onNewTaskCategoryLabelChange = (evt: ChangeEvent) => { const onNewTaskCategoryLabelChange = (evt: Event) => {
const label = (evt.currentTarget as HTMLInputElement).value; const label = (evt.currentTarget as HTMLInputElement).value;
setNewTaskCategory(newTaskCategory => ({ ...newTaskCategory, label })); setNewTaskCategory(newTaskCategory => ({ ...newTaskCategory, label }));
}; };
const onNewTaskCategoryAddClick = (evt: MouseEvent) => { const onNewTaskCategoryAddClick = (evt: Event) => {
dispatch(addTaskCategory(newTaskCategory)); dispatch(addTaskCategory(newTaskCategory));
setNewTaskCategory(createTaskCategory()); setNewTaskCategory(createTaskCategory());
}; };
return ( return (
<div className="table-container"> <div class="table-container">
<label className="label is-size-5">Catégories de tâche</label> <label class="label is-size-5">Catégories de tâche</label>
<table className={`table is-bordered is-striped" ${style.middleTable}`}> <table class={`table is-bordered is-striped" ${style.middleTable}`}>
<thead> <thead>
<tr> <tr>
<th className={`${style.noBorder} is-narrow`}></th> <th class={`${style.noBorder} is-narrow`}></th>
<th>Catégorie</th> <th>Catégorie</th>
<th>Coût par unité de temps</th> <th>Coût par unité de temps</th>
</tr> </tr>
@ -61,7 +62,7 @@ const TaskCategoriesTable: FunctionComponent<TaskCategoriesTableProps> = ({ proj
<td> <td>
<button <button
onClick={onTaskCategoryRemove.bind(null, tc.id)} onClick={onTaskCategoryRemove.bind(null, tc.id)}
className="button is-danger is-small is-outlined"> class="button is-danger is-small is-outlined">
🗑 🗑
</button> </button>
</td> </td>
@ -81,22 +82,22 @@ const TaskCategoriesTable: FunctionComponent<TaskCategoriesTableProps> = ({ proj
</tbody> </tbody>
<tfoot> <tfoot>
<tr> <tr>
<td className={`${style.noBorder}`}></td> <td class={`${style.noBorder}`}></td>
<td colSpan={2}> <td colSpan={2}>
<div className="field has-addons"> <div class="field has-addons">
<p className="control is-expanded"> <p class="control is-expanded">
<input className="input" type="text" placeholder="Nouvelle catégorie" <input class="input" type="text" placeholder="Nouvelle catégorie"
value={newTaskCategory.label} onChange={onNewTaskCategoryLabelChange} /> value={newTaskCategory.label} onChange={onNewTaskCategoryLabelChange} />
</p> </p>
<p className="control"> <p class="control">
<input className="input" type="number" <input class="input" type="number"
value={newTaskCategory.costPerTimeUnit} onChange={onNewTaskCategoryCostChange} /> value={newTaskCategory.costPerTimeUnit} onChange={onNewTaskCategoryCostChange} />
</p> </p>
<p className="control"> <p class="control">
<a className="button is-static">{getCurrency(project)}</a> <a class="button is-static">{getCurrency(project)}</a>
</p> </p>
<p className="control"> <p class="control">
<a className="button is-primary" onClick={onNewTaskCategoryAddClick}> <a class="button is-primary" onClick={onNewTaskCategoryAddClick}>
Ajouter Ajouter
</a> </a>
</p> </p>

View File

@ -1,258 +1,218 @@
import React, { FunctionComponent, useState, useEffect, ChangeEvent, MouseEvent, useCallback } from "react"; import { FunctionalComponent, h } from "preact";
import { useState, useEffect } from "preact/hooks";
import style from "./style.module.css"; import style from "./style.module.css";
import { Project } from "../../models/project"; import { Project } from "../../models/project";
import { newTask, Task, TaskID, EstimationConfidence } from "../../models/task"; import { newTask, Task, TaskID, EstimationConfidence } from "../../models/task";
import EditableText from "../../components/editable-text"; import EditableText from "../../components/editable-text";
import { usePrintMediaQuery } from "../../hooks/use-media-query"; import { usePrintMediaQuery } from "../../hooks/use-media-query";
import { defaults, getTimeUnit } from "../../models/params";
import ProjectTimeUnit from "../../components/project-time-unit"; import ProjectTimeUnit from "../../components/project-time-unit";
import { useSort } from "../../hooks/useSort";
export interface TaskTableProps { export interface TaskTableProps {
project: Project project: Project
onTaskAdd: (task: Task) => void onTaskAdd?: (task: Task) => void
onTaskRemove: (taskId: TaskID) => void onTaskRemove?: (taskId: TaskID) => void
onEstimationChange: (taskId: TaskID, confidence: EstimationConfidence, value: number) => void onEstimationChange?: (taskId: TaskID, confidence: EstimationConfidence, value: number) => void
onTaskLabelUpdate: (taskId: TaskID, label: string) => void onTaskLabelUpdate?: (taskId: TaskID, label: string) => void
onTaskMove: (taskId: TaskID, move: number) => void readonly?: boolean;
} }
export type EstimationTotals = { [confidence in EstimationConfidence]: number } export type EstimationTotals = { [confidence in EstimationConfidence]: number }
const TaskTable: FunctionComponent<TaskTableProps> = ({ project, onTaskAdd, onEstimationChange, onTaskRemove, onTaskLabelUpdate, onTaskMove }) => { const TaskTable: FunctionalComponent<TaskTableProps> = ({ project, onTaskAdd, onEstimationChange, onTaskRemove, onTaskLabelUpdate, readonly }) => {
const defaultTaskCategory = Object.keys(project.params.taskCategories)[0];
const [ task, setTask ] = useState(newTask("", defaultTaskCategory));
const [ totals, setTotals ] = useState({
[EstimationConfidence.Optimistic]: 0,
[EstimationConfidence.Likely]: 0,
[EstimationConfidence.Pessimistic]: 0,
} as EstimationTotals);
const defaultTaskCategory = Object.keys(project.params.taskCategories)[0]; const isPrint = usePrintMediaQuery();
const [task, setTask] = useState(newTask("", defaultTaskCategory));
const [totals, setTotals] = useState({
[EstimationConfidence.Optimistic]: 0,
[EstimationConfidence.Likely]: 0,
[EstimationConfidence.Pessimistic]: 0,
} as EstimationTotals);
const [tasks, setTasks] = useState<Task[]>([]) useEffect(() => {
useEffect(() => { let optimistic = 0;
setTasks(Object.values(project.tasks)) let likely = 0;
}, [project.tasks]) let pessimistic = 0;
const sortTask = useCallback((a: Task, b: Task) => { Object.values(project.tasks).forEach(t => {
const aIndex = (project.ordering ?? []).findIndex(taskId => a.id === taskId) optimistic += t.estimations.optimistic;
const bIndex = (project.ordering ?? []).findIndex(taskId => b.id === taskId) likely += t.estimations.likely;
return aIndex - bIndex; pessimistic += t.estimations.pessimistic;
}, [project.ordering]) });
const sorted = useSort(tasks, sortTask) setTotals({ optimistic, likely, pessimistic });
}, [project.tasks]);
const [ activeTaskActions, setActiveTaskActions ] = useState<string|null>(null); const onNewTaskLabelChange = (evt: Event) => {
const value = (evt.currentTarget as HTMLInputElement).value;
setTask({...task, label: value});
};
const isPrint = usePrintMediaQuery(); const onNewTaskCategoryChange = (evt: Event) => {
const value = (evt.currentTarget as HTMLInputElement).value;
setTask({...task, category: value});
};
useEffect(() => { const onTaskLabelChange = (taskId: TaskID, value: string) => {
let optimistic = 0; if(onTaskLabelUpdate){
let likely = 0; onTaskLabelUpdate(taskId, value);
let pessimistic = 0; }
};
Object.values(project.tasks).forEach(t => { const onAddTaskClick = (evt: Event) => {
optimistic += t.estimations.optimistic; if(onTaskAdd){
likely += t.estimations.likely; onTaskAdd(task);
pessimistic += t.estimations.pessimistic; setTask(newTask("", defaultTaskCategory));
}); }
};
setTotals({ optimistic, likely, pessimistic }); const onTaskRemoveClick = (taskId: TaskID, evt: Event) => {
}, [project.tasks]); if(onTaskRemove){
onTaskRemove(taskId);
}
};
const toggleActiveTaskAction = useCallback((evt: MouseEvent<HTMLButtonElement>) => { const withEstimationChange = (confidence: EstimationConfidence, taskID: TaskID, evt: Event) => {
const taskId = evt.currentTarget.dataset.taskId; const textValue = (evt.currentTarget as HTMLInputElement).value;
if (!taskId) return const value = parseFloat(textValue);
setActiveTaskActions(activeTaskActions === taskId ? null : taskId) if(onEstimationChange){
}, [activeTaskActions]) onEstimationChange(taskID, confidence, value);
}
};
const onNewTaskLabelChange = (evt: ChangeEvent) => { const onOptimisticChange = withEstimationChange.bind(null, EstimationConfidence.Optimistic);
const value = (evt.currentTarget as HTMLInputElement).value; const onLikelyChange = withEstimationChange.bind(null, EstimationConfidence.Likely);
setTask({ ...task, label: value }); const onPessimisticChange = withEstimationChange.bind(null, EstimationConfidence.Pessimistic);
};
const onNewTaskCategoryChange = (evt: ChangeEvent) => { return (
const value = (evt.currentTarget as HTMLInputElement).value; <div class="table-container">
setTask({ ...task, category: value }); <table class={`table is-bordered is-striped is-hoverable is-fullwidth ${style.middleTable}`}>
}; <thead>
<tr>
const onTaskLabelChange = (taskId: TaskID, value: string) => { {
onTaskLabelUpdate(taskId, value); readonly ? '' :
}; <th class={`${style.noBorder} noPrint`} rowSpan={2}></th>
}
const onAddTaskClick = (evt: MouseEvent) => { <th class={style.mainColumn} rowSpan={2}>Tâche</th>
onTaskAdd(task); <th rowSpan={2}>Catégorie</th>
setTask(newTask("", defaultTaskCategory)); <th colSpan={3}>Estimation (en <ProjectTimeUnit project={project} />)</th>
}; </tr>
<tr>
const onTaskRemoveClick = useCallback((evt: MouseEvent<HTMLAnchorElement>) => { <th>Optimiste</th>
const taskId = evt.currentTarget.dataset.taskId; <th>Probable</th>
if (!taskId) return <th>Pessimiste</th>
onTaskRemove(taskId); </tr>
}, []); </thead>
<tbody>
const onTaskMoveUpClick = useCallback((evt: MouseEvent<HTMLAnchorElement>) => {
const taskId = evt.currentTarget.dataset.taskId;
if (!taskId) return
onTaskMove(taskId, -1);
}, []);
const onTaskMoveDownClick = useCallback((evt: MouseEvent<HTMLAnchorElement>) => {
const taskId = evt.currentTarget.dataset.taskId;
if (!taskId) return
onTaskMove(taskId, +1);
}, []);
const withEstimationChange = (confidence: EstimationConfidence, taskID: TaskID, evt: ChangeEvent) => {
const textValue = (evt.currentTarget as HTMLInputElement).value;
const value = parseFloat(textValue);
onEstimationChange(taskID, confidence, value);
};
const onOptimisticChange = withEstimationChange.bind(null, EstimationConfidence.Optimistic);
const onLikelyChange = withEstimationChange.bind(null, EstimationConfidence.Likely);
const onPessimisticChange = withEstimationChange.bind(null, EstimationConfidence.Pessimistic);
return (
<div className="table-container">
<table className={`table is-bordered is-striped is-hoverable is-fullwidth ${style.middleTable}`}>
<thead>
<tr>
<th className={`${style.noBorder} noPrint`} rowSpan={2}></th>
<th className={style.mainColumn} rowSpan={2}>Tâche</th>
<th rowSpan={2}>Catégorie</th>
<th colSpan={3}>Estimation (en <ProjectTimeUnit project={project} />)</th>
</tr>
<tr>
<th>Optimiste</th>
<th>Probable</th>
<th>Pessimiste</th>
</tr>
</thead>
<tbody>
{
sorted.map(t => {
const category = project.params.taskCategories[t.category];
const categoryLabel = category ? category.label : '???';
return (
<tr key={`taks-${t.id}`}>
<td className={`is-narrow noPrint`}>
<div className={`dropdown ${activeTaskActions === t.id ? 'is-active' : ''}`}>
<div className="dropdown-trigger">
<button onClick={toggleActiveTaskAction} data-task-id={t.id} className={`button is-small is-outlined ${activeTaskActions === t.id ? 'is-active' : ''}`} aria-haspopup="true" aria-controls="dropdown-menu">
<span></span>
</button>
</div>
<div className="dropdown-menu" id="dropdown-menu" role="menu">
<div className="dropdown-content">
<a className="dropdown-item" data-task-id={t.id} onClick={onTaskMoveUpClick}>
Monter
</a>
<a href="#" className="dropdown-item" data-task-id={t.id} onClick={onTaskMoveDownClick}>
Descendre
</a>
<a className="dropdown-item" onClick={onTaskRemoveClick} data-task-id={t.id}>
<span className="has-text-danger">🗑 Supprimer</span>
</a>
</div>
</div>
</div>
</td>
<td className={style.mainColumn}>
<EditableText
render={(value) => (<span>{value}</span>)}
onChange={onTaskLabelChange.bind(null, t.id)}
value={t.label} />
</td>
<td>{categoryLabel}</td>
<td>
{ {
isPrint ? Object.values(project.tasks).map(t => {
<span>{t.estimations.optimistic}</span> : const category = project.params.taskCategories[t.category];
<input const categoryLabel = category ? category.label : '???';
className="input" type="number" return (
value={t.estimations.optimistic} <tr key={`taks-${t.id}`}>
min={0} {
onChange={onOptimisticChange.bind(null, t.id)} /> readonly ? '' :
} <td class={`is-narrow noPrint`}>
</td> <button
<td> onClick={onTaskRemoveClick.bind(null, t.id)}
{ class="button is-danger is-small is-outlined">
isPrint ? 🗑
<span>{t.estimations.likely}</span> : </button>
<input </td>
className={`input ${t.estimations.likely < t.estimations.optimistic ? 'is-danger' : ''}`} }
type="number" <td class={style.mainColumn}>
value={t.estimations.likely} <EditableText
min={0} render={(value) => (<span>{value}</span>)}
onChange={onLikelyChange.bind(null, t.id)} /> onChange={onTaskLabelChange.bind(null, t.id)}
} value={t.label} />
</td> </td>
<td> <td>{ categoryLabel }</td>
{ <td>
isPrint ? {
<span>{t.estimations.pessimistic}</span> : readonly ?
<input <span>{t.estimations.optimistic}</span> :
className={`input ${t.estimations.pessimistic < t.estimations.likely ? 'is-danger' : ''}`} <input class="input" type="number" value={t.estimations.optimistic}
type="number" min={0}
value={t.estimations.pessimistic} onChange={onOptimisticChange.bind(null, t.id)} />
min={0} }
onChange={onPessimisticChange.bind(null, t.id)} /> </td>
} <td>
</td> {
</tr> readonly ?
) <span>{t.estimations.likely}</span> :
}) <input class="input" type="number" value={t.estimations.likely}
} min={0}
{ onChange={onLikelyChange.bind(null, t.id)} />
Object.keys(project.tasks).length === 0 ? }
<tr> </td>
<td className={`${style.noBorder} noPrint`}></td> <td>
<td className={style.noTasks} colSpan={5}>Aucune tâche pour l'instant.</td> {
</tr> : readonly ?
null <span>{t.estimations.pessimistic}</span> :
} <input class="input" type="number" value={t.estimations.pessimistic}
</tbody> min={0}
<tfoot> onChange={onPessimisticChange.bind(null, t.id)} />
<tr> }
<td className={`${style.noBorder} noPrint`}></td> </td>
<td colSpan={2} className={isPrint ? style.noBorder : ''}> </tr>
<div className="field has-addons noPrint"> )
<p className="control is-expanded">
<input className="input" type="text" placeholder="Nouvelle tâche"
value={task.label} onChange={onNewTaskLabelChange} />
</p>
<p className="control">
<span className="select">
<select onChange={onNewTaskCategoryChange} value={task.category}>
{
Object.values(project.params.taskCategories).map(tc => {
return (
<option key={`task-category-${tc.id}`} value={tc.id}>{tc.label}</option>
);
}) })
} }
</select> {
</span> Object.keys(project.tasks).length === 0 ?
</p> <tr>
<p className="control"> <td class={`${style.noBorder} noPrint`}></td>
<a className="button is-primary" onClick={onAddTaskClick}> <td class={style.noTasks} colSpan={5}>Aucune tâche pour l'instant.</td>
Ajouter </tr> :
</a> null
</p> }
</div> </tbody>
</td> <tfoot>
<th colSpan={3}>Total</th> <tr>
</tr> <td class={`${style.noBorder} noPrint`}></td>
<tr> <td colSpan={readonly ? 1 : 2} class={readonly ? style.noBorder : ''}>
<td colSpan={isPrint ? 2 : 3} className={style.noBorder}></td> {
<td>{totals.optimistic} <ProjectTimeUnit project={project} /></td> readonly ? '' :
<td>{totals.likely} <ProjectTimeUnit project={project} /></td> <div class="field has-addons noPrint">
<td>{totals.pessimistic} <ProjectTimeUnit project={project} /></td> <p class="control is-expanded">
</tr> <input class="input" type="text" placeholder="Nouvelle tâche"
</tfoot> value={task.label} onChange={onNewTaskLabelChange} />
</table> </p>
</div> <p class="control">
); <span class="select">
<select onChange={onNewTaskCategoryChange} value={task.category}>
{
Object.values(project.params.taskCategories).map(tc => {
return (
<option key={`task-category-${tc.id}`} value={tc.id}>{tc.label}</option>
);
})
}
</select>
</span>
</p>
<p class="control">
<a class="button is-primary" onClick={onAddTaskClick}>
Ajouter
</a>
</p>
</div>
}
</td>
<th colSpan={3}>Total</th>
</tr>
<tr>
<td colSpan={readonly ? 2 : 3} class={style.noBorder}></td>
<td>{totals.optimistic} <ProjectTimeUnit project={project} /></td>
<td>{totals.likely} <ProjectTimeUnit project={project} /></td>
<td>{totals.pessimistic} <ProjectTimeUnit project={project} /></td>
</tr>
</tfoot>
</table>
</div>
);
}; };
export default TaskTable; export default TaskTable;

View File

@ -1,4 +1,4 @@
import React, { FunctionComponent } from "react"; import { FunctionalComponent, h, Fragment } from "preact";
import { Project } from "../../models/project"; import { Project } from "../../models/project";
import { useProjectEstimations, Estimation } from "../../hooks/use-project-estimations"; import { useProjectEstimations, Estimation } from "../../hooks/use-project-estimations";
import EstimationRange from "../../components/estimation-range"; import EstimationRange from "../../components/estimation-range";
@ -7,38 +7,38 @@ export interface TimePreviewProps {
project: Project project: Project
} }
const TimePreview: FunctionComponent<TimePreviewProps> = ({ project }) => { const TimePreview: FunctionalComponent<TimePreviewProps> = ({ project }) => {
const estimations = useProjectEstimations(project); const estimations = useProjectEstimations(project);
return ( return (
<div className="table-container"> <div class="table-container">
<table className="table is-bordered is-striped is-fullwidth"> <table class="table is-bordered is-striped is-fullwidth">
<thead> <thead>
<tr> <tr>
<th colSpan={2}>Prévisionnel temps</th> <th colSpan={2}>Prévisionnel temps</th>
</tr> </tr>
<tr> <tr>
<th className="is-narrow">Confiance</th> <th class="is-narrow">Confiance</th>
<th>Estimation</th> <th>Estimation</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td className="is-narrow">>= 99.7%</td> <td class="is-narrow">{'>'}= 99.7%</td>
<td><EstimationRange project={project} estimation={estimations.p99} /></td> <td><EstimationRange project={project} estimation={estimations.p99} /></td>
</tr> </tr>
<tr> <tr>
<td className="is-narrow">>= 90%</td> <td class="is-narrow">{'>'}= 90%</td>
<td><EstimationRange project={project} estimation={estimations.p90} /></td> <td><EstimationRange project={project} estimation={estimations.p90} /></td>
</tr> </tr>
<tr> <tr>
<td className="is-narrow">>= 68%</td> <td class="is-narrow">{'>'}= 68%</td>
<td><EstimationRange project={project} estimation={estimations.p68} /></td> <td><EstimationRange project={project} estimation={estimations.p68} /></td>
</tr> </tr>
</tbody> </tbody>
<tfoot className="noPrint"> <tfoot class="noPrint">
<tr> <tr>
<td colSpan={2}> <td colSpan={2}>
<a className="is-small is-pulled-right" href="https://en.wikipedia.org/wiki/Three-point_estimation" target="_blank"> Estimation à 3 points</a> <a class="is-small is-pulled-right" href="https://en.wikipedia.org/wiki/Three-point_estimation" target="_blank"> Estimation à 3 points</a>
</td> </td>
</tr> </tr>
</tfoot> </tfoot>

View File

@ -1,20 +0,0 @@
export function asDate (d: Date|string): Date {
if (typeof d === 'string') return new Date(d)
if (d instanceof Date) return d
throw new Error(`Unexpected date value '${JSON.stringify(d)}' !`)
}
const intl = Intl.DateTimeFormat(navigator.language, {
weekday: 'long',
month: 'short',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
second: 'numeric'
})
export function formatDate (d: Date|string): string {
d = asDate(d)
return intl.format(d)
}

View File

@ -1,3 +1,4 @@
import { useState } from "preact/hooks/src";
import { ProjectID } from "../models/project"; import { ProjectID } from "../models/project";
export const ProjectStorageKeyPrefix = "project-"; export const ProjectStorageKeyPrefix = "project-";

View File

@ -6,6 +6,7 @@
"moduleResolution": "node", "moduleResolution": "node",
"jsx": "react", "jsx": "react",
"jsxFactory": "h",
"strict": true, "strict": true,
"allowSyntheticDefaultImports": true "allowSyntheticDefaultImports": true

View File

@ -11,14 +11,13 @@ module.exports = {
entry: [ entry: [
path.join(__dirname, './src/index.js') path.join(__dirname, './src/index.js')
], ],
devtool: env.NODE_ENV === 'production' ? 'source-map' : 'eval',
output: { output: {
path: path.join(__dirname, 'dist'), path: path.join(__dirname, 'dist'),
filename: '[name].[hash].js', filename: '[name].[hash].js',
publicPath: '/' publicPath: '/'
}, },
resolve: { resolve: {
extensions: [".ts", ".tsx", ".js", ".jsx"] extensions: [".ts", ".tsx", ".js", ".jsx"],
}, },
devServer: { devServer: {
compress: true, compress: true,
@ -28,6 +27,9 @@ module.exports = {
proxy: { proxy: {
'/api': { '/api': {
target: 'http://127.0.0.1:8081', target: 'http://127.0.0.1:8081',
},
'/export': {
target: 'http://127.0.0.1:8081',
} }
} }
}, },
@ -64,7 +66,7 @@ module.exports = {
plugins: [ plugins: [
new ForkTsCheckerWebpackPlugin(), new ForkTsCheckerWebpackPlugin(),
new HtmlWebpackPlugin({ new HtmlWebpackPlugin({
title: '⏱️ Guesstimate', title: 'Guesstimate',
scriptLoading: 'defer', scriptLoading: 'defer',
template: path.join(__dirname, 'src/index.html') template: path.join(__dirname, 'src/index.html')
@ -77,6 +79,7 @@ module.exports = {
}), }),
new webpack.DefinePlugin({ new webpack.DefinePlugin({
__BUILD__: JSON.stringify({ __BUILD__: JSON.stringify({
version: getCurrentVersion(),
gitRef: getCurrentGitRef(), gitRef: getCurrentGitRef(),
buildDate: new Date(), buildDate: new Date(),
}) })
@ -84,6 +87,14 @@ module.exports = {
] ]
}; };
function getCurrentVersion() {
let version
try {
version = exec("git describe --abbrev=0 2>/dev/null")
} catch(err) {}
return version ? version : "0.0.0";
}
function getCurrentGitRef() { function getCurrentGitRef() {
return exec("git log -n 1 --pretty='format:%h'").toString() return exec("git log -n 1 --pretty='format:%h'").toString()
} }

View File

@ -24,6 +24,7 @@ function build {
echo "building $dirname..." echo "building $dirname..."
CGO_ENABLED=0 GOOS="$os" GOARCH="$arch" go build \ CGO_ENABLED=0 GOOS="$os" GOARCH="$arch" go build \
-mod=vendor \
-ldflags="-s -w -X 'main.GitRef=$(current_commit_ref)' -X 'main.ProjectVersion=$(current_version)' -X 'main.BuildDate=$(current_date)'" \ -ldflags="-s -w -X 'main.GitRef=$(current_commit_ref)' -X 'main.ProjectVersion=$(current_version)' -X 'main.BuildDate=$(current_date)'" \
-gcflags=-trimpath="${PWD}" \ -gcflags=-trimpath="${PWD}" \
-asmflags=-trimpath="${PWD}" \ -asmflags=-trimpath="${PWD}" \
@ -40,7 +41,7 @@ function current_commit_ref {
} }
function current_version { function current_version {
local latest_tag=$(git describe --always 2>/dev/null) local latest_tag=$(git describe --abbrev=0 2>/dev/null)
echo ${latest_tag:-0.0.0} echo ${latest_tag:-0.0.0}
} }

View File

@ -1,24 +1,19 @@
module forge.cadoles.com/wpetit/guesstimate module forge.cadoles.com/wpetit/guesstimate
go 1.19 go 1.14
require ( require (
github.com/SebastiaanKlippert/go-wkhtmltopdf v1.5.0
github.com/asdine/storm/v3 v3.1.1 github.com/asdine/storm/v3 v3.1.1
github.com/caarlos0/env/v6 v6.2.1 github.com/caarlos0/env/v6 v6.2.1
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-chi/chi v4.1.1+incompatible github.com/go-chi/chi v4.1.1+incompatible
github.com/gorilla/websocket v1.4.2 // indirect
github.com/pkg/errors v0.9.1 github.com/pkg/errors v0.9.1
gitlab.com/wpetit/goweb v0.0.0-20200418152305-76dea96a46ce gitlab.com/wpetit/goweb v0.0.0-20200418152305-76dea96a46ce
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect
gopkg.in/evanphx/json-patch.v4 v4.5.0 gopkg.in/evanphx/json-patch.v4 v4.5.0
gopkg.in/yaml.v2 v2.4.0 gopkg.in/yaml.v2 v2.2.8
) )
require ( // replace gitlab.com/wpetit/goweb => ../goweb
github.com/golang/protobuf v1.3.4 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/stretchr/testify v1.7.1-0.20210427113832-6241f9ab9942 // indirect
go.etcd.io/bbolt v1.3.4 // indirect
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

View File

@ -1,3 +1,4 @@
cdr.dev/slog v1.3.0 h1:MYN1BChIaVEGxdS7I5cpdyMC0+WfJfK8BETAfzfLUGQ=
cdr.dev/slog v1.3.0/go.mod h1:C5OL99WyuOK8YHZdYY57dAPN1jK2WJlCdq2VP6xeQns= cdr.dev/slog v1.3.0/go.mod h1:C5OL99WyuOK8YHZdYY57dAPN1jK2WJlCdq2VP6xeQns=
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
@ -18,10 +19,13 @@ github.com/DataDog/zstd v1.4.1 h1:3oxKN3wbHibqx897utPC2LTQU4J+IHWWJO+glkAkpFM=
github.com/DataDog/zstd v1.4.1/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.1/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo=
github.com/GeertJohan/go.incremental v1.0.0/go.mod h1:6fAjUhbVuX1KcMD3c8TEgVUqmo4seqhv0i0kdATSkM0= github.com/GeertJohan/go.incremental v1.0.0/go.mod h1:6fAjUhbVuX1KcMD3c8TEgVUqmo4seqhv0i0kdATSkM0=
github.com/GeertJohan/go.rice v1.0.0/go.mod h1:eH6gbSOAUv07dQuZVnBmoDP8mgsM1rtixis4Tib9if0= github.com/GeertJohan/go.rice v1.0.0/go.mod h1:eH6gbSOAUv07dQuZVnBmoDP8mgsM1rtixis4Tib9if0=
github.com/SebastiaanKlippert/go-wkhtmltopdf v1.5.0 h1:KNMkSqhko6c7eVncl/laVCS95jRryULVhVwwL0VynnU=
github.com/SebastiaanKlippert/go-wkhtmltopdf v1.5.0/go.mod h1:zRBvVJtIfhaWvQ9lPIkXrtona4qqSmjZ1HfKvq4dQzI=
github.com/Sereal/Sereal v0.0.0-20190618215532-0b8ac451a863 h1:BRrxwOZBolJN4gIwvZMJY1tzqBvQgpaZiQRuIDD40jM= github.com/Sereal/Sereal v0.0.0-20190618215532-0b8ac451a863 h1:BRrxwOZBolJN4gIwvZMJY1tzqBvQgpaZiQRuIDD40jM=
github.com/Sereal/Sereal v0.0.0-20190618215532-0b8ac451a863/go.mod h1:D0JMgToj/WdxCgd30Kc1UcA9E+WdZoJqeVOuYW7iTBM= github.com/Sereal/Sereal v0.0.0-20190618215532-0b8ac451a863/go.mod h1:D0JMgToj/WdxCgd30Kc1UcA9E+WdZoJqeVOuYW7iTBM=
github.com/akavel/rsrc v0.8.0/go.mod h1:uLoCtb9J+EyAqh+26kdrTgmzRBFPGOolLWKpdxkKq+c= github.com/akavel/rsrc v0.8.0/go.mod h1:uLoCtb9J+EyAqh+26kdrTgmzRBFPGOolLWKpdxkKq+c=
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38/go.mod h1:r7bzyVFMNntcxPZXK3/+KdruV1H5KSlyVY0gc+NgInI= github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38/go.mod h1:r7bzyVFMNntcxPZXK3/+KdruV1H5KSlyVY0gc+NgInI=
github.com/alecthomas/chroma v0.7.0 h1:z+0HgTUmkpRDRz0SRSdMaqOLfJV4F+N1FPDZUZIDUzw=
github.com/alecthomas/chroma v0.7.0/go.mod h1:1U/PfCsTALWWYHDnsIQkxEBM0+6LLe0v8+RSVMOwxeY= github.com/alecthomas/chroma v0.7.0/go.mod h1:1U/PfCsTALWWYHDnsIQkxEBM0+6LLe0v8+RSVMOwxeY=
github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721/go.mod h1:QO9JBoKquHd+jz9nshCh40fOfO+JzsoXy8qTHF68zU0= github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721/go.mod h1:QO9JBoKquHd+jz9nshCh40fOfO+JzsoXy8qTHF68zU0=
github.com/alecthomas/kong v0.1.17-0.20190424132513-439c674f7ae0/go.mod h1:+inYUSluD+p4L8KdviBSgzcqEjUQOfC5fQDRFuc36lI= github.com/alecthomas/kong v0.1.17-0.20190424132513-439c674f7ae0/go.mod h1:+inYUSluD+p4L8KdviBSgzcqEjUQOfC5fQDRFuc36lI=
@ -34,16 +38,18 @@ github.com/caarlos0/env/v6 v6.2.1 h1:/bFpX1dg4TNioJjg7mrQaSrBoQvRfLUHNfXivdFbbEo
github.com/caarlos0/env/v6 v6.2.1/go.mod h1:3LpmfcAYCG6gCiSgDLaFR5Km1FRpPwFvBbRcjHar6Sw= github.com/caarlos0/env/v6 v6.2.1/go.mod h1:3LpmfcAYCG6gCiSgDLaFR5Km1FRpPwFvBbRcjHar6Sw=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/daaku/go.zipexe v1.0.0/go.mod h1:z8IiR6TsVLEYKwXAoE/I+8ys/sDkgTzSL0CLnGVd57E= github.com/daaku/go.zipexe v1.0.0/go.mod h1:z8IiR6TsVLEYKwXAoE/I+8ys/sDkgTzSL0CLnGVd57E=
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 h1:y5HC9v93H5EPKqaS1UYVg1uYah5Xf51mBfIoWehClUQ=
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964/go.mod h1:Xd9hchkHSWYkEqJwUGisez3G1QY8Ryz0sdWrLPMGjLk= github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964/go.mod h1:Xd9hchkHSWYkEqJwUGisez3G1QY8Ryz0sdWrLPMGjLk=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dlclark/regexp2 v1.1.6/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/dlclark/regexp2 v1.1.6/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=
github.com/dlclark/regexp2 v1.2.0 h1:8sAhBGEM0dRWogWqWyQeIJnxjWO6oIjl8FKqREDsGfk=
github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ=
github.com/go-chi/chi v4.1.1+incompatible h1:MmTgB0R8Bt/jccxp+t6S/1VGIKdJw5J74CK/c9tTfA4= github.com/go-chi/chi v4.1.1+incompatible h1:MmTgB0R8Bt/jccxp+t6S/1VGIKdJw5J74CK/c9tTfA4=
@ -53,15 +59,15 @@ github.com/go-playground/locales v0.12.1/go.mod h1:IUMDtCfWo/w/mtMfIE/IG2K+Ey3yg
github.com/go-playground/universal-translator v0.16.0/go.mod h1:1AnU7NaIRDWWzGEKwgtJRd2xk99HeFyHw3yid4rvQIY= github.com/go-playground/universal-translator v0.16.0/go.mod h1:1AnU7NaIRDWWzGEKwgtJRd2xk99HeFyHw3yid4rvQIY=
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 h1:uHTyIjqVhYRhLbJ8nIiOJHkEZZ+5YoOsAbD3sk82NiE=
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs=
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.3.4 h1:87PNWwrRvUSnqS4dlcBU/ftvOIBep4sYuBLlh6rX2wk=
github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
@ -73,6 +79,7 @@ github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXi
github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
@ -81,6 +88,8 @@ github.com/gorilla/handlers v1.4.1/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/
github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4= github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4=
github.com/gorilla/sessions v1.2.0/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM= github.com/gorilla/sessions v1.2.0/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM=
github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=
github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
@ -90,14 +99,15 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/leodido/go-urn v1.1.0/go.mod h1:+cyI34gQWZcE1eQU7NVgKkkzdXDQHr1dBMtdAPozLkw= github.com/leodido/go-urn v1.1.0/go.mod h1:+cyI34gQWZcE1eQU7NVgKkkzdXDQHr1dBMtdAPozLkw=
github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=
github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA=
github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4=
github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
github.com/mattn/go-isatty v0.0.11 h1:FxPOTFNqGkuDUGi3H/qkUbQO4ZiBa2brKq5r0l8TGeM=
github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE=
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
github.com/nkovacs/streamquote v0.0.0-20170412213628-49af9bddb229/go.mod h1:0aYXnNPJ8l7uZxf45rWW1a/uME32OF0rhiYGNQ2oF2E= github.com/nkovacs/streamquote v0.0.0-20170412213628-49af9bddb229/go.mod h1:0aYXnNPJ8l7uZxf45rWW1a/uME32OF0rhiYGNQ2oF2E=
@ -115,9 +125,8 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4=
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
github.com/stretchr/testify v1.7.1-0.20210427113832-6241f9ab9942 h1:t0lM6y/M5IiUZyvbBTcngso8SZEZICH7is9B6g/obVU=
github.com/stretchr/testify v1.7.1-0.20210427113832-6241f9ab9942/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8=
github.com/vmihailenco/msgpack v4.0.4+incompatible h1:dSLoQfGFAo3F6OoNhwUmLwVgaUXK79GlxNBwueZn0xI= github.com/vmihailenco/msgpack v4.0.4+incompatible h1:dSLoQfGFAo3F6OoNhwUmLwVgaUXK79GlxNBwueZn0xI=
@ -128,10 +137,12 @@ go.etcd.io/bbolt v1.3.4 h1:hi1bXHMVrlQh6WwxAy+qZCV/SYIlqo+Ushwdpa4tAKg=
go.etcd.io/bbolt v1.3.4/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= go.etcd.io/bbolt v1.3.4/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ=
go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
go.opencensus.io v0.22.2 h1:75k/FF0Q2YM8QYo07VPddOLBslDt1MZOdEslOHvmzAs=
go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 h1:ULYEB3JvPRE/IfO+9uO7vKV/xzVTO7XPAwm8xbf4w2g=
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
@ -163,8 +174,8 @@ golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20191105084925-a882066a44e0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191105084925-a882066a44e0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200301022130-244492dfa37a h1:GuSPYbZzB5/dcLNCwLQLsg3obCJtX9IJhpXkvY7kzk0= golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k=
golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@ -186,13 +197,12 @@ golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f h1:v4INt8xihDGvnrfjMDVXGxw9wrfxYyCjk0KbXjhR55s= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd h1:xhmwyvizuTgC2qz7ZlMluP20uW+C3Rm0FD/WLDX8884=
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@ -212,6 +222,7 @@ golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtn
golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
@ -249,11 +260,8 @@ gopkg.in/evanphx/json-patch.v4 v4.5.0/go.mod h1:p8EYWUEYMpynmqDbY58zCKCFZw8pRWMG
gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE=
gopkg.in/go-playground/validator.v9 v9.29.1/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ= gopkg.in/go-playground/validator.v9 v9.29.1/go.mod h1:+c9/zcJMFNgbLvly1L1V+PpxWdVbfP1avr/N00E2vyQ=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=

View File

@ -10,16 +10,25 @@ import (
"gopkg.in/yaml.v2" "gopkg.in/yaml.v2"
) )
// Config is the configuration struct
type Config struct { type Config struct {
HTTP HTTPConfig `yaml:"http"` HTTP HTTPConfig `yaml:"http"`
Data DataConfig `ymal:"data"` Client ClientConfig `yaml:"client"`
Data DataConfig `ymal:"data"`
} }
// HTTPConfig is the configuration part which defines HTTP related params
type HTTPConfig struct { type HTTPConfig struct {
Address string `yaml:"address" env:"GUESSTIMATE_HTTP_ADDRESS"` Address string `yaml:"address" env:"GUESSTIMATE_HTTP_ADDRESS"`
PublicDir string `yaml:"publicDir" env:"GUESSTIMATE_PUBLIC_DIR"` PublicDir string `yaml:"publicDir" env:"GUESSTIMATE_PUBLIC_DIR"`
} }
// ClientConfig is the configuration part which defines the client app related params
type ClientConfig struct {
PublicBaseURL string `yaml:"publicbaseurl" env:"GUESSTIMATE_CLIENT_PUBLIC_BASE_URL"`
}
// DataConfig is the configuration part which defines data related params
type DataConfig struct { type DataConfig struct {
Path string `yaml:"path" env:"GUESSTIMATE_DATA_PATH"` Path string `yaml:"path" env:"GUESSTIMATE_DATA_PATH"`
} }
@ -40,6 +49,7 @@ func NewFromFile(filepath string) (*Config, error) {
return config, nil return config, nil
} }
// WithEnvironment retrieves the configuration from env vars
func WithEnvironment(conf *Config) error { func WithEnvironment(conf *Config) error {
if err := env.Parse(conf); err != nil { if err := env.Parse(conf); err != nil {
return err return err
@ -48,23 +58,29 @@ func WithEnvironment(conf *Config) error {
return nil return nil
} }
// NewDumpDefault retrieves the default configuration
func NewDumpDefault() *Config { func NewDumpDefault() *Config {
config := NewDefault() config := NewDefault()
return config return config
} }
// NewDefault creates and returns a new default configuration
func NewDefault() *Config { func NewDefault() *Config {
return &Config{ return &Config{
HTTP: HTTPConfig{ HTTP: HTTPConfig{
Address: ":8081", Address: ":8081",
PublicDir: "public", PublicDir: "public",
}, },
Client: ClientConfig{
PublicBaseURL: "http://localhost:8080",
},
Data: DataConfig{ Data: DataConfig{
Path: "guesstimate.db", Path: "guesstimate.db",
}, },
} }
} }
// Dump writes a given config to a config file
func Dump(config *Config, w io.Writer) error { func Dump(config *Config, w io.Writer) error {
data, err := yaml.Marshal(config) data, err := yaml.Marshal(config)
if err != nil { if err != nil {

View File

@ -2,6 +2,7 @@ package config
import "gitlab.com/wpetit/goweb/service" import "gitlab.com/wpetit/goweb/service"
// ServiceProvider returns the current config service
func ServiceProvider(config *Config) service.Provider { func ServiceProvider(config *Config) service.Provider {
return func(ctn *service.Container) (interface{}, error) { return func(ctn *service.Container) (interface{}, error) {
return config, nil return config, nil

View File

@ -5,6 +5,7 @@ import (
"gitlab.com/wpetit/goweb/service" "gitlab.com/wpetit/goweb/service"
) )
// ServiceName defines the project's service
const ServiceName service.Name = "config" const ServiceName service.Name = "config"
// From retrieves the config service in the given container // From retrieves the config service in the given container

View File

@ -1,7 +1,5 @@
package model package model
import "time"
type ProjectID string type ProjectID string
type ProjectEntry struct { type ProjectEntry struct {
@ -15,18 +13,14 @@ type Project struct {
Label string `json:"label"` Label string `json:"label"`
Description string `json:"description"` Description string `json:"description"`
Tasks map[TaskID]Task `json:"tasks"` Tasks map[TaskID]Task `json:"tasks"`
Ordering []TaskID `json:"ordering"`
Params Params `json:"params"` Params Params `json:"params"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
} }
type Params struct { type Params struct {
TaskCategories map[TaskCategoryID]TaskCategory `json:"taskCategories"` TaskCategories map[TaskCategoryID]TaskCategory `json:"taskCategories"`
TimeUnit TimeUnit `json:"timeUnit"` TimeUnit TimeUnit `json:"timeUnit"`
Currency string `json:"currency"` Currency string `json:"currency"`
RoundUpEstimations bool `json:"roundUpEstimations"` RoundUpEstimations bool `json:"roundUpEstimations"`
HideFinancialPreviewOnPrint bool `json:"hideFinancialPreviewOnPrint"`
} }
type TimeUnit struct { type TimeUnit struct {

View File

@ -9,6 +9,7 @@ import (
"gitlab.com/wpetit/goweb/static" "gitlab.com/wpetit/goweb/static"
) )
// Mount endoints for server app
func Mount(r *chi.Mux, config *config.Config) error { func Mount(r *chi.Mux, config *config.Config) error {
r.Route("/api/v1", func(r chi.Router) { r.Route("/api/v1", func(r chi.Router) {
r.Get("/projects/{projectID}", handleGetProject) r.Get("/projects/{projectID}", handleGetProject)
@ -17,6 +18,10 @@ func Mount(r *chi.Mux, config *config.Config) error {
r.Delete("/projects/{projectID}", handleDeleteProject) r.Delete("/projects/{projectID}", handleDeleteProject)
}) })
r.Route("/export", func(r chi.Router) {
r.Get("/projects/{projectID}", handleExportProject)
})
clientIndex := path.Join(config.HTTP.PublicDir, "index.html") clientIndex := path.Join(config.HTTP.PublicDir, "index.html")
serveClientIndex := func(w http.ResponseWriter, r *http.Request) { serveClientIndex := func(w http.ResponseWriter, r *http.Request) {
@ -24,6 +29,7 @@ func Mount(r *chi.Mux, config *config.Config) error {
} }
r.Get("/p/*", serveClientIndex) r.Get("/p/*", serveClientIndex)
r.Get("/pdf/*", serveClientIndex)
notFoundHandler := r.NotFoundHandler() notFoundHandler := r.NotFoundHandler()
r.Get("/*", static.Dir(config.HTTP.PublicDir, "", notFoundHandler)) r.Get("/*", static.Dir(config.HTTP.PublicDir, "", notFoundHandler))

View File

@ -2,14 +2,17 @@ package route
import ( import (
"encoding/json" "encoding/json"
"fmt"
"log" "log"
"net/http" "net/http"
"strconv" "strconv"
jsonpatch "gopkg.in/evanphx/json-patch.v4" jsonpatch "gopkg.in/evanphx/json-patch.v4"
"forge.cadoles.com/wpetit/guesstimate/internal/config"
"forge.cadoles.com/wpetit/guesstimate/internal/model" "forge.cadoles.com/wpetit/guesstimate/internal/model"
"forge.cadoles.com/wpetit/guesstimate/internal/storm" "forge.cadoles.com/wpetit/guesstimate/internal/storm"
"github.com/SebastiaanKlippert/go-wkhtmltopdf"
"github.com/go-chi/chi" "github.com/go-chi/chi"
"github.com/pkg/errors" "github.com/pkg/errors"
"gitlab.com/wpetit/goweb/middleware/container" "gitlab.com/wpetit/goweb/middleware/container"
@ -74,6 +77,55 @@ func handleGetProject(w http.ResponseWriter, r *http.Request) {
} }
} }
func handleExportProject(w http.ResponseWriter, r *http.Request) {
ctn := container.Must(r.Context())
cfg := config.Must(ctn)
projectID := getProjectID(r)
var (
err error
url string
)
url = string(cfg.Client.PublicBaseURL) + "/pdf/" + string(projectID)
// Create new PDF generator
pdfg, err := wkhtmltopdf.NewPDFGenerator()
if err != nil {
log.Fatal(err)
}
// Set global options
pdfg.Dpi.Set(300)
pdfg.Orientation.Set(wkhtmltopdf.OrientationPortrait)
pdfg.Grayscale.Set(true)
// Create a new input page from an URL
page := wkhtmltopdf.NewPage(url)
// Set options for this page
page.FooterRight.Set("[page]")
page.FooterFontSize.Set(10)
page.Zoom.Set(0.95)
// Add to document
pdfg.AddPage(page)
// Create PDF document in internal buffer
err = pdfg.Create()
if err != nil {
log.Fatal(err)
}
rsp, err := writePDF(w, http.StatusOK, pdfg.Bytes())
if err != nil {
panic(errors.Wrap(err, "could not write pdf response"))
}
fmt.Println(rsp)
}
type createRequest struct { type createRequest struct {
Project *model.Project `json:"project"` Project *model.Project `json:"project"`
} }
@ -246,3 +298,12 @@ func writeJSON(w http.ResponseWriter, statusCode int, data interface{}) error {
return encoder.Encode(data) return encoder.Encode(data)
} }
func writePDF(w http.ResponseWriter, statusCode int, data []byte) (int, error) {
w.Header().Set("Content-Disposition", "attachment; filename=estimation.pdf")
w.Header().Set("Content-Type", "application/pdf")
w.WriteHeader(statusCode)
return w.Write(data)
}