You've already forked AstralRinth
forked from didirus/AstralRinth
* feat: start on tax compliance * feat: avarala1099 composable * fix: shouldShow should be managed on the page itself * refactor: move show logic to revenue page * feat: security practices rather than info * feat: withdraw page lock * fix: empty modal bug & lint issues * feat: hide behind feature flag * Use standard admonition components, make casing consistent * modal title * lint * feat: withdrawal check * feat: tax cap on withdrawals warning * feat: start on revenue page overhaul * feat: segment generation for bar * feat: tooltips and links * fix: tooltip border * feat: finish initial layout, start on withdraw modal * feat: start on withdrawal limit stage * feat: shade support for primary colors * feat: start on withdraw details stage * fix: convert swatches to hex * feat: payout method/region dropdown temporarily using multiselect * feat: fix modal open issues and use teleport dropdowns * feat: hide transactions section if there are no transactions * refactor: NavStack surfaces * feat: new dropdown component * feat: remove teleport dropdown modal in favour of new combobox component * fix: lint * refactor: dashboard sidebar layout * feat: cleanup * fix: niche bugs * fix: ComboBox styling * feat: first part of qa * feat: animate flash rather than tooltip * fix: lint * feat: qa border gradient * fix: seg hover flashes * feat: i18n * feat: i18n and final QA * fix: lint * feat: QA * fix: lint * fix: merge conflicts * fix: intl * fix: blue hover * fix: transfers page * feat: surface variables & gradients * feat: text vars * fix: lint * fix: intl * feat: stages * fix: lint * feat: region selection * feat: method selection btns * fix: flex col on transactions * feat: hook up method selection to ctx * feat: muralpay kyc stage info * wip: muralpay integration * Basic Mural Pay API bindings * Fix clippy * use dotenvy in muralpay example * Refactor payout creation code * wip: muralpay payout requests * Mural Pay payouts work * Fix clippy * feat: progress * fix: broken tax form stage logic * polish: tax form stage and method selection stage layout * add mural pay fees API * Work on payout fee API * Fees API for more payment methods * Fix CI * polish: muralpay qa * refactor: clean up combobox component * polish: change from critical -> warning admonition in MuralpayDetailsStage * Temporarily disable Venmo and PayPal methods from frontend * polish: clean up transaction component & page * polish: navbar qa, text color-contrast in chips type buttonstyled, mb on rev/index.vue page * fix: incorrectly using available balance as tax form withdraw limit after tax forms submitted * wip: counterparties * Start on counterparties and payment methods API * polish: combobox component * polish: fix broken scroll logic using a composable & web:fix * fix: lint * polish: various QA fixes * feat: hook up with backend (wip) * feat: draft muralpay rails dynamic logic * polish: modify rails to support backend changes * Mural Pay multiple methods when fetching * Don't send supported_countries to frontend * Mural Pay multiple methods when fetching * Don't send supported_countries to frontend * feat: fees & methods endpoint hookup * chore: remove duplicates fix * polish: qa changes + figma match * Add countries to muralpay fiat methods * Compile fix * Add exchange rate info to fees endpoint * Add fees to premium Tremendous options * polish: i18n and better document type dropdown -> id input labels * feat: tremendous * fix: lint & i18n * feat: reintroduce tin mismatch logic to index.vue * polish: qa * fix: i18n * feat: remove teleport dropdown menu - combobox should be used * fix: lint * fix: jsdoc * feat: checkbox for reward program terms * Add delivery email field to Tremendous payouts * Add Tremendous product category to payout methods * Add bank details API to muralpay * Fix CI * Fix CI * polish: qa changes * feat: i18n pass * feat: deduplicate methods endpoint & fix i18n issues * chore: deduplicate i18n strings into common-messages.ts * fix: lint * fix: i18n * feat: estimates * polish: more QA * Remove prepaid visa, compute fees properly for Tremendous methods * Add more details to Tremendous errors * feat: withdraw endpoint impl & internals refactor * Add more details to Tremendous errors * feat: completion stage * Add fees to Mural * feat: transactions page match figma * fix: i18n * polish: QA changes * polish: qa * Payout history route and bank details * polish: autofill and requirements checks * fix: i18n + lint * fix: fiat rail fees * polish: move scroll fade stuff into NewModal rather than just CreatorWithdrawModal * feat: simplify action btn logic & tax form error * fix: tax -> Tax form * Re-add legacy PayPal/Venmo options for US * feat: mobile responsiveness fixes for modal * fix: responsiveness issues * feat: navstack responsiveness * fix: responsiveness * move the mural bank details route * fix: generated state cleanup & bank details input * fix: lint & i18n * Add utoipa support to payout endpoints * address some PR comments * polish: qa * add CORS to new utoipa routes * feat: legacy paypal/venmo stage * polish: reset amount on back qa * revert: navstack mr changes * polish: loading indicator on method selection stage * fix: paypal modal doesnt reopen after auth * fix: lint & i18n * fix: paypal flow * polish: qa changes * fix: gitignore * polish: qa fixes * fix: payouts_available in payouts.rs * fix: bug when limit is zero * polish: qa changes * fix: qa stuff & muralpay sub-division fix * Immediately approve mural payouts * Add currency support to Tremendous payouts * Currency forex * add forex to tremendous fee request * polish: qa & currency support for paypal tremendous * polish: fx qa * feat: demo mode flag * fix: i18n & padding issues * polish: qa changes * fix: ml * Add Mural balance to bank balance info * polish: show warning for paypal international USD withdrawals + more currencies * Add more Tremendous currencies support * fix: colors on balance bars * fix: empty states * fix: pl-8 mobile issue * fix: hide see all * Transaction payouts available use the correct date * Address my own review comment * Address PR comments * Change Mural withdrawal limit to 3k * fix: empty state + paypal warning * maybe fix tremendous gift cards * Change how Mural minimum withdrawals are calculated * Tweak min/max withdrawal values * fix: segment brightness * fix: min & max for muralpay & legacy paypal * Fix some icon issues * more issues * fix user menu * fix: remove + network --------- Signed-off-by: Calum H. <contact@cal.engineer> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com> Co-authored-by: aecsocket <aecsocket@tutanota.com> Co-authored-by: Alejandro González <me@alegon.dev>
258 lines
7.0 KiB
JavaScript
258 lines
7.0 KiB
JavaScript
export const getProjectTypeForUrl = (type, categories) => {
|
||
return getProjectTypeForUrlShorthand(type, categories)
|
||
}
|
||
|
||
export const getProjectTypeForUrlShorthand = (type, categories, overrideTags) => {
|
||
const tags = overrideTags ?? useGeneratedState().value
|
||
|
||
if (type === 'mod') {
|
||
const isMod = categories.some((category) => {
|
||
return tags.loaderData.modLoaders.includes(category)
|
||
})
|
||
|
||
const isPlugin = categories.some((category) => {
|
||
return tags.loaderData.allPluginLoaders.includes(category)
|
||
})
|
||
|
||
const isDataPack = categories.some((category) => {
|
||
return tags.loaderData.dataPackLoaders.includes(category)
|
||
})
|
||
|
||
if (isDataPack) {
|
||
return 'datapack'
|
||
} else if (isPlugin) {
|
||
return 'plugin'
|
||
} else if (isMod) {
|
||
return 'mod'
|
||
} else {
|
||
return 'mod'
|
||
}
|
||
} else {
|
||
return type
|
||
}
|
||
}
|
||
|
||
export const getProjectLink = (project) => {
|
||
return `/${getProjectTypeForUrl(project.project_type, project.loaders)}/${
|
||
project.slug ? project.slug : project.id
|
||
}`
|
||
}
|
||
|
||
export const getVersionLink = (project, version) => {
|
||
if (version) {
|
||
return getProjectLink(project) + '/version/' + version.id
|
||
} else {
|
||
return getProjectLink(project)
|
||
}
|
||
}
|
||
|
||
export const isApproved = (project) => {
|
||
return project && APPROVED_PROJECT_STATUSES.includes(project.status)
|
||
}
|
||
|
||
export const isListed = (project) => {
|
||
return project && LISTED_PROJECT_STATUSES.includes(project.status)
|
||
}
|
||
|
||
export const isUnlisted = (project) => {
|
||
return project && UNLISTED_PROJECT_STATUSES.includes(project.status)
|
||
}
|
||
|
||
export const isPrivate = (project) => {
|
||
return project && PRIVATE_PROJECT_STATUSES.includes(project.status)
|
||
}
|
||
|
||
export const isRejected = (project) => {
|
||
return project && REJECTED_PROJECT_STATUSES.includes(project.status)
|
||
}
|
||
|
||
export const isUnderReview = (project) => {
|
||
return project && UNDER_REVIEW_PROJECT_STATUSES.includes(project.status)
|
||
}
|
||
|
||
export const isDraft = (project) => {
|
||
return project && DRAFT_PROJECT_STATUSES.includes(project.status)
|
||
}
|
||
|
||
export const APPROVED_PROJECT_STATUSES = ['approved', 'archived', 'unlisted', 'private']
|
||
export const LISTED_PROJECT_STATUSES = ['approved', 'archived']
|
||
export const UNLISTED_PROJECT_STATUSES = ['unlisted', 'withheld']
|
||
export const PRIVATE_PROJECT_STATUSES = ['private', 'rejected', 'processing']
|
||
export const REJECTED_PROJECT_STATUSES = ['rejected', 'withheld']
|
||
export const UNDER_REVIEW_PROJECT_STATUSES = ['processing']
|
||
export const DRAFT_PROJECT_STATUSES = ['draft']
|
||
|
||
export function getVersionsToDisplay(project) {
|
||
return formatVersionsForDisplay(project.game_versions.slice())
|
||
}
|
||
|
||
export function formatVersionsForDisplay(gameVersions, overrideTags) {
|
||
const tags = overrideTags ?? useGeneratedState().value
|
||
|
||
const inputVersions = gameVersions.slice()
|
||
const allVersions = tags.gameVersions.slice()
|
||
|
||
const allSnapshots = allVersions.filter((version) => version.version_type === 'snapshot')
|
||
const allReleases = allVersions.filter((version) => version.version_type === 'release')
|
||
const allLegacy = allVersions.filter(
|
||
(version) => version.version_type !== 'snapshot' && version.version_type !== 'release',
|
||
)
|
||
|
||
{
|
||
const indices = allVersions.reduce((map, gameVersion, index) => {
|
||
map[gameVersion.version] = index
|
||
return map
|
||
}, {})
|
||
inputVersions.sort((a, b) => indices[a] - indices[b])
|
||
}
|
||
|
||
const releaseVersions = inputVersions.filter((projVer) =>
|
||
allReleases.some((gameVer) => gameVer.version === projVer),
|
||
)
|
||
|
||
const latestReleaseVersionDate = Date.parse(
|
||
allReleases.find((version) => version.version === releaseVersions[0])?.date,
|
||
)
|
||
const latestSnapshot = inputVersions.find((projVer) =>
|
||
allSnapshots.some(
|
||
(gameVer) =>
|
||
gameVer.version === projVer &&
|
||
(!latestReleaseVersionDate || latestReleaseVersionDate < Date.parse(gameVer.date)),
|
||
),
|
||
)
|
||
|
||
const allReleasesGrouped = groupVersions(
|
||
allReleases.map((release) => release.version),
|
||
false,
|
||
)
|
||
const projectVersionsGrouped = groupVersions(releaseVersions, true)
|
||
|
||
const releaseVersionsAsRanges = projectVersionsGrouped.map(({ major, minor }) => {
|
||
if (minor.length === 1) {
|
||
return formatVersion(major, minor[0])
|
||
}
|
||
|
||
if (
|
||
allReleasesGrouped
|
||
.find((x) => x.major === major)
|
||
.minor.every((value, index) => value === minor[index])
|
||
) {
|
||
return `${major}.x`
|
||
}
|
||
|
||
return `${formatVersion(major, minor[0])}–${formatVersion(major, minor[minor.length - 1])}`
|
||
})
|
||
|
||
const legacyVersionsAsRanges = groupConsecutiveIndices(
|
||
inputVersions.filter((projVer) => allLegacy.some((gameVer) => gameVer.version === projVer)),
|
||
allLegacy,
|
||
)
|
||
|
||
let output = [...legacyVersionsAsRanges]
|
||
|
||
// show all snapshots if there's no release versions
|
||
if (releaseVersionsAsRanges.length === 0) {
|
||
const snapshotVersionsAsRanges = groupConsecutiveIndices(
|
||
inputVersions.filter((projVer) =>
|
||
allSnapshots.some((gameVer) => gameVer.version === projVer),
|
||
),
|
||
allSnapshots,
|
||
)
|
||
output = [...snapshotVersionsAsRanges, ...output]
|
||
} else {
|
||
output = [...releaseVersionsAsRanges, ...output]
|
||
}
|
||
|
||
if (latestSnapshot && !output.includes(latestSnapshot)) {
|
||
output = [latestSnapshot, ...output]
|
||
}
|
||
return output
|
||
}
|
||
|
||
const mcVersionRegex = /^([0-9]+.[0-9]+)(.[0-9]+)?$/
|
||
|
||
function groupVersions(versions, consecutive = false) {
|
||
return versions
|
||
.slice()
|
||
.reverse()
|
||
.reduce((ranges, version) => {
|
||
const matchesVersion = version.match(mcVersionRegex)
|
||
|
||
if (matchesVersion) {
|
||
const majorVersion = matchesVersion[1]
|
||
const minorVersion = matchesVersion[2]
|
||
const minorNumeric = minorVersion ? parseInt(minorVersion.replace('.', '')) : 0
|
||
|
||
let prevInRange
|
||
if (
|
||
(prevInRange = ranges.find(
|
||
(x) =>
|
||
x.major === majorVersion && (!consecutive || x.minor.at(-1) === minorNumeric - 1),
|
||
))
|
||
) {
|
||
prevInRange.minor.push(minorNumeric)
|
||
return ranges
|
||
}
|
||
|
||
return [...ranges, { major: majorVersion, minor: [minorNumeric] }]
|
||
}
|
||
|
||
return ranges
|
||
}, [])
|
||
.reverse()
|
||
}
|
||
|
||
function groupConsecutiveIndices(versions, referenceList) {
|
||
if (!versions || versions.length === 0) {
|
||
return []
|
||
}
|
||
|
||
const referenceMap = new Map()
|
||
referenceList.forEach((item, index) => {
|
||
referenceMap.set(item.version, index)
|
||
})
|
||
|
||
const sortedList = versions.slice().sort((a, b) => referenceMap.get(a) - referenceMap.get(b))
|
||
|
||
const ranges = []
|
||
let start = sortedList[0]
|
||
let previous = sortedList[0]
|
||
|
||
for (let i = 1; i < sortedList.length; i++) {
|
||
const current = sortedList[i]
|
||
if (referenceMap.get(current) !== referenceMap.get(previous) + 1) {
|
||
ranges.push(validateRange(`${previous}–${start}`))
|
||
start = current
|
||
}
|
||
previous = current
|
||
}
|
||
|
||
ranges.push(validateRange(`${previous}–${start}`))
|
||
|
||
return ranges
|
||
}
|
||
|
||
function validateRange(range) {
|
||
switch (range) {
|
||
case 'rd-132211–b1.8.1':
|
||
return 'All legacy versions'
|
||
case 'a1.0.4–b1.8.1':
|
||
return 'All alpha and beta versions'
|
||
case 'a1.0.4–a1.2.6':
|
||
return 'All alpha versions'
|
||
case 'b1.0–b1.8.1':
|
||
return 'All beta versions'
|
||
case 'rd-132211–inf20100618':
|
||
return 'All pre-alpha versions'
|
||
}
|
||
const splitRange = range.split('–')
|
||
if (splitRange && splitRange[0] === splitRange[1]) {
|
||
return splitRange[0]
|
||
}
|
||
return range
|
||
}
|
||
|
||
function formatVersion(major, minor) {
|
||
return minor === 0 ? major : `${major}.${minor}`
|
||
}
|