diff --git a/js/costcalc_main.jsx b/js/costcalc_main.jsx index 66ffb59..99bbee7 100644 --- a/js/costcalc_main.jsx +++ b/js/costcalc_main.jsx @@ -1,1975 +1,1975 @@ 'use strict' let projectname = '' let projectduration = 0 // Declarations for entities defined in other scripts let MainData let Stats let MoneyEnable let MoneyGetRates let ConvCurrency let PluginsCurrencyChange let PopupStats let ManageExport let CurrencySelect let _paq let React let ReactDOM let PropTypes // Functions Tools // --------------------- // --------------------- // function loop for react js function Repeat (props) { const items = [] for (let i = 0; i < props.numTimes; i++) { items.push(props.children(i)) } return
{items}
} Repeat.propTypes = { numTimes: PropTypes.number, children: PropTypes.func } // convert string to numeric function toNumeric (value) { return parseFloat( value.toString().replace(/[^0-9\\.]+/g, '') ) } // Covert numeric to money string function toMoney (numeric, currency) { if (typeof numeric === 'string') { numeric = parseFloat(numeric) } let strcur = '' if (currency === undefined) { strcur = MainData.Currency } else { strcur = currency } return numeric.toFixed(0).replace(/(\d)(?=(\d{3})+\.)/g, '$1,') + ' ' + strcur } // return the sum of an array function sum (obj) { const val = Object.values(obj) let total = 0 for (let i = 0; i < val.length; i++) { total = total + toNumeric(val[i]) } return total } // Comapare two obj return true is similar Object.compare = function (obj1, obj2) { - console.log('in Object.compare', obj1, obj2) + // console.log('in Object.compare', obj1, obj2) if (typeof (obj1) === 'undefined' && typeof (obj2) === 'undefined') { return true } if (typeof (obj1) === 'undefined' || typeof (obj2) === 'undefined') { return false } // Loop through properties in object 1 for (const p in obj1) { // Check property exists on both objects // if (obj1.hasOwnProperty(p) !== obj2.hasOwnProperty(p)) return false if (Object.prototype.hasOwnProperty.call(obj1, p) !== Object.prototype.hasOwnProperty.call(obj2, p)) return false switch (typeof (obj1[p])) { // Deep compare objects case 'object': if (!Object.compare(obj1[p], obj2[p])) return false break // Compare function code case 'function': if (typeof (obj2[p]) === 'undefined' || (p !== 'compare' && obj1[p].toString() !== obj2[p].toString())) return false break // Compare values default: if (obj1[p] !== obj2[p]) return false } } // Check object 2 for any extra properties for (const p in obj2) { if (typeof (obj1[p]) === 'undefined') return false } return true } // Generate a random int function randomInt (not) { let rnd let cont do { rnd = Math.floor(Math.random() * 100) cont = false for (let i = 0; i < not.length; i++) { if (not[i] === rnd) { cont = true } } } while (cont) return rnd } // Inputs Definition // --------------------- // --------------------- // Display the amount selector class AmountInput extends React.Component { constructor (props) { super(props) this.handleChange = this.handleChange.bind(this) } handleChange (e) { this.props.onChange(e.target.value) } componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } componentWillUnmount () { $('[data-toggle="tooltip"]').tooltip('dispose') } render () { const value = this.props.value let label = null if (this.props.name != null && this.props.name !== '') { label = } return (
{label} {this.props.name} : {value} {this.props.unit}
) } } AmountInput.propTypes = { onChange: PropTypes.func, tips: PropTypes.string, value: PropTypes.string, name: PropTypes.string, id: PropTypes.string, min: PropTypes.string, max: PropTypes.string, step: PropTypes.string, unit: PropTypes.string } // Display a select input box class SelectorInput extends React.Component { constructor (props) { super(props) // this.state={listoptions:this.makelist(props.options)}; this.handleChange = this.handleChange.bind(this) } rate (i) { return i } makelist (data) { const listoptions = [] for (let i = 0; i < data.length; i++) { listoptions.push() } return listoptions } handleChange (select) { this.props.onChange(select.target.value) } makerate () { if (this.props.rate != null && this.props.rate !== '') { return (
Rate : {this.props.rate} {this.props.unit}
) } } maketitle (title) { const maxstr = 20 if (title.length > maxstr) { title = title.substr(0, maxstr) + '...' } return title } componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } componentWillUnmount () { $('[data-toggle="tooltip"]').tooltip('dispose') } render () { let label = null if (this.props.name != null && this.props.name !== '') { label =
} return (
{label}
{this.makelist(this.props.options)}
{this.makerate()}
) } } SelectorInput.propTypes = { onChange: PropTypes.func, tips: PropTypes.string, rate: PropTypes.number, unit: PropTypes.string, name: PropTypes.string, id: PropTypes.string, class: PropTypes.string, options: PropTypes.array, selected: PropTypes.string } // Make the read more button class MakeknowmoreInput extends React.Component { constructor (props) { super(props) this.state = { btnsize: 20 } } componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } componentWillUnmount () { $('[data-toggle="tooltip"]').tooltip('dispose') } render () { const data = this.props.data if (((data.Url !== ''))) { // if (data.Url.length==1){ // return( // } url={data.Url[0].Url} // id="btn-plugin-knowmore" // class="btn-primary btn-sm" tips={"Know more about " + data.Name}/> // ); // }else { return (} options={data.Url} id="btn-plugin-knowmore" class="btn-primary btn-sm" tips={'Read more about ' + data.Name + ' solutions'}/>) // } } else { return null } } } MakeknowmoreInput.propTypes = { data: PropTypes.object } // Display a checkbox class CheckboxInput extends React.Component { constructor (props) { super(props) this.handleChange = this.handleChange.bind(this) this.state = { checked: this.props.defaults } } handleChange () { this.setState({ checked: !this.state.checked }) this.props.onChange(!this.state.checked) } render () { return (
) } } CheckboxInput.propTypes = { defaults: PropTypes.bool, id: PropTypes.string, name: PropTypes.string, onChange: PropTypes.func } // Display a btn with link class ButtonHrefInput extends React.Component { /* constructor (props) { super(props) } */ componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } render () { return ( {this.props.name} ) } } ButtonHrefInput.propTypes = { id: PropTypes.string, name: PropTypes.string, url: PropTypes.string, tips: PropTypes.string } // Button with validation popup class ButtonInputWpop extends React.Component { constructor (props) { super(props) this.handleChange = this.handleChange.bind(this) this.state = { target: 'Modal' + this.props.idp } } handleChange () { const out = { n: this.props.n, target: this.state.target } this.props.onClick(out) } componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } componentWillUnmount () { $('[data-toggle="tooltip"]').tooltip('dispose') } render () { return ( ) } } ButtonInputWpop.propTypes = { n: PropTypes.number, idp: PropTypes.string, id: PropTypes.string, class: PropTypes.string, name: PropTypes.object, info: PropTypes.string, tips: PropTypes.string, onClick: PropTypes.func } // Display a button class ButtonInput extends React.Component { constructor (props) { super(props) this.handleChange = this.handleChange.bind(this) } handleChange () { this.props.onClick(this.props.n) } componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } componentWillUnmount () { $('[data-toggle="tooltip"]').tooltip('dispose') } render () { return ( ) } } ButtonInput.propTypes = { n: PropTypes.string, id: PropTypes.string, class: PropTypes.string, name: PropTypes.object, tips: PropTypes.string, info: PropTypes.string, onClick: PropTypes.func } // Display a menu class MenuInput extends React.Component { constructor (props) { super(props) this.state = { listoptions: this.makelist(props.options) } } componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } componentWillUnmount () { $('[data-toggle="tooltip"]').tooltip('dispose') } makelist (data) { const listoptions = [] for (let i = 0; i < data.length; i++) { listoptions.push({data[i].Name}) } return listoptions } render () { return (
{this.state.listoptions}
) } } MenuInput.propTypes = { id: PropTypes.string, class: PropTypes.string, name: PropTypes.object, tips: PropTypes.string, options: PropTypes.array, listoptions: PropTypes.array } // Text input box class TxtInput extends React.Component { constructor (props) { super(props) this.handleChange = this.handleChange.bind(this) } handleChange (e) { this.props.onChange(e.target.value) } componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } componentWillUnmount () { $('[data-toggle="tooltip"]').tooltip('dispose') } render () { let info = null if (this.props.info != null && this.props.info !== '') info = {this.props.info} return (
{this.props.Prepend}
{info}
{this.props.InvalidMessage}
) } } TxtInput.propTypes = { id: PropTypes.string, class: PropTypes.string, name: PropTypes.string, className: PropTypes.string, value: PropTypes.string, placeholder: PropTypes.string, Prepend: PropTypes.object, tips: PropTypes.string, info: PropTypes.string, InvalidMessage: PropTypes.string, onChange: PropTypes.func } // Outputs definition // --------------------- // --------------------- // Display the cost output box class CostOutput extends React.Component { constructor (props) { super(props) this.handleChange = this.handleChange.bind(this) } handleChange () { this.props.onCostChange(this.props.display) } componentDidMount () { $('[data-toggle="tooltip"]').tooltip() } componentDidUpdate () { $('[data-toggle="tooltip"]').tooltip() } render () { const classN = 'form-control ' + this.props.class return (
) } } CostOutput.propTypes = { id: PropTypes.string, class: PropTypes.string, value: PropTypes.string, name: PropTypes.string, tips: PropTypes.string, display: PropTypes.string, onCostChange: PropTypes.func } // Display a text box for display function Textoutput (props) { return (
{props.text}
) } Textoutput.propTypes = { text: PropTypes.string } // Plugins definition // --------------------- // --------------------- class AmountRatesCost extends React.Component { constructor (props) { super(props) this.handleAmountChange = this.handleAmountChange.bind(this) this.handleRateChange = this.handleRateChange.bind(this) this.state = { Amount: '1', SelectRate: '0', Rate: this.props.data.Rates[Object.keys(this.props.data.Rates)[0]], Adaptive: false } if (typeof this.props.data.Adaptive !== 'undefined' && this.props.data.Adaptive === true) { this.state.Adaptive = true } this.makeExport() } handleAmountChange (amount) { this.setState({ Amount: amount }) } handleRateChange (select) { this.setState({ SelectRate: select }) this.setState({ Rate: this.props.data.Rates[Object.keys(this.props.data.Rates)[select]] }) } makeExport () { this.export = [ { Name: 'Amount', Value: this.state.Amount + ' ' + this.props.data.AmountUnit }, { Name: this.props.data.RateName, Value: Object.keys(this.props.data.Rates)[this.state.SelectRate] } ] this.props.export(this.export) } componentDidUpdate () { this.makeCost(this.state.Amount, this.state.Rate) this.makeExport() } render () { let AmountMin let AmountMax let AmountStep if (this.state.Adaptive) { AmountMin = this.props.data.AmountMin[this.state.SelectRate] AmountMax = this.props.data.AmountMax[this.state.SelectRate] AmountStep = this.props.data.AmountStep[this.state.SelectRate] } else { AmountMin = this.props.data.AmountMin AmountMax = this.props.data.AmountMax AmountStep = this.props.data.AmountStep } if (this.state.Amount > AmountMax) { this.setState({ Amount: AmountMax }) } if (this.state.Amount < AmountMin) { this.setState({ Amount: AmountMin }) } return (
) } makeCost (amount, rate) { let free if (this.state.Adaptive) { free = this.props.data.AmountFree[this.state.SelectRate] } else { free = this.props.data.AmountFree } let total = (amount - free) * rate if (this.props.data.ByYear) total = total * projectduration total = toMoney(total) this.props.onCostChange(this.props.n, total) return total } } AmountRatesCost.propTypes = { id: PropTypes.string, n: PropTypes.number, data: PropTypes.object, export: PropTypes.func, onCostChange: PropTypes.func } class CategoryAmountRatesCost extends React.Component { constructor (props) { super(props) this.handleCatChange = this.handleCatChange.bind(this) this.handleAmountChange = this.handleAmountChange.bind(this) this.handleRateChange = this.handleRateChange.bind(this) // console.log('in constructor', this.props.data.Rates) this.state = { SelectCat: '0', Cat: this.props.data.Cat[Object.keys(this.props.data.Cat)[0]], Amount: 0, SelectRate: '0', Rate: this.props.data.Rates[Object.keys(this.props.data.Rates)[0]], Free: 0, Adaptive: false } if (typeof this.props.data.Adaptive !== 'undefined' && this.props.data.Adaptive === true) { this.state.Adaptive = true } this.makeExport() } handleAmountChange (amount) { this.setState({ Amount: amount }) } handleRateChange (select) { this.setState({ SelectRate: select }) this.setState({ Rate: this.props.data.Rates[Object.keys(this.props.data.Rates)[select]] }) } handleCatChange (select) { this.setState({ SelectCat: select }) this.setState({ Cat: this.props.data.Cat[Object.keys(this.props.data.Cat)[select]] }) } makeExport () { this.export = [ { Name: this.props.data.CatName, Value: Object.keys(this.props.data.Cat)[this.state.SelectCat] }, { Name: 'Amount', Value: this.state.Amount + ' ' + this.props.data.AmountUnit }, { Name: this.props.data.RateName, Value: Object.keys(this.props.data.Rates)[this.state.SelectRate] } ] this.props.export(this.export) } componentDidUpdate () { this.makeCost(this.state.Cat, this.state.Amount, this.state.Rate, this.state.Free) this.makeExport() } render () { let AmountMin let AmountMax let AmountStep // let AmountFree if (this.state.Adaptive) { // console.log('this.props.data.AmountMin', this.props.data.AmountMin, 'this.props.data.AmountMax', this.props.data.AmountMax, ' selected rate', this.state.SelectRate) AmountMin = this.props.data.AmountMin[this.state.SelectRate] AmountMax = this.props.data.AmountMax[this.state.SelectRate] AmountStep = this.props.data.AmountStep[this.state.SelectRate] // AmountFree = this.props.data.AmountFree[this.state.SelectRate] } else { AmountMin = this.props.data.AmountMin AmountMax = this.props.data.AmountMax AmountStep = this.props.data.AmountStep // AmountFree = this.props.data.AmountFree } if (this.state.Amount > AmountMax) { this.setState({ Amount: AmountMax }) } if (this.state.Amount < AmountMin) { this.setState({ Amount: AmountMin }) } // console.log('in render()', this.state.SelectRate, AmountMin, AmountMax, AmountStep, AmountFree) return (
) } makeCost (cat, amount, rate, free) { let total = cat + (amount - free) * rate // console.log(cat, '+ (', amount, '-',free,')*', rate, ' = ', total) if (this.props.data.ByYear) total = total * projectduration total = toMoney(total) this.props.onCostChange(this.props.n, total) return total } } CategoryAmountRatesCost.propTypes = { id: PropTypes.string, n: PropTypes.number, data: PropTypes.object, export: PropTypes.func, onCostChange: PropTypes.func } class CategoryCost extends React.Component { constructor (props) { super(props) this.handleCatChange = this.handleCatChange.bind(this) this.state = { SelectCat: '0', Cat: this.props.data.Cat[Object.keys(this.props.data.Cat)[0]] } this.makeExport() } handleCatChange (select) { this.setState({ SelectCat: select }) this.setState({ Cat: this.props.data.Cat[Object.keys(this.props.data.Cat)[select]] }) } makeExport () { this.export = [ { Name: this.props.data.CatName, Value: Object.keys(this.props.data.Cat)[this.state.SelectCat] } ] this.props.export(this.export) } componentDidUpdate () { this.makeCost(this.state.Cat) this.makeExport() } render () { return (
) } makeCost (cat) { let total = cat if (this.props.data.ByYear) total = total * projectduration total = toMoney(total) this.props.onCostChange(this.props.n, total) return total } } CategoryCost.propTypes = { id: PropTypes.string, n: PropTypes.number, data: PropTypes.object, export: PropTypes.func, onCostChange: PropTypes.func, onChange: PropTypes.func } class NoneSelect extends React.Component { constructor (props) { super(props) this.export = [] const Cost = toMoney(0) this.props.onCostChange(this.props.n, Cost) this.props.export(this.export) } render () { /* const Cost = toMoney(0) this.props.onCostChange(this.props.n, Cost) this.props.export(this.export) */ return (
Please select a provider in the list.
) } } NoneSelect.propTypes = { n: PropTypes.number, export: PropTypes.func, onCostChange: PropTypes.func, onChange: PropTypes.func } class UserCost extends React.Component { constructor (props) { super(props) this.handleCostChange = this.handleCostChange.bind(this) this.handleProviderChange = this.handleProviderChange.bind(this) this.handleServiceChange = this.handleServiceChange.bind(this) this.handleYearChange = this.handleYearChange.bind(this) this.handleConvMoneyChange = this.handleConvMoneyChange.bind(this) this.state = { total: 0, value: 0, ProviderError: true, ServiceError: true, ByYear: false } this.export = [] } handleYearChange (state) { this.setState({ ByYear: state }) this.props.handlebyYearChange(state) } makeCost (byYear, amount) { let total = amount if (byYear) total = amount * projectduration // this.setState({total:total}); this.props.onCostChange(this.props.n, toMoney(total)) return toMoney(total) } handleCostChange (value) { this.setState({ value }) } handleProviderChange (txt) { this.props.handleProviderChange(txt) if (txt === '') { this.setState({ ProviderError: true }) } else { this.setState({ ProviderError: false }) } } handleServiceChange (txt) { this.props.handleServiceChange(txt) if (txt === '') { this.setState({ ServiceError: true }) } else { this.setState({ ServiceError: false }) } } handleConvMoneyChange (conv) { this.setState({ conv }) } componentDidUpdate () { this.makeCost(this.state.ByYear, this.state.value) // this.makeExport(); } classtxt (error) { if (error) { return 'is-invalid' } else { return 'is-valid' } } render () { let Costname = 'Cost' if (this.state.ByYear) Costname = 'Cost by year' this.props.export(this.export) return (
} InvalidMessage="Please provide a Provider"/>
} InvalidMessage="Please provide a Service"/>
) } } UserCost.propTypes = { id: PropTypes.string, n: PropTypes.number, export: PropTypes.func, onCostChange: PropTypes.func, handlebyYearChange: PropTypes.func, handleServiceChange: PropTypes.func, handleProviderChange: PropTypes.func, handleCostChange: PropTypes.func } // Combine plugins // --------------------- // --------------------- // Manages what's display inside a plugin : provider selector, select the components... class ProviderPluginsSelector extends React.Component { constructor (props) { super(props) this.handleCostChange = this.handleCostChange.bind(this) this.handleProviderChange = this.handleProviderChange.bind(this) this.handleCommentChange = this.handleCommentChange.bind(this) this.handleAddPlugin = this.handleAddPlugin.bind(this) this.handleRmvPlugin = this.handleRmvPlugin.bind(this) this.handleProviderChangetxt = this.handleProviderChangetxt.bind(this) this.handleServiceChangetxt = this.handleServiceChangetxt.bind(this) this.handlebyYearChange = this.handlebyYearChange.bind(this) this.makeExportcmp = this.makeExportcmp.bind(this) this.makeExport = this.makeExport.bind(this) this.state = { selected: '0', keys: this.ProvidersName(props.data), n: '1', cost: '0', comments: '', Provider: '', Name: '', manualname: false, manbyyear: false, showPlus: false, exportcmp: '' } } handleCostChange (n, e) { if (this.state.cost !== e) { this.setState({ cost: e }) this.props.handleCostChange(n, e) } } handleProviderChange (select) { this.setState({ selected: select }) if (select > 0) { this.setState({ showPlus: true }) } else { this.setState({ showPlus: false }) } this.setState({ Provider: this.props.data.Data[select].Provider }) this.setState({ Name: this.props.data.Data[select].Name }) this.props.handleCostChange(this.props.n, this.state.cost) // Send a provider even when provider change, but not for empty values if (this.state.Provider.length) { Stats.RecordEvent('Provider', this.state.Provider, 0) } } componentDidUpdate () { this.props.handleCostChange(this.props.n, this.state.cost) this.makeExport() } makeExportcmp (data) { // this.state.exportcmp = data // console.log('in makeExportcmp', this.state.exportcmp, data) if (!Object.compare(this.state.exportcmp, data)) { this.setState({ exportcmp: data }) } } makeExport () { const out = { Category: this.props.data.Name, Provider: this.state.Provider, Name: this.state.Name, Comments: this.state.comments, ExportCmp: this.state.exportcmp, Cost: this.state.cost } this.props.export(out, this.props.n) } handleCommentChange (com) { this.setState({ comments: com }) } handleAddPlugin (n) { this.props.handleAddPlugin(n) } handleRmvPlugin (n) { this.props.handleRmvPlugin(n) } // The 3 nexts function are for user input management handleProviderChangetxt (txt) { this.setState({ Provider: txt }) } handleServiceChangetxt (txt) { this.setState({ Name: txt }) } handlebyYearChange (state) { this.setState({ manbyyear: state }) } // Manage extra display info for a selected provider extrainfo (Cdata) { let ExtraInf = '' let ExtraInfUrl = '' if (typeof Cdata.ExtraInfoUrl !== 'undefined' && Cdata.ExtraInfoUrl !== '') { ExtraInfUrl =

To know more

} if (typeof Cdata.ExtraInfo !== 'undefined' && Cdata.ExtraInfo !== '') { ExtraInf =
  {Cdata.ExtraInfo} {ExtraInfUrl}
} return (ExtraInf) } render () { const selected = this.state.selected const Cmp = this.cmp2string(this.cmpdata(selected).Style) const Cdata = this.cmpdata(selected) const id = this.props.data.Name.replace(/\s/g, '') + this.props.n return (
{this.extrainfo(Cdata)}
) } cmpdata (select) { const out = this.props.data.Data[select] const newKeys = this.state.keys if (this.state.manualname) { out.Name = this.state.Name out.ByYear = this.state.manbyyear if (this.state.Provider === '') { // this.state.keys[select] = 'Please provide a Provider' newKeys[select] = 'Please provide a Provider' this.setState({ keys: newKeys }) } else { // this.state.keys[select] = this.state.Provider if (this.state.keys[select] !== this.state.Provider) { newKeys[select] = this.state.Provider this.setState({ keys: newKeys }) } } } return out } // return the correct style fct from the str input cmp2string (str) { switch (str) { case 'AmountRatesCost' : return AmountRatesCost case 'CategoryCost' : return CategoryCost case 'CategoryAmountRatesCost' : return CategoryAmountRatesCost case 'NoneSelect' : return NoneSelect case 'UserCost' : { // TODO fixme: the script freezes when the user enters a char in any input field // this.state.manualname = true return UserCost } } } ProvidersName (main) { const data = main.Data const providers = [] for (let i = 0; i < data.length; i++) { providers.push(data[i].Provider) } return providers } } ProviderPluginsSelector.propTypes = { n: PropTypes.number, showMinus: PropTypes.bool, conv: PropTypes.object, data: PropTypes.object, export: PropTypes.func, handleCostChange: PropTypes.func, handleAddPlugin: PropTypes.func, handleRmvPlugin: PropTypes.func } // Displays the header of a plugin (button +- name cost ...) class ModuleHeader extends React.Component { constructor (props) { super(props) this.handleAddPlugin = this.handleAddPlugin.bind(this) this.handleRmvPlugin = this.handleRmvPlugin.bind(this) } handleAddPlugin (n) { this.props.handleAddPlugin(n) } handleRmvPlugin (n) { this.props.handleRmvPlugin(n) } byyear (by) { if (by) { return ({projectduration}
years
) } else { return () } } render () { let minus = null let plus = null let convout = null if (this.props.showMinus) { minus = } onClick={this.handleRmvPlugin} n={this.props.n} tips="Remove this line" idp={this.props.id} info={this.props.data.Name}/> } if (this.props.showPlus) { plus = } onClick={this.handleAddPlugin} n={this.props.n.toString()} tips={'Add a new ' + this.props.data.Name}/> } if (this.props.conv.Enable) { convout = } return (
{plus}
{minus}
{/*
*/} {/*
*/} {/*
*/} {/*
*/}
{this.makeinfo(this.props.keys, this.props.selected, this.props.Cdata)}
{this.props.comments}
{convout}
{this.byyear(this.props.Cdata.ByYear)}
) } btnClick () { // Send a category even when someone click on the category btn Stats.RecordEvent('Category', this.props.data.Name, this.props.n) } makeinfo (keys, selected, Cdata) { let name = Cdata.Name if (name === '' && keys[selected] === '') { name = 'Please provide a Provider' return ({name}) } else if (keys[selected] === 'None') { return ({name}) } else { return ({keys[selected]} : {name}) } } } ModuleHeader.propTypes = { showMinus: PropTypes.bool, showPlus: PropTypes.bool, id: PropTypes.string, keys: PropTypes.array, selected: PropTypes.string, n: PropTypes.number, comments: PropTypes.string, Cost: PropTypes.string, Cdata: PropTypes.object, handleAddPlugin: PropTypes.func, handleRmvPlugin: PropTypes.func, conv: PropTypes.object, data: PropTypes.object } // displays one kind plugin it manages the add and removes option class ManagePlugins extends React.Component { constructor (props) { super(props) this.handleCostChange = this.handleCostChange.bind(this) this.handleAddPlugin = this.handleAddPlugin.bind(this) this.handleRmvPlugin = this.handleRmvPlugin.bind(this) this.makeExportplug = this.makeExportplug.bind(this) this.makeExport = this.makeExport.bind(this) this.state = { displayed: [], varsum: {}, plugins: [], export: [] } this.state.displayed.push(randomInt(this.state.displayed)) } handleRmvPlugin (n) { $('#' + n.target).modal('hide') const tmp = this.state.displayed tmp.splice(n.n, 1) this.setState({ displayed: tmp }) this.handleCostChange(n.n, 0) this.state.export.splice(n.n, 1) } handleAddPlugin (n) { const tmp = this.state.displayed tmp.splice(n + 1, 0, randomInt(this.state.displayed)) this.setState({ displayed: tmp }) } handleCostChange (n, cost) { const newVarsum = this.state.varsum if (!Object.compare(newVarsum[n], cost)) { newVarsum[n] = cost this.setState({ varsum: newVarsum }) } // this.state.varsum[n] = cost this.props.handleCostChange(this.props.n, sum(this.state.varsum)) } makeExportplug (data, n) { const newExport = this.state.export // console.log('in ManagerPlugin.makeExportplug', Object.compare(newExport[n], data), this.state.export[n] === data) if (!Object.compare(newExport[n], data)) { newExport[n] = data this.setState({ export: newExport }) } // this.state.export[n] = data this.makeExport() } makeExport () { if (this.state.export.length === this.giveN()) { this.props.export(this.state.export, this.props.n) } } giveId (index) { return this.state.displayed[index] } giveN () { const disp = this.state.displayed return disp.length } componentDidUpdate () { this.makeExport() } render () { let showMinus = false if (this.giveN() > 1) { showMinus = true } this.makeExport() return (
{(index) => }
) } } ManagePlugins.propTypes = { handleCostChange: PropTypes.func, export: PropTypes.func, n: PropTypes.number, conv: PropTypes.object, data: PropTypes.object } // displays all the plugins defined in the Maindata class PluginsMain extends React.Component { constructor (props) { super(props) this.handleCostChange = this.handleCostChange.bind(this) this.makeExportplug = this.makeExportplug.bind(this) this.makeExport = this.makeExport.bind(this) this.state = { varsum: {}, export: [] } } handleCostChange (name, e) { // this.state.varsum[name] = e const newVarsum = this.state.varsum // here we are simply comparing numbers, no need for Object.compare() if (newVarsum[name] !== e) { newVarsum[name] = e this.setState({ varsum: newVarsum }) } this.props.TotalCost(sum(this.state.varsum)) } makeExportplug (data, n) { if (this.state.export[n] !== data) { // this.state.export[n] = data const newExport = this.state.export newExport[n] = data this.setState({ export: newExport }) } this.makeExport() } makeExport () { if (this.state.export.length === this.props.data.length) { this.props.export(this.state.export) } } render () { return (
Line controls
Category
Provider information
Cost
{(index) => }
) } } PluginsMain.propTypes = { export: PropTypes.func, TotalCost: PropTypes.func, conv: PropTypes.object, data: PropTypes.array } // MAIN // --------------------- // --------------------- class Main extends React.Component { constructor (props) { MoneyGetRates() super(props) this.handleCostChange = this.handleCostChange.bind(this) this.makeExportmain = this.makeExportmain.bind(this) this.handleNameChange = this.handleNameChange.bind(this) this.handleDurationChange = this.handleDurationChange.bind(this) this.handleConvMoneyChange = this.handleConvMoneyChange.bind(this) this.btnClick = this.btnClick.bind(this) this.state = { total: 0, export: [], exportmain: {}, name: '', duration: MainData.DefaultDuration, conv: { Enable: false, Cur: '' } } projectduration = this.state.duration this.init = true } componentDidUpdate () { _paq.push(['enableLinkTracking']) } handleCostChange (total) { if (this.state.total !== total) { this.setState({ total }) } } makeExportmain (idata) { const tmp = JSON.parse(JSON.stringify(idata)) let disp = false if (!this.init) { if (!Object.compare(tmp, this.state.exportmain.data)) { disp = true } } if ((this.init) || (disp)) { this.setState({ exportmain: { data: tmp, total: toMoney(this.state.total) } }) this.init = false } } handleNameChange (name) { this.setState({ name }) projectname = name } handleDurationChange (d) { this.setState({ duration: d }) projectduration = d } handleConvMoneyChange (conv) { this.setState({ conv }) } btnClick (name, value) { Stats.RecordEvent('Options', name, value) } render () { return (
{this.page_head()}
{this.project_info()} {this.final_cost(this.state.conv)} {this.howto()}
{this.page_foot()}
) } project_info () { return (
) } // Display the total cost final_cost (conv) { let disps = '' if (projectduration > 1) disps = 's' let convout = '' if (conv.Enable) convout = return (
{ /* */ }

Total Cost for {projectduration} year{disps}

{convout}
) } // Define the head (top) of the page page_head () { let helpbtn = null let imglogo = null if (MainData.HelpUrl != null && MainData.HelpUrl !== '') { helpbtn = this.btnClick('helpbtn', 0)} rel="noreferrer">  I need help with my DMP } if (MainData.InstLogo != null && MainData.InstLogo !== '') { imglogo = } return ( ) } // Define the foot (bottom) of the page page_foot () { return ( ) } // Define the howto (user guide) howto () { let curconv = null if (MoneyEnable) { curconv =
Change Currency

If you need another currency than {MainData.Currency} you can add an extra currency by selecting in the Change Currency menu

The current exchange rate is automatically applied using openexchangerates

} return (

HOWTO

Project Name and Duration

The Project name is only used for you.

Project Duration is used for subscription services charged by year: the yearly cost will be multiplied by the duration of the project.

{curconv}
Categories
This tool is divided into categories (for example Active storage). Click on the category name, and it will expand.
Providers

Providers can be chosen from the Select a provider box. You can then tune your settings for this provider to fit your needs.

If the provider you want is not present, you can add it manually with Provide your own provider and then enter your provider/service and cost.

Add or Remove Line

If you want to add a new line use the } tips={'Add a new category'} onClick={this.fctnull}/> button.

You can also remove a line with } tips={'Remove this line'} onClick={this.fctnull}/> button.

To know more about
Some extra information about the category or the provider can be obtained with the } tips={'Know more'} onClick={this.fctnull}/> button.
Comments your input
Comments are for your own usage, you can use it for remembering what each section is and for a nice export.
Export
You can export your work into different formats :
HTML : This format can be used in any wordprocessing software (such as Microsoft Word or Libreoffice).
HTML Source code, Markdown, and CSV formats are also possible.
Click on the Copy to Clipboard} tips="Copy the output into your clipboard" onClick={this.fctnull}/> in order to copy your work into your clipboard. A simple Paste will transfer your work into any software.
) } // Function use by the howto btn to move the page move2howto () { Stats.RecordEvent('Options', 'howtobtn', 0) $('html,body').animate({ scrollTop: $('#howto').offset().top }, 'slow') } fctnull () {} } // Main Declaration // --------------------- // --------------------- const container = document.getElementById('root') const root = ReactDOM.createRoot(container) // createRoot(container!) if you use TypeScript root.render(
) // Display the stats popup after 10s if (Stats.Enable) { setTimeout(function () { $('#PopupStats').modal('show') }, 10000) } // Enable tooltip $('[data-toggle="tooltip"]').tooltip()