// Variables used by Scriptable. // These must be at the very top of the file. Do not edit. // icon-glyph: newspaper; icon-color: red; /** * 财联社电报 * * @version 1.2.0 * @author Honye */ /** * utils * @version 1.2.2 */ /** * @returns {Record<'small'|'medium'|'large'|'extraLarge', number>} */ const widgetSize = () => { const phones = { /** 16 Pro Max */ 956: { small: 170, medium: 364, large: 382 }, /** 16 Pro */ 874: { small: 162, medium: 344, large: 366 }, /** 16 Plus, 15 Pro Max, 15 Plus, 14 Pro Max */ 932: { small: 170, medium: 364, large: 382 }, /** 13 Pro Max, 12 Pro Max */ 926: { small: 170, medium: 364, large: 382 }, /** 11 Pro Max, 11, XS Max, XR */ 896: { small: 169, medium: 360, large: 379 }, /** Plus phones */ 736: { small: 157, medium: 348, large: 357 }, /** 16, 15 Pro, 15, 14 Pro */ 852: { small: 158, medium: 338, large: 354 }, /** 13, 13 Pro, 12, 12 Pro */ 844: { small: 158, medium: 338, large: 354 }, /** 13 mini, 12 mini / 11 Pro, XS, X */ 812: { small: 155, medium: 329, large: 345 }, /** SE2 and 6/6S/7/8 */ 667: { small: 148, medium: 321, large: 324 }, /** iPad Pro 2 */ 1194: { small: 155, medium: 342, large: 342, extraLarge: 715.5 }, /** iPad 6 */ 1024: { small: 141, medium: 305.5, large: 305.5, extraLarge: 634.5 } }; let { width, height } = Device.screenSize(); if (width > height) height = width; if (phones[height]) return phones[height] if (config.runsInWidget) { const pc = { small: 164, medium: 344, large: 344 }; return pc } // in app screen fixed 375x812 pt return { small: 155, medium: 329, large: 329 } }; /** * 多语言国际化 * @param {{[language: string]: string} | [en:string, zh:string]} langs */ const i18n = (langs) => { const language = Device.language(); if (Array.isArray(langs)) { langs = { en: langs[0], zh: langs[1], others: langs[0] }; } else { langs.others = langs.others || langs.en; } return langs[language] || langs.others }; /** * 获取网络图片 * @param {string} url */ const getImage = async (url) => { const request = new Request(url); const image = await request.loadImage(); return image }; /** * @param {...string} paths */ const joinPath = (...paths) => { const fm = FileManager.local(); return paths.reduce((prev, curr) => { return fm.joinPath(prev, curr) }, '') }; /** * 规范使用 FileManager。每个脚本使用独立文件夹 * * 注意:桌面组件无法写入 cacheDirectory 和 temporaryDirectory * @param {object} options * @param {boolean} [options.useICloud] * @param {string} [options.basePath] */ const useFileManager = (options = {}) => { const { useICloud, basePath } = options; const fm = useICloud ? FileManager.iCloud() : FileManager.local(); const paths = [fm.documentsDirectory(), Script.name()]; if (basePath) { paths.push(basePath); } const cacheDirectory = joinPath(...paths); /** * 删除路径末尾所有的 / * @param {string} filePath */ const safePath = (filePath) => { return fm.joinPath(cacheDirectory, filePath).replace(/\/+$/, '') }; /** * 如果上级文件夹不存在,则先创建文件夹 * @param {string} filePath */ const preWrite = (filePath) => { const i = filePath.lastIndexOf('/'); const directory = filePath.substring(0, i); if (!fm.fileExists(directory)) { fm.createDirectory(directory, true); } }; const writeString = (filePath, content) => { const nextPath = safePath(filePath); preWrite(nextPath); fm.writeString(nextPath, content); }; /** * @param {string} filePath * @param {*} jsonData */ const writeJSON = (filePath, jsonData) => writeString(filePath, JSON.stringify(jsonData)); /** * @param {string} filePath * @param {Image} image */ const writeImage = (filePath, image) => { const nextPath = safePath(filePath); preWrite(nextPath); return fm.writeImage(nextPath, image) }; /** * 文件不存在时返回 null * @param {string} filePath * @returns {string|null} */ const readString = (filePath) => { const fullPath = fm.joinPath(cacheDirectory, filePath); if (fm.fileExists(fullPath)) { return fm.readString( fm.joinPath(cacheDirectory, filePath) ) } return null }; /** * @param {string} filePath */ const readJSON = (filePath) => JSON.parse(readString(filePath)); /** * @param {string} filePath */ const readImage = (filePath) => { const fullPath = safePath(filePath); if (fm.fileExists(fullPath)) { return fm.readImage(fullPath) } return null }; return { cacheDirectory, writeString, writeJSON, writeImage, readString, readJSON, readImage } }; /** 规范使用文件缓存。每个脚本使用独立文件夹 */ const useCache = () => useFileManager({ basePath: 'cache' }); /** * @file Scriptable WebView JSBridge native SDK * @version 1.0.3 * @author Honye */ /** * @typedef Options * @property {Record void>} methods */ const sendResult = (() => { let sending = false; /** @type {{ code: string; data: any }[]} */ const list = []; /** * @param {WebView} webView * @param {string} code * @param {any} data */ return async (webView, code, data) => { if (sending) return sending = true; list.push({ code, data }); const arr = list.splice(0, list.length); for (const { code, data } of arr) { const eventName = `ScriptableBridge_${code}_Result`; const res = data instanceof Error ? { err: data.message } : data; await webView.evaluateJavaScript( `window.dispatchEvent( new CustomEvent( '${eventName}', { detail: ${JSON.stringify(res)} } ) )` ); } if (list.length) { const { code, data } = list.shift(); sendResult(webView, code, data); } else { sending = false; } } })(); /** * @param {WebView} webView * @param {Options} options */ const inject = async (webView, options) => { const js = `(() => { const queue = window.__scriptable_bridge_queue if (queue && queue.length) { completion(queue) } window.__scriptable_bridge_queue = null if (!window.ScriptableBridge) { window.ScriptableBridge = { invoke(name, data, callback) { const detail = { code: name, data } const eventName = \`ScriptableBridge_\${name}_Result\` const controller = new AbortController() window.addEventListener( eventName, (e) => { callback && callback(e.detail) controller.abort() }, { signal: controller.signal } ) if (window.__scriptable_bridge_queue) { window.__scriptable_bridge_queue.push(detail) completion() } else { completion(detail) window.__scriptable_bridge_queue = [] } } } window.dispatchEvent( new CustomEvent('ScriptableBridgeReady') ) } })()`; const res = await webView.evaluateJavaScript(js, true); if (!res) return inject(webView, options) const methods = options.methods || {}; const events = Array.isArray(res) ? res : [res]; // 同时执行多次 webView.evaluateJavaScript Scriptable 存在问题 // 可能是因为 JavaScript 是单线程导致的 const sendTasks = events.map(({ code, data }) => { return (() => { try { return Promise.resolve(methods[code](data)) } catch (e) { return Promise.reject(e) } })() .then((res) => sendResult(webView, code, res)) .catch((e) => { console.error(e); sendResult(webView, code, e instanceof Error ? e : new Error(e)); }) }); await Promise.all(sendTasks); inject(webView, options); }; /** * @param {WebView} webView * @param {object} args * @param {string} args.html * @param {string} [args.baseURL] * @param {Options} options */ const loadHTML = async (webView, args, options = {}) => { const { html, baseURL } = args; await webView.loadHTML(html, baseURL); inject(webView, options).catch((err) => console.error(err)); }; /** * 轻松实现桌面组件可视化配置 * * - 颜色选择器及更多表单控件 * - 快速预览 * * GitHub: https://github.com/honye * * @version 1.7.3 * @author Honye */ const fm = FileManager.local(); const fileName = 'settings.json'; const toast = (message) => { const notification = new Notification(); notification.title = Script.name(); notification.body = message; notification.schedule(); }; const isUseICloud = () => { let ifm; try { ifm = useFileManager({ useICloud: true }); } catch (e) { return false } const filePath = fm.joinPath(ifm.cacheDirectory, fileName); return fm.fileExists(filePath) }; /** * @returns {Promise} */ const readSettings = async () => { const useICloud = isUseICloud(); console.log(`[info] use ${useICloud ? 'iCloud' : 'local'} settings`); const fm = useFileManager({ useICloud }); const settings = fm.readJSON(fileName); return settings }; /** * @param {Record} data * @param {{ useICloud: boolean; }} [options] */ const writeSettings = async (data, { useICloud } = { useICloud: isUseICloud() }) => { const fm = useFileManager({ useICloud }); fm.writeJSON(fileName, data); }; const removeSettings = async (settings) => { const cache = useFileManager({ useICloud: settings.useICloud }); fm.remove( fm.joinPath(cache.cacheDirectory, fileName) ); }; const moveSettings = (useICloud, data) => { const localFM = useFileManager(); const iCloudFM = useFileManager({ useICloud: true }); const [i, l] = [ fm.joinPath(iCloudFM.cacheDirectory, fileName), fm.joinPath(localFM.cacheDirectory, fileName) ]; try { // 移动文件需要创建父文件夹,写入操作会自动创建文件夹 writeSettings(data, { useICloud }); if (useICloud) { if (fm.fileExists(l)) fm.remove(l); } else { if (fm.fileExists(i)) fm.remove(i); } } catch (e) { console.error(e); } }; /** * @typedef {object} NormalFormItem * @property {string} name * @property {string} label * @property {'text'|'number'|'color'|'select'|'date'|'cell'|'switch'} [type] * - HTML type 属性 * - `'cell'`: 可点击的 * @property {'(prefers-color-scheme: light)'|'(prefers-color-scheme: dark)'} [media] * @property {{ label: string; value: unknown }[]} [options] * @property {unknown} [default] */ /** * @typedef {Pick & { type: 'group', items: FormItem[] }} GroupFormItem */ /** * @typedef {Omit & { type: 'page' } & Pick} PageFormItem 单独的页面 */ /** * @typedef {NormalFormItem|GroupFormItem|PageFormItem} FormItem */ /** * @typedef {object} CommonSettings * @property {boolean} useICloud * @property {string} [backgroundImage] 背景图路径 * @property {string} [backgroundColorLight] * @property {string} [backgroundColorDark] */ /** * @typedef {CommonSettings & Record} Settings */ /** * @typedef {object} Options * @property {(data: { * settings: Settings; * family?: typeof config.widgetFamily; * }) => ListWidget | Promise} render * @property {string} [head] 顶部插入 HTML * @property {FormItem[]} [formItems] * @property {(item: FormItem) => void} [onItemClick] * @property {string} [homePage] 右上角分享菜单地址 * @property {(data: any) => void} [onWebEvent] */ /** * @template T * @typedef {T extends infer O ? {[K in keyof O]: O[K]} : never} Expand */ const previewsHTML = `
`; const copyrightHTML = ``; /** * @param {Expand} options * @param {boolean} [isFirstPage] * @param {object} [others] * @param {Settings} [others.settings] * @returns {Promise} 仅在 Widget 中运行时返回 ListWidget */ const present = async (options, isFirstPage, others = {}) => { const { formItems = [], onItemClick, render, head, homePage = 'https://www.imarkr.com', onWebEvent } = options; const cache = useCache(); const settings = others.settings || await readSettings() || {}; /** * @param {Parameters[0]} param */ const getWidget = async (param) => { const widget = await render(param); const { backgroundImage, backgroundColorLight, backgroundColorDark } = settings; if (backgroundImage && fm.fileExists(backgroundImage)) { widget.backgroundImage = fm.readImage(backgroundImage); } if (!widget.backgroundColor || backgroundColorLight || backgroundColorDark) { widget.backgroundColor = Color.dynamic( new Color(backgroundColorLight || '#ffffff'), new Color(backgroundColorDark || '#242426') ); } return widget }; if (config.runsInWidget) { const widget = await getWidget({ settings }); Script.setWidget(widget); return widget } // ====== web start ======= const style = `:root { --color-primary: #007aff; --text-color: #1e1f24; --text-secondary: #8b8d98; --divider-color: #eff0f3; --card-background: #fff; --card-radius: 10px; --bg-input: #f9f9fb; } * { -webkit-user-select: none; user-select: none; } :focus-visible { outline-width: 2px; } body { margin: 10px 0; -webkit-font-smoothing: antialiased; font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif; accent-color: var(--color-primary); color: var(--text-color); } input, textarea { -webkit-user-select: auto; user-select: auto; } input:where([type="date"], [type="time"], [type="datetime-local"], [type="month"], [type="week"]) { accent-color: var(--text-color); white-space: nowrap; } select { accent-color: var(--text-color); } body { background: #f2f2f7; } button { font-size: 16px; background: var(--card-background); color: var(--text-color); border-radius: 8px; border: none; padding: 0.5em; } button .iconfont { margin-right: 6px; } .list { margin: 15px; } .list__header { margin: 0 20px; color: var(--text-secondary); font-size: 13px; } .list__body { margin-top: 10px; background: var(--card-background); border-radius: var(--card-radius); border-radius: 12px; overflow: hidden; } .form-item { display: flex; align-items: center; justify-content: space-between; column-gap: 1em; font-size: 16px; min-height: 2em; padding: 0.5em 20px; position: relative; } .form-item[media*="prefers-color-scheme"] { display: none; } .form-item--link .icon-arrow_right { color: #86868b; } .form-item + .form-item::before { content: ""; position: absolute; top: 0; left: 20px; right: 0; border-top: 0.5px solid var(--divider-color); } .form-item__input-wrapper { flex: 1; text-align: right; box-sizing: border-box; padding: 2px; margin-right: -2px; overflow: hidden; } .form-item__input { max-width: calc(100% - 4px); } .form-item .iconfont { margin-right: 4px; } .form-item input, .form-item textarea, .form-item select { font-size: 14px; text-align: right; } .form-item input[type=text], .form-item textarea { width: 11em; } .form-item textarea { text-align: start; } .form-item input:not([type=color]), .form-item textarea, .form-item select { border-radius: 99px; background-color: var(--bg-input); border: none; color: var(--text-color); } .form-item input[type="checkbox"] { width: 1.25em; height: 1.25em; } input[type="number"] { width: 4em; } input[type="date"] { min-width: 6.4em; } input[type='checkbox'][role='switch'] { margin: 0; position: relative; display: inline-block; appearance: none; width: 40px; height: 25px; border-radius: 25px; background: var(--bg-input); transition: 0.3s ease-in-out; } input[type='checkbox'][role='switch']::before { content: ''; position: absolute; left: 2px; top: 2px; width: 21px; height: 21px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 2px 6px 0 rgba(0, 0, 0, 0.15), 0 2px 1px 0 rgba(0, 0, 0, 0.06); transition: 0.3s ease-in-out; } input[type='checkbox'][role='switch']:checked { background: var(--color-primary); } input[type='checkbox'][role='switch']:checked::before { transform: translateX(16px); } .actions { margin: 15px; display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 12px; } .copyright { margin: 15px; margin-inline: 18px; font-size: 12px; color: var(--text-secondary); } .copyright a { color: var(--text-color); text-decoration: none; } .preview.loading { pointer-events: none; } .icon-loading { display: inline-block; animation: 1s linear infinite spin; } @keyframes spin { 0% { transform: rotate(0); } 100% { transform: rotate(1turn); } } @media (prefers-color-scheme: light) { .form-item[media="(prefers-color-scheme: light)"] { display: flex; } } @media (prefers-color-scheme: dark) { :root { --text-color: #eeeef0; --text-secondary: #6c6e79; --divider-color: #222325; --card-background: #19191b; --bg-input: #303136; } body { background: #111113; } input[type='checkbox'][role='switch']::before { background-color: rgb(206, 206, 206); } .form-item[media="(prefers-color-scheme: dark)"] { display: flex; } }`; const js = `(() => { const settings = ${JSON.stringify({ ...settings, useICloud: isUseICloud() })} const formItems = ${JSON.stringify(formItems)} window.invoke = (code, data, cb) => { ScriptableBridge.invoke(code, data, cb) } const formData = {} const createFormItem = (item) => { const value = settings[item.name] ?? item.default ?? null formData[item.name] = value; const label = document.createElement("label"); label.className = "form-item"; if (item.media) { label.setAttribute('media', item.media) } const div = document.createElement("div"); div.innerText = item.label; label.appendChild(div); if (/^(select|multi-select)$/.test(item.type)) { const wrapper = document.createElement('div') wrapper.className = 'form-item__input-wrapper' const select = document.createElement('select') select.className = 'form-item__input' select.name = item.name select.multiple = item.type === 'multi-select' const map = (options, parent) => { for (const opt of (options || [])) { if (opt.children?.length) { const elGroup = document.createElement('optgroup') elGroup.label = opt.label map(opt.children, elGroup) parent.appendChild(elGroup) } else { const option = document.createElement('option') option.value = opt.value option.innerText = opt.label option.selected = Array.isArray(value) ? value.includes(opt.value) : (value === opt.value) parent.appendChild(option) } } } map(item.options || [], select) select.addEventListener('change', ({ target }) => { let { value } = target if (item.type === 'multi-select') { value = Array.from(target.selectedOptions).map(({ value }) => value) } formData[item.name] = value invoke('changeSettings', formData) }) wrapper.appendChild(select) label.appendChild(wrapper) } else if ( item.type === 'cell' || item.type === 'page' ) { label.classList.add('form-item--link') const icon = document.createElement('i') icon.className = 'iconfont icon-arrow_right' label.appendChild(icon) label.addEventListener('click', () => { const { name } = item switch (name) { case 'backgroundImage': invoke('chooseBgImg') break case 'clearBackgroundImage': invoke('clearBgImg') break case 'reset': reset() break default: invoke('itemClick', item) } }) } else { const input = document.createElement(item.type ==='textarea' ? 'textarea' : "input") input.className = 'form-item__input' input.name = item.name input.type = item.type || "text"; input.enterKeyHint = item.type ==='textarea' ? 'enter' : 'done' if (item.type === 'textarea') input.rows = '1' input.value = value // Switch if (item.type === 'switch') { input.type = 'checkbox' input.role = 'switch' input.checked = value if (item.name === 'useICloud') { input.addEventListener('change', (e) => { invoke('moveSettings', e.target.checked) }) } } if (item.type === 'number') { input.inputMode = 'decimal' } if (input.type === 'text' || input.type === 'textarea') { input.size = 12 } input.addEventListener("change", (e) => { formData[item.name] = item.type === 'switch' ? e.target.checked : item.type === 'number' ? Number(e.target.value) : e.target.value; invoke('changeSettings', formData) }); label.appendChild(input); } return label } const createList = (list, title) => { const fragment = document.createDocumentFragment() let elBody; for (const item of list) { if (item.type === 'group') { const grouped = createList(item.items, item.label) fragment.appendChild(grouped) } else { if (!elBody) { const groupDiv = fragment.appendChild(document.createElement('div')) groupDiv.className = 'list' if (title) { const elTitle = groupDiv.appendChild(document.createElement('div')) elTitle.className = 'list__header' elTitle.textContent = title } elBody = groupDiv.appendChild(document.createElement('div')) elBody.className = 'list__body' } const label = createFormItem(item) elBody.appendChild(label) } } return fragment } const fragment = createList(formItems) document.getElementById('settings').appendChild(fragment) for (const btn of document.querySelectorAll('.preview')) { btn.addEventListener('click', (e) => { const target = e.currentTarget target.classList.add('loading') const icon = e.currentTarget.querySelector('.iconfont') const className = icon.className icon.className = 'iconfont icon-loading' invoke( 'preview', e.currentTarget.dataset.size, () => { target.classList.remove('loading') icon.className = className } ) }) } const setFieldValue = (name, value) => { const input = document.querySelector(\`.form-item__input[name="\${name}"]\`) if (!input) return if (input.type === 'checkbox') { input.checked = value } else { input.value = value } } const reset = (items = formItems) => { for (const item of items) { if (item.type === 'group') { reset(item.items) } else if (item.type === 'page') { continue; } else { setFieldValue(item.name, item.default) } } invoke('removeSettings', formData) } })()`; const html = ` ${head || ''}
${isFirstPage ? (previewsHTML + copyrightHTML) : ''} `; const webView = new WebView(); const methods = { async preview (data) { const widget = await getWidget({ settings, family: data }); widget[`present${data.replace(data[0], data[0].toUpperCase())}`](); }, safari (data) { Safari.openInApp(data, true); }, changeSettings (data) { Object.assign(settings, data); writeSettings(settings, { useICloud: settings.useICloud }); }, moveSettings (data) { settings.useICloud = data; moveSettings(data, settings); }, removeSettings (data) { Object.assign(settings, data); clearBgImg(); removeSettings(settings); }, chooseBgImg (data) { chooseBgImg(); }, clearBgImg () { clearBgImg(); }, async itemClick (data) { if (data.type === 'page') { // `data` 经传到 HTML 后丢失了不可序列化的数据,因为需要从源数据查找 const item = (() => { const find = (items) => { for (const el of items) { if (el.name === data.name) return el if (el.type === 'group') { const r = find(el.items); if (r) return r } } return null }; return find(formItems) })(); await present(item, false, { settings }); } else { await onItemClick?.(data, { settings }); } }, native (data) { return onWebEvent?.(data) } }; await loadHTML( webView, { html, baseURL: homePage }, { methods } ); const clearBgImg = () => { const { backgroundImage } = settings; delete settings.backgroundImage; if (backgroundImage && fm.fileExists(backgroundImage)) { fm.remove(backgroundImage); } writeSettings(settings, { useICloud: settings.useICloud }); toast(i18n(['Cleared success!', '背景已清除'])); }; const chooseBgImg = async () => { try { const image = await Photos.fromLibrary(); cache.writeImage('bg.png', image); const imgPath = fm.joinPath(cache.cacheDirectory, 'bg.png'); settings.backgroundImage = imgPath; writeSettings(settings, { useICloud: settings.useICloud }); } catch (e) { console.log('[info] 用户取消选择图片'); } }; webView.present(); // ======= web end ========= }; /** * @param {Options} options */ const withSettings = async (options) => { const { formItems, onItemClick, ...restOptions } = options; return present({ formItems: [ { label: i18n(['Common', '通用']), type: 'group', items: [ { label: i18n(['Sync with iCloud', 'iCloud 同步']), type: 'switch', name: 'useICloud', default: false }, { label: i18n(['Background', '背景']), type: 'page', name: 'background', formItems: [ { label: i18n(['Background', '背景']), type: 'group', items: [ { name: 'backgroundColorLight', type: 'color', label: i18n(['Background color', '背景色']), media: '(prefers-color-scheme: light)', default: '#ffffff' }, { name: 'backgroundColorDark', type: 'color', label: i18n(['Background color', '背景色']), media: '(prefers-color-scheme: dark)', default: '#242426' }, { label: i18n(['Background image', '背景图']), type: 'cell', name: 'backgroundImage' } ] }, { type: 'group', items: [ { label: i18n(['Clear background image', '清除背景图']), type: 'cell', name: 'clearBackgroundImage' } ] } ] }, { label: i18n(['Reset', '重置']), type: 'cell', name: 'reset' } ] }, { label: i18n(['Settings', '设置']), type: 'group', items: formItems } ], onItemClick: (item, ...args) => { onItemClick?.(item, ...args); }, ...restOptions }, true) }; const preference = { fontSize: 12, textColorLight: '#232323', textColorDark: '#ffffff', itemTimeColorLight: '#707070', itemTimeColorDark: '#c2c2c2', lineLimit: 2, space: 2, exclude: '' }; const cache = useCache(); const lineHeight = 1.24; const space = 4; const requestData = async () => { const url = 'https://www.cls.cn/nodeapi/telegraphList'; const request = new Request(url); const data = await request.loadJSON(); return data }; const getLogoImage = async () => { try { const image = cache.readImage('logo.png'); if (!image) { throw new Error('no cache') } return image } catch (e) { const image = await getImage( 'https://is1-ssl.mzstatic.com/image/thumb/Purple211/v4/d8/03/5d/d8035d9a-bd09-dc3a-6aa4-fe29a805568e/AppIcon-0-0-1x_U007epad-0-0-0-sRGB-85-220.png/434x0w.webp' ); cache.writeImage('logo.png', image); return image } }; const measureText = async ( text, fontSize, fontWeight = 'normal', fontStyle = 'normal', fontFamily = '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif' ) => { const js = `const canvas = document.createElement('canvas') const context = canvas.getContext('2d') // 格式: "font-style font-variant font-weight font-size/line-height font-family" // 对于宽度计算,line-height 和 font-variant 通常不影响单行宽度 context.font = \`${fontStyle} ${fontWeight} ${fontSize}px ${fontFamily}\` const { width } = context.measureText('${text}') completion({ width })`; const wv = new WebView(); const res = await wv.evaluateJavaScript(js, true); return res }; const formatTime = (date) => { const df = new DateFormatter(); df.dateFormat = 'HH:mm'; return df.string(date) }; const createWidgt = async () => { const { fontSize, textColorLight, textColorDark, itemTimeColorLight, itemTimeColorDark, lineLimit, exclude } = preference; const { data: { roll_data: rollData } } = await requestData(); const sizes = widgetSize(); const widgetWidth = config.widgetFamily === 'small' ? sizes.small : sizes.medium; const widgetHeight = config.widgetFamily === 'large' ? sizes.large : sizes.small; let leftHeight = widgetHeight; const widget = new ListWidget(); widget.setPadding(0, 12, 0, 12); // 上下预留间距 leftHeight -= 20; const head = widget.addStack(); head.size = new Size(-1, fontSize * 1.2 + 2); head.centerAlignContent(); const logo = head.addImage(await getLogoImage()); logo.imageSize = new Size(fontSize * 1.2 + 2, fontSize * 1.2 + 2); logo.cornerRadius = 4; logo.url = 'https://m.cls.cn'; head.addSpacer(4); if (config.widgetFamily !== 'small') { const title = head.addText('财联社电报'); title.font = Font.mediumSystemFont(fontSize * 1.2); title.textColor = Color.dynamic( new Color(textColorLight), new Color(textColorDark) ); } head.addSpacer(); const time = head.addText(`${config.widgetFamily !== 'small' ? '更新于 ' : ''}${formatTime(new Date())}`); time.font = Font.systemFont(10); time.textColor = Color.dynamic( new Color(textColorLight, 0.8), new Color(textColorDark, 0.8) ); // 减去头部高度 leftHeight -= fontSize * 1.2 + 2; const { width: timeWidth } = await measureText('04:44', fontSize); const titleCWidth = widgetWidth - 24 - timeWidth - space; for (const item of rollData) { const titleText = item.title || item.content; if (exclude && new RegExp(exclude, 'i').test(titleText)) { continue } if (preference.space > 0) { widget.addSpacer(preference.space); leftHeight -= preference.space; } const { width: titleWidth } = await measureText(titleText, fontSize); // 此条文本需要多少行 let lines = Math.ceil(titleWidth / titleCWidth); lines = Math.min(lines, lineLimit); const limit = Math.min(Math.floor(leftHeight / (fontSize * lineHeight)), lineLimit); // 文本实际渲染行数 lines = Math.min(lines, limit); const row = widget.addStack(); row.url = item.shareurl; const textColor = Color.dynamic( new Color(textColorLight), new Color(textColorDark) ); const timeStack = row.addStack(); timeStack.size = new Size(timeWidth, -1); const time = timeStack.addText(`${formatTime(new Date(item.ctime * 1000))}`); time.font = Font.systemFont(fontSize); time.textColor = Color.dynamic( new Color(itemTimeColorLight), new Color(itemTimeColorDark) ); row.addSpacer(4); const title = row.addText(item.title || item.content); title.font = Font.systemFont(fontSize); title.textColor = textColor; title.lineLimit = limit; leftHeight -= lines * (fontSize * lineHeight); if (leftHeight < (fontSize * lineHeight + (preference.space || 0))) break } return widget }; await withSettings({ formItems: [ { label: i18n(['Text size', '字体大小']), name: 'fontSize', type: 'number', default: preference.fontSize }, { label: i18n(['Text color', '文字颜色']), name: 'textColorLight', type: 'color', media: '(prefers-color-scheme: light)', default: preference.textColorLight }, { label: i18n(['Text color', '文字颜色']), name: 'textColorDark', type: 'color', media: '(prefers-color-scheme: dark)', default: preference.textColorDark }, { label: i18n(['Time color', '时间颜色']), name: 'itemTimeColorLight', type: 'color', media: '(prefers-color-scheme: light)', default: preference.itemTimeColorLight }, { label: i18n(['Time color', '时间颜色']), name: 'itemTimeColorDark', type: 'color', media: '(prefers-color-scheme: dark)', default: preference.itemTimeColorDark }, { label: i18n(['Line limit', '行数限制']), name: 'lineLimit', type: 'number', default: preference.lineLimit }, { label: i18n(['Space', '间距']), name: 'space', type: 'number', default: preference.space }, { label: i18n(['Exclude', '过滤排除']), name: 'exclude', type: 'text', default: preference.exclude } ], render: ({ settings, family }) => { if (family) config.widgetFamily = family; Object.assign(preference, settings); return createWidgt() } });