houdini/client/js/settings/index/page.js
Bradley M. Kuhn fc77ee76d6 Relicense Javascript code in accordance with project's new license
The primary license of the project is changing to:
  AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later

The Additional Permission is designed to permit publicly distributed
Javascript code to be relicensed under LGPL-3.0-or-later, but not server-side
Javascript code.  As such, we've relicensed here static Javscript files under
LGPL-3.0-or-later, and those that run as part of build and/or server side
under AGPL-3.0-or-later.

Note that in future, Javascript files may be updated to be stronger copyleft
license with the Additional Permission, particularly if they adapted to run
on server side and/or turned into templates.  Of course, we'd seek public
discussion with the contributor community about such changes.

This commit is one of the many steps to relicense the entire codebase.

Documentation granting permission for this relicensing (from all past
contributors who hold copyrights) is on file with Software Freedom
Conservancy, Inc.
2018-03-25 15:10:40 -04:00

134 lines
4 KiB
JavaScript

// License: LGPL-3.0-or-later
var request = require('../../common/client')
require('../../common/image_uploader')
require('../../common/el_swapo')
require('../../common/restful_resource')
const render = require('ff-core/render')
const h = require('snabbdom/h')
const R = require('ramda')
const flyd = require('flyd')
const snabbdom = require('snabbdom')
const branding = require('./branding/index')
const emailSettings = require('./email-settings/index')
const integrations = require('./integrations/index')
function init() {
var state = {}
state.emailSettings = emailSettings.init()
state.branding = branding.init()
state.integrations = integrations.init()
return state
}
function view(state) {
return h('div', [
emailSettings.view(state.emailSettings)
, branding.view(state.branding)
, integrations.view(state.integrations)
])
}
// -- Render flimflam
var container = document.querySelector('#js-main')
const patch = snabbdom.init([
require('snabbdom/modules/eventlisteners')
, require('snabbdom/modules/class')
, require('snabbdom/modules/props')
, require('snabbdom/modules/style')
])
var state = init()
render({patch, view, state, container})
// Initialize the froala wysiwyg
appl.def('initialize_froala', function(){
var editable = require('../../common/editable')
editable($('.editable'), {
email_buttons: true,
placeholder: 'Edit donation receipt message here.',
sticky: true,
noUpdateOnChange: true
})
})
var np_route = '/nonprofits/' + app.nonprofit_id
appl.def('update_card_failure_message', function() {
appl.def('card_failure_message.loading', true)
var messageTop = document.getElementById('js-messageTop').innerHTML
var messageBottom = document.getElementById('js-messageBottom').innerHTML
var data = { nonprofit: {
card_failure_message_top: messageTop
,card_failure_message_bottom: messageBottom
}
}
request.put(np_route + '.json').send(data).end(function(resp) {
appl.notify('Card failure email successfully saved')
appl.def('card_failure_message.loading', false)
})
})
appl.def('update_custom_receipt', function(node) {
appl.def('receipt.loading', true)
var classToFind = getClassToFindEditor()
var receipt = appl.prev_elem(node).getElementsByClassName(classToFind)[0].innerHTML
var data = { nonprofit: {thank_you_note: receipt} }
request.put(np_route + '.json').send(data).end(function(resp) {
appl.notify('Receipt successfully saved')
appl.def('receipt.loading', false)
})
})
appl.def('update_change_amount_message', function(node) {
appl.def('receipt.loading', true)
var classToFind = getClassToFindEditor()
var msg = appl.prev_elem(node).getElementsByClassName(classToFind)[0].innerHTML
var data = { miscellaneous_np_info: {change_amount_message: msg} }
request.put(np_route + '/miscellaneous_np_info.json').send(data).end(function(resp) {
appl.notify('Change amount message saved')
appl.def('receipt.loading', false)
})
})
if(app.current_nonprofit_user) {
appl.verify_identity = require('../../nonprofits/payouts/index/verify_identity')
appl.create_bank_account = require('../../bank_accounts/create.es6')
}
appl.def('statement.validate', function(node) {
var statement_val = appl.prev_elem(node).value
appl.def('statement.name', statement_val)
if(statement_val.search(/[^\w+(<{@?&!$;:\.\-\'\"\,\s}>)]/gi) < 0) {
appl.def('statement.invalid', false)
appl.def('error', '')
}
else {
appl.def('statement.invalid', true)
appl.def('error', 'Statement name cannot contain special characters')
}
})
appl.def('cancel_billing_subscription', function() {
appl.notify('Cancelling subscription...')
appl.def('loading', true)
request.put(np_route + '/billing_subscription/cancel')
.send({}).end(function(resp) {
appl.def('loading', false)
})
})
function getClassToFindEditor()
{
if (app.editor === 'froala' )
return "froala-element"
else if (app.editor === 'quill')
return "ql-editor"
}
window.onload = function() {
appl.initialize_froala()
}