File size: 5,844 Bytes
71174bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | <template>
<PluginComponent :infoPayload="infoPayload" v-model="open" @onPopupDone="onPopupDone" @onPopupCancel="onPopupCancel"
@onUserArgChanged="onUserArgChanged" actionBtnTxt="Enable & Support" cancelBtnTxt="No, Thanks"
cancelBtnClass="btn-link text-decoration-none text-secondary" :cancelXBtn="false"
@onMolCountsChanged="onMolCountsChanged">
<div>
<!-- <p class="fs-5 fw-medium text-center mb-3">
Help keep {{ appName }} free and open-source.
</p> -->
<p>
{{ appName }} depends on grant funding. To secure these grants,
we need to show funding agencies that the software is actively used.
</p>
<div class="card bg-light mb-3">
<div class="card-body p-2">
<h6 class="card-title mb-2">Our Privacy Guarantee:</h6>
<div class="d-flex align-items-center mb-1">
<span class="text-success me-2">✔</span>
<small>We <strong>DO</strong> collect basic usage statistics.</small>
</div>
<div class="d-flex align-items-center mb-1">
<span class="text-success me-2">✔</span>
<small>We <strong>DO</strong> save your layout and preferences locally via cookies.</small>
</div>
<div class="d-flex align-items-center">
<span class="text-danger me-2 fw-bold">✕</span>
<small>We <strong>NEVER</strong> collect your molecules, sequences, or results.</small>
</div>
</div>
</div>
<p class="mt-3 mb-0" style="font-size: 0.75rem; line-height: 1.3; color: #999;">
If you click "Enable & Support", basic usage data will be sent to Google in the United States,
subject to U.S.
law.
{{ appName }} works without cookies. You can revoke consent anytime via
<PluginPathLink plugin="settings" linkClass="text-reset text-decoration-underline"></PluginPathLink>.
</p>
</div>
</PluginComponent>
</template>
<script lang="ts">
import PluginComponent from "../../Parents/PluginComponent/PluginComponent.vue";
import { PluginParentClass } from "../../Parents/PluginParentClass/PluginParentClass";
import { Options } from "vue-class-component";
import { isStatStatusSet, disableStats, enableStats } from "./StatUtils";
import {
ISoftwareCredit,
IContributorCredit,
} from "@/Plugins/PluginInterfaces";
import { UserArg } from "@/UI/Forms/FormFull/FormFullInterfaces";
import { ITest } from "@/Testing/TestInterfaces";
import { isTest } from "@/Core/GlobalVars";
import { appName } from "@/Core/GlobalVars";
import * as api from "@/Api";
import PluginPathLink from "@/UI/Navigation/PluginPathLink.vue";
import { Tag } from "@/Plugins/Core/ActivityFocus/ActivityFocusUtils";
/**
* StatCollectionPlugin
*/
@Options({
components: {
PluginComponent,
PluginPathLink
},
})
export default class StatCollectionPlugin extends PluginParentClass {
// menuPath = "Test/StatCollection...";
menuPath = null;
softwareCredits: ISoftwareCredit[] = [];
contributorCredits: IContributorCredit[] = [];
// {
// name: "Yuri K. Kochnev",
// // url: "durrantlab.com",
// },
// ];
pluginId = "statcollection";
intro = null; // "Support future development.";
details = null; // "Anonymous usage statistics help us secure funding to keep MolModa free.";
title = `Support ${appName}?`;
open = false;
tags = [Tag.All];
userArgDefaults: UserArg[] = [];
/**
* The name of the application.
*
* @returns {string} The name of the application.
*/
get appName(): string {
return appName;
}
/**
* Runs when the user presses the cancel button and the popup closes.
*/
onPopupCancel() {
// Check back in a few days
disableStats();
}
/**
* Runs when the user presses the action button and the popup closes. Does
* not run with cancel button.
*/
onPopupDone() {
enableStats();
}
/**
* Each plugin is associated with specific jobs (calculations). Most of
* these will run in the browser itself, rather than on a remote computing
* resource. This function runs a single job in the browser (or calls the
* JavaScript/WASM libraries to run the job). The job-queue system calls
* `runJob` directly.
*
* @param {any} args One of the parameterSets items submitted via the
* `submitJobs` function. Optional.
* @returns {Promise<void>} A promise that resolves when the job is done.
* Return void if there's nothing to return.
*/
runJobInBrowser(args: any): Promise<void> {
return Promise.resolve();
}
/**
* Gets the test commands for the plugin. For advanced use.
*
* @returns {ITest[]} The selenium test command(s).
*/
async getTests(): Promise<ITest[]> {
// Not going to test closing, etc. (Too much work.) But at least opens
// to see if an error occurs.
api.plugins.runPlugin(this.pluginId, {});
return [];
}
/**
* Runs when the plugin is first loaded.
*/
async onMounted() {
// Putting this in a timeout to avoid a testing error. Sometimes the
// javascript hasn't completely loaded yet. Hacky, admittedly.
setTimeout(async () => {
const statStatusSet = await isStatStatusSet();
this.open = !isTest && !statStatusSet;
}, 1000);
}
}
</script> |