mirror of
https://github.com/go-gitea/gitea.git
synced 2024-09-01 14:56:30 +00:00
Merge branch 'main' into xormigrate
This commit is contained in:
commit
50b11454d0
@ -568,7 +568,7 @@ rules:
|
|||||||
no-jquery/no-param: [2]
|
no-jquery/no-param: [2]
|
||||||
no-jquery/no-parent: [0]
|
no-jquery/no-parent: [0]
|
||||||
no-jquery/no-parents: [2]
|
no-jquery/no-parents: [2]
|
||||||
no-jquery/no-parse-html-literal: [0]
|
no-jquery/no-parse-html-literal: [2]
|
||||||
no-jquery/no-parse-html: [2]
|
no-jquery/no-parse-html: [2]
|
||||||
no-jquery/no-parse-json: [2]
|
no-jquery/no-parse-json: [2]
|
||||||
no-jquery/no-parse-xml: [2]
|
no-jquery/no-parse-xml: [2]
|
||||||
|
@ -2981,6 +2981,10 @@ emails.not_updated=Falhou a modificação do endereço de email solicitado: %v
|
|||||||
emails.duplicate_active=Este endereço de email já está a ser usado por outro utilizador.
|
emails.duplicate_active=Este endereço de email já está a ser usado por outro utilizador.
|
||||||
emails.change_email_header=Modificar propriedades do email
|
emails.change_email_header=Modificar propriedades do email
|
||||||
emails.change_email_text=Tem a certeza que quer modificar este endereço de email?
|
emails.change_email_text=Tem a certeza que quer modificar este endereço de email?
|
||||||
|
emails.delete=Eliminar email
|
||||||
|
emails.delete_desc=Tem a certeza que quer eliminar este endereço de email?
|
||||||
|
emails.deletion_success=O endereço de email foi eliminado.
|
||||||
|
emails.delete_primary_email_error=Não pode eliminar o email principal.
|
||||||
|
|
||||||
orgs.org_manage_panel=Gestão das organizações
|
orgs.org_manage_panel=Gestão das organizações
|
||||||
orgs.name=Nome
|
orgs.name=Nome
|
||||||
|
@ -327,7 +327,7 @@ func getOAuthGroupsForUser(ctx go_context.Context, user *user_model.User) ([]str
|
|||||||
|
|
||||||
func parseBasicAuth(ctx *context.Context) (username, password string, err error) {
|
func parseBasicAuth(ctx *context.Context) (username, password string, err error) {
|
||||||
authHeader := ctx.Req.Header.Get("Authorization")
|
authHeader := ctx.Req.Header.Get("Authorization")
|
||||||
if authType, authData, ok := strings.Cut(authHeader, " "); ok && authType == "Basic" {
|
if authType, authData, ok := strings.Cut(authHeader, " "); ok && strings.EqualFold(authType, "Basic") {
|
||||||
return base.BasicAuthDecode(authData)
|
return base.BasicAuthDecode(authData)
|
||||||
}
|
}
|
||||||
return "", "", errors.New("invalid basic authentication")
|
return "", "", errors.New("invalid basic authentication")
|
||||||
@ -661,7 +661,7 @@ func AccessTokenOAuth(ctx *context.Context) {
|
|||||||
// if there is no ClientID or ClientSecret in the request body, fill these fields by the Authorization header and ensure the provided field matches the Authorization header
|
// if there is no ClientID or ClientSecret in the request body, fill these fields by the Authorization header and ensure the provided field matches the Authorization header
|
||||||
if form.ClientID == "" || form.ClientSecret == "" {
|
if form.ClientID == "" || form.ClientSecret == "" {
|
||||||
authHeader := ctx.Req.Header.Get("Authorization")
|
authHeader := ctx.Req.Header.Get("Authorization")
|
||||||
if authType, authData, ok := strings.Cut(authHeader, " "); ok && authType == "Basic" {
|
if authType, authData, ok := strings.Cut(authHeader, " "); ok && strings.EqualFold(authType, "Basic") {
|
||||||
clientID, clientSecret, err := base.BasicAuthDecode(authData)
|
clientID, clientSecret, err := base.BasicAuthDecode(authData)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
handleAccessTokenError(ctx, AccessTokenError{
|
handleAccessTokenError(ctx, AccessTokenError{
|
||||||
|
@ -12,6 +12,7 @@ import (
|
|||||||
"code.gitea.io/gitea/models/db"
|
"code.gitea.io/gitea/models/db"
|
||||||
git_model "code.gitea.io/gitea/models/git"
|
git_model "code.gitea.io/gitea/models/git"
|
||||||
user_model "code.gitea.io/gitea/models/user"
|
user_model "code.gitea.io/gitea/models/user"
|
||||||
|
actions_module "code.gitea.io/gitea/modules/actions"
|
||||||
git "code.gitea.io/gitea/modules/git"
|
git "code.gitea.io/gitea/modules/git"
|
||||||
"code.gitea.io/gitea/modules/log"
|
"code.gitea.io/gitea/modules/log"
|
||||||
api "code.gitea.io/gitea/modules/structs"
|
api "code.gitea.io/gitea/modules/structs"
|
||||||
@ -54,7 +55,11 @@ func createCommitStatus(ctx context.Context, job *actions_model.ActionRunJob) er
|
|||||||
}
|
}
|
||||||
sha = payload.HeadCommit.ID
|
sha = payload.HeadCommit.ID
|
||||||
case webhook_module.HookEventPullRequest, webhook_module.HookEventPullRequestSync:
|
case webhook_module.HookEventPullRequest, webhook_module.HookEventPullRequestSync:
|
||||||
event = "pull_request"
|
if run.TriggerEvent == actions_module.GithubEventPullRequestTarget {
|
||||||
|
event = "pull_request_target"
|
||||||
|
} else {
|
||||||
|
event = "pull_request"
|
||||||
|
}
|
||||||
payload, err := run.GetPullRequestEventPayload()
|
payload, err := run.GetPullRequestEventPayload()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("GetPullRequestEventPayload: %w", err)
|
return fmt.Errorf("GetPullRequestEventPayload: %w", err)
|
||||||
|
4
types.d.ts
vendored
4
types.d.ts
vendored
@ -10,6 +10,10 @@ interface Window {
|
|||||||
$: typeof import('@types/jquery'),
|
$: typeof import('@types/jquery'),
|
||||||
jQuery: typeof import('@types/jquery'),
|
jQuery: typeof import('@types/jquery'),
|
||||||
htmx: typeof import('htmx.org'),
|
htmx: typeof import('htmx.org'),
|
||||||
|
_globalHandlerErrors: Array<ErrorEvent & PromiseRejectionEvent> & {
|
||||||
|
_inited: boolean,
|
||||||
|
push: (e: ErrorEvent & PromiseRejectionEvent) => void | number,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'htmx.org/dist/htmx.esm.js' {
|
declare module 'htmx.org/dist/htmx.esm.js' {
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
// DO NOT IMPORT window.config HERE!
|
// DO NOT IMPORT window.config HERE!
|
||||||
// to make sure the error handler always works, we should never import `window.config`, because
|
// to make sure the error handler always works, we should never import `window.config`, because
|
||||||
// some user's custom template breaks it.
|
// some user's custom template breaks it.
|
||||||
|
import type {Intent} from './types.ts';
|
||||||
|
|
||||||
// This sets up the URL prefix used in webpack's chunk loading.
|
// This sets up the URL prefix used in webpack's chunk loading.
|
||||||
// This file must be imported before any lazy-loading is being attempted.
|
// This file must be imported before any lazy-loading is being attempted.
|
||||||
__webpack_public_path__ = `${window.config?.assetUrlPrefix ?? '/assets'}/`;
|
__webpack_public_path__ = `${window.config?.assetUrlPrefix ?? '/assets'}/`;
|
||||||
|
|
||||||
function shouldIgnoreError(err) {
|
function shouldIgnoreError(err: Error) {
|
||||||
const ignorePatterns = [
|
const ignorePatterns = [
|
||||||
'/assets/js/monaco.', // https://github.com/go-gitea/gitea/issues/30861 , https://github.com/microsoft/monaco-editor/issues/4496
|
'/assets/js/monaco.', // https://github.com/go-gitea/gitea/issues/30861 , https://github.com/microsoft/monaco-editor/issues/4496
|
||||||
];
|
];
|
||||||
@ -16,14 +17,14 @@ function shouldIgnoreError(err) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function showGlobalErrorMessage(msg, msgType = 'error') {
|
export function showGlobalErrorMessage(msg: string, msgType: Intent = 'error') {
|
||||||
const msgContainer = document.querySelector('.page-content') ?? document.body;
|
const msgContainer = document.querySelector('.page-content') ?? document.body;
|
||||||
const msgCompact = msg.replace(/\W/g, '').trim(); // compact the message to a data attribute to avoid too many duplicated messages
|
const msgCompact = msg.replace(/\W/g, '').trim(); // compact the message to a data attribute to avoid too many duplicated messages
|
||||||
let msgDiv = msgContainer.querySelector(`.js-global-error[data-global-error-msg-compact="${msgCompact}"]`);
|
let msgDiv = msgContainer.querySelector<HTMLDivElement>(`.js-global-error[data-global-error-msg-compact="${msgCompact}"]`);
|
||||||
if (!msgDiv) {
|
if (!msgDiv) {
|
||||||
const el = document.createElement('div');
|
const el = document.createElement('div');
|
||||||
el.innerHTML = `<div class="ui container js-global-error tw-my-[--page-spacing]"><div class="ui ${msgType} message tw-text-center tw-whitespace-pre-line"></div></div>`;
|
el.innerHTML = `<div class="ui container js-global-error tw-my-[--page-spacing]"><div class="ui ${msgType} message tw-text-center tw-whitespace-pre-line"></div></div>`;
|
||||||
msgDiv = el.childNodes[0];
|
msgDiv = el.childNodes[0] as HTMLDivElement;
|
||||||
}
|
}
|
||||||
// merge duplicated messages into "the message (count)" format
|
// merge duplicated messages into "the message (count)" format
|
||||||
const msgCount = Number(msgDiv.getAttribute(`data-global-error-msg-count`)) + 1;
|
const msgCount = Number(msgDiv.getAttribute(`data-global-error-msg-count`)) + 1;
|
||||||
@ -33,18 +34,7 @@ export function showGlobalErrorMessage(msg, msgType = 'error') {
|
|||||||
msgContainer.prepend(msgDiv);
|
msgContainer.prepend(msgDiv);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
function processWindowErrorEvent({error, reason, message, type, filename, lineno, colno}: ErrorEvent & PromiseRejectionEvent) {
|
||||||
* @param {ErrorEvent|PromiseRejectionEvent} event - Event
|
|
||||||
* @param {string} event.message - Only present on ErrorEvent
|
|
||||||
* @param {string} event.error - Only present on ErrorEvent
|
|
||||||
* @param {string} event.type - Only present on ErrorEvent
|
|
||||||
* @param {string} event.filename - Only present on ErrorEvent
|
|
||||||
* @param {number} event.lineno - Only present on ErrorEvent
|
|
||||||
* @param {number} event.colno - Only present on ErrorEvent
|
|
||||||
* @param {string} event.reason - Only present on PromiseRejectionEvent
|
|
||||||
* @param {number} event.promise - Only present on PromiseRejectionEvent
|
|
||||||
*/
|
|
||||||
function processWindowErrorEvent({error, reason, message, type, filename, lineno, colno}) {
|
|
||||||
const err = error ?? reason;
|
const err = error ?? reason;
|
||||||
const assetBaseUrl = String(new URL(__webpack_public_path__, window.location.origin));
|
const assetBaseUrl = String(new URL(__webpack_public_path__, window.location.origin));
|
||||||
const {runModeIsProd} = window.config ?? {};
|
const {runModeIsProd} = window.config ?? {};
|
||||||
@ -90,7 +80,8 @@ function initGlobalErrorHandler() {
|
|||||||
}
|
}
|
||||||
// then, change _globalHandlerErrors to an object with push method, to process further error
|
// then, change _globalHandlerErrors to an object with push method, to process further error
|
||||||
// events directly
|
// events directly
|
||||||
window._globalHandlerErrors = {_inited: true, push: (e) => processWindowErrorEvent(e)};
|
// @ts-expect-error -- this should be refactored to not use a fake array
|
||||||
|
window._globalHandlerErrors = {_inited: true, push: (e: ErrorEvent & PromiseRejectionEvent) => processWindowErrorEvent(e)};
|
||||||
}
|
}
|
||||||
|
|
||||||
initGlobalErrorHandler();
|
initGlobalErrorHandler();
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import $ from 'jquery';
|
import $ from 'jquery';
|
||||||
import {htmlEscape} from 'escape-goat';
|
import {htmlEscape} from 'escape-goat';
|
||||||
import {createCodeEditor} from './codeeditor.ts';
|
import {createCodeEditor} from './codeeditor.ts';
|
||||||
import {hideElem, queryElems, showElem} from '../utils/dom.ts';
|
import {hideElem, queryElems, showElem, createElementFromHTML} from '../utils/dom.ts';
|
||||||
import {initMarkupContent} from '../markup/content.ts';
|
import {initMarkupContent} from '../markup/content.ts';
|
||||||
import {attachRefIssueContextPopup} from './contextpopup.ts';
|
import {attachRefIssueContextPopup} from './contextpopup.ts';
|
||||||
import {POST} from '../modules/fetch.ts';
|
import {POST} from '../modules/fetch.ts';
|
||||||
@ -61,7 +61,7 @@ export function initRepoEditor() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const filenameInput = document.querySelector('#file-name');
|
const filenameInput = document.querySelector<HTMLInputElement>('#file-name');
|
||||||
function joinTreePath() {
|
function joinTreePath() {
|
||||||
const parts = [];
|
const parts = [];
|
||||||
for (const el of document.querySelectorAll('.breadcrumb span.section')) {
|
for (const el of document.querySelectorAll('.breadcrumb span.section')) {
|
||||||
@ -80,8 +80,12 @@ export function initRepoEditor() {
|
|||||||
const value = parts[i];
|
const value = parts[i];
|
||||||
if (i < parts.length - 1) {
|
if (i < parts.length - 1) {
|
||||||
if (value.length) {
|
if (value.length) {
|
||||||
$(`<span class="section"><a href="#">${htmlEscape(value)}</a></span>`).insertBefore($(filenameInput));
|
filenameInput.before(createElementFromHTML(
|
||||||
$('<div class="breadcrumb-divider">/</div>').insertBefore($(filenameInput));
|
`<span class="section"><a href="#">${htmlEscape(value)}</a></span>`,
|
||||||
|
));
|
||||||
|
filenameInput.before(createElementFromHTML(
|
||||||
|
`<div class="breadcrumb-divider">/</div>`,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
filenameInput.value = value;
|
filenameInput.value = value;
|
||||||
|
@ -5,7 +5,9 @@ import {GET, POST} from '../modules/fetch.ts';
|
|||||||
const {appSubUrl} = window.config;
|
const {appSubUrl} = window.config;
|
||||||
|
|
||||||
export async function initUserAuthWebAuthn() {
|
export async function initUserAuthWebAuthn() {
|
||||||
if (!document.querySelector('.user.signin')) {
|
const elPrompt = document.querySelector('.user.signin.webauthn-prompt');
|
||||||
|
const elSignInPasskeyBtn = document.querySelector('.signin-passkey');
|
||||||
|
if (!elPrompt && !elSignInPasskeyBtn) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -13,12 +15,10 @@ export async function initUserAuthWebAuthn() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const elSignInPasskeyBtn = document.querySelector('.signin-passkey');
|
|
||||||
if (elSignInPasskeyBtn) {
|
if (elSignInPasskeyBtn) {
|
||||||
elSignInPasskeyBtn.addEventListener('click', loginPasskey);
|
elSignInPasskeyBtn.addEventListener('click', loginPasskey);
|
||||||
}
|
}
|
||||||
|
|
||||||
const elPrompt = document.querySelector('.user.signin.webauthn-prompt');
|
|
||||||
if (elPrompt) {
|
if (elPrompt) {
|
||||||
login2FA();
|
login2FA();
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import {isObject} from '../utils.ts';
|
import {isObject} from '../utils.ts';
|
||||||
|
import type {RequestData, RequestOpts} from '../types.ts';
|
||||||
|
|
||||||
const {csrfToken} = window.config;
|
const {csrfToken} = window.config;
|
||||||
|
|
||||||
@ -8,8 +9,9 @@ const safeMethods = new Set(['GET', 'HEAD', 'OPTIONS', 'TRACE']);
|
|||||||
// fetch wrapper, use below method name functions and the `data` option to pass in data
|
// fetch wrapper, use below method name functions and the `data` option to pass in data
|
||||||
// which will automatically set an appropriate headers. For json content, only object
|
// which will automatically set an appropriate headers. For json content, only object
|
||||||
// and array types are currently supported.
|
// and array types are currently supported.
|
||||||
export function request(url, {method = 'GET', data, headers = {}, ...other} = {}) {
|
export function request(url: string, {method = 'GET', data, headers = {}, ...other}: RequestOpts = {}) {
|
||||||
let body, contentType;
|
let body: RequestData;
|
||||||
|
let contentType: string;
|
||||||
if (data instanceof FormData || data instanceof URLSearchParams) {
|
if (data instanceof FormData || data instanceof URLSearchParams) {
|
||||||
body = data;
|
body = data;
|
||||||
} else if (isObject(data) || Array.isArray(data)) {
|
} else if (isObject(data) || Array.isArray(data)) {
|
||||||
@ -34,8 +36,8 @@ export function request(url, {method = 'GET', data, headers = {}, ...other} = {}
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export const GET = (url, opts) => request(url, {method: 'GET', ...opts});
|
export const GET = (url: string, opts?: RequestOpts) => request(url, {method: 'GET', ...opts});
|
||||||
export const POST = (url, opts) => request(url, {method: 'POST', ...opts});
|
export const POST = (url: string, opts?: RequestOpts) => request(url, {method: 'POST', ...opts});
|
||||||
export const PATCH = (url, opts) => request(url, {method: 'PATCH', ...opts});
|
export const PATCH = (url: string, opts?: RequestOpts) => request(url, {method: 'PATCH', ...opts});
|
||||||
export const PUT = (url, opts) => request(url, {method: 'PUT', ...opts});
|
export const PUT = (url: string, opts?: RequestOpts) => request(url, {method: 'PUT', ...opts});
|
||||||
export const DELETE = (url, opts) => request(url, {method: 'DELETE', ...opts});
|
export const DELETE = (url: string, opts?: RequestOpts) => request(url, {method: 'DELETE', ...opts});
|
||||||
|
@ -2,8 +2,19 @@ import {htmlEscape} from 'escape-goat';
|
|||||||
import {svg} from '../svg.ts';
|
import {svg} from '../svg.ts';
|
||||||
import {animateOnce, showElem} from '../utils/dom.ts';
|
import {animateOnce, showElem} from '../utils/dom.ts';
|
||||||
import Toastify from 'toastify-js'; // don't use "async import", because when network error occurs, the "async import" also fails and nothing is shown
|
import Toastify from 'toastify-js'; // don't use "async import", because when network error occurs, the "async import" also fails and nothing is shown
|
||||||
|
import type {Intent} from '../types.ts';
|
||||||
|
import type {SvgName} from '../svg.ts';
|
||||||
|
import type {Options} from 'toastify-js';
|
||||||
|
|
||||||
const levels = {
|
type ToastLevels = {
|
||||||
|
[intent in Intent]: {
|
||||||
|
icon: SvgName,
|
||||||
|
background: string,
|
||||||
|
duration: number,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const levels: ToastLevels = {
|
||||||
info: {
|
info: {
|
||||||
icon: 'octicon-check',
|
icon: 'octicon-check',
|
||||||
background: 'var(--color-green)',
|
background: 'var(--color-green)',
|
||||||
@ -21,8 +32,13 @@ const levels = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type ToastOpts = {
|
||||||
|
useHtmlBody?: boolean,
|
||||||
|
preventDuplicates?: boolean,
|
||||||
|
} & Options;
|
||||||
|
|
||||||
// See https://github.com/apvarun/toastify-js#api for options
|
// See https://github.com/apvarun/toastify-js#api for options
|
||||||
function showToast(message, level, {gravity, position, duration, useHtmlBody, preventDuplicates = true, ...other} = {}) {
|
function showToast(message: string, level: Intent, {gravity, position, duration, useHtmlBody, preventDuplicates = true, ...other}: ToastOpts = {}) {
|
||||||
const body = useHtmlBody ? String(message) : htmlEscape(message);
|
const body = useHtmlBody ? String(message) : htmlEscape(message);
|
||||||
const key = `${level}-${body}`;
|
const key = `${level}-${body}`;
|
||||||
|
|
||||||
@ -59,14 +75,14 @@ function showToast(message, level, {gravity, position, duration, useHtmlBody, pr
|
|||||||
return toast;
|
return toast;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function showInfoToast(message, opts) {
|
export function showInfoToast(message: string, opts?: ToastOpts) {
|
||||||
return showToast(message, 'info', opts);
|
return showToast(message, 'info', opts);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function showWarningToast(message, opts) {
|
export function showWarningToast(message: string, opts?: ToastOpts) {
|
||||||
return showToast(message, 'warning', opts);
|
return showToast(message, 'warning', opts);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function showErrorToast(message, opts) {
|
export function showErrorToast(message: string, opts?: ToastOpts) {
|
||||||
return showToast(message, 'error', opts);
|
return showToast(message, 'error', opts);
|
||||||
}
|
}
|
||||||
|
@ -146,17 +146,19 @@ const svgs = {
|
|||||||
'octicon-x-circle-fill': octiconXCircleFill,
|
'octicon-x-circle-fill': octiconXCircleFill,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type SvgName = keyof typeof svgs;
|
||||||
|
|
||||||
// TODO: use a more general approach to access SVG icons.
|
// TODO: use a more general approach to access SVG icons.
|
||||||
// At the moment, developers must check, pick and fill the names manually,
|
// At the moment, developers must check, pick and fill the names manually,
|
||||||
// most of the SVG icons in assets couldn't be used directly.
|
// most of the SVG icons in assets couldn't be used directly.
|
||||||
|
|
||||||
// retrieve an HTML string for given SVG icon name, size and additional classes
|
// retrieve an HTML string for given SVG icon name, size and additional classes
|
||||||
export function svg(name, size = 16, className = '') {
|
export function svg(name: SvgName, size = 16, className = '') {
|
||||||
if (!(name in svgs)) throw new Error(`Unknown SVG icon: ${name}`);
|
if (!(name in svgs)) throw new Error(`Unknown SVG icon: ${name}`);
|
||||||
if (size === 16 && !className) return svgs[name];
|
if (size === 16 && !className) return svgs[name];
|
||||||
|
|
||||||
const document = parseDom(svgs[name], 'image/svg+xml');
|
const document = parseDom(svgs[name], 'image/svg+xml');
|
||||||
const svgNode = document.firstChild;
|
const svgNode = document.firstChild as SVGElement;
|
||||||
if (size !== 16) {
|
if (size !== 16) {
|
||||||
svgNode.setAttribute('width', String(size));
|
svgNode.setAttribute('width', String(size));
|
||||||
svgNode.setAttribute('height', String(size));
|
svgNode.setAttribute('height', String(size));
|
||||||
@ -165,7 +167,7 @@ export function svg(name, size = 16, className = '') {
|
|||||||
return serializeXml(svgNode);
|
return serializeXml(svgNode);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function svgParseOuterInner(name) {
|
export function svgParseOuterInner(name: SvgName) {
|
||||||
const svgStr = svgs[name];
|
const svgStr = svgs[name];
|
||||||
if (!svgStr) throw new Error(`Unknown SVG icon: ${name}`);
|
if (!svgStr) throw new Error(`Unknown SVG icon: ${name}`);
|
||||||
|
|
||||||
@ -179,7 +181,7 @@ export function svgParseOuterInner(name) {
|
|||||||
const svgInnerHtml = svgStr.slice(p1 + 1, p2);
|
const svgInnerHtml = svgStr.slice(p1 + 1, p2);
|
||||||
const svgOuterHtml = svgStr.slice(0, p1 + 1) + svgStr.slice(p2);
|
const svgOuterHtml = svgStr.slice(0, p1 + 1) + svgStr.slice(p2);
|
||||||
const svgDoc = parseDom(svgOuterHtml, 'image/svg+xml');
|
const svgDoc = parseDom(svgOuterHtml, 'image/svg+xml');
|
||||||
const svgOuter = svgDoc.firstChild;
|
const svgOuter = svgDoc.firstChild as SVGElement;
|
||||||
return {svgOuter, svgInnerHtml};
|
return {svgOuter, svgInnerHtml};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,3 +21,11 @@ export type Config = {
|
|||||||
mermaidMaxSourceCharacters: number,
|
mermaidMaxSourceCharacters: number,
|
||||||
i18n: Record<string, string>,
|
i18n: Record<string, string>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type Intent = 'error' | 'warning' | 'info';
|
||||||
|
|
||||||
|
export type RequestData = string | FormData | URLSearchParams;
|
||||||
|
|
||||||
|
export type RequestOpts = {
|
||||||
|
data?: RequestData,
|
||||||
|
} & RequestInit;
|
||||||
|
Loading…
Reference in New Issue
Block a user