Files
EdgeAdmin/web/public/js/components/server/http-cache-stale-config.js

61 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-12-16 17:27:09 +08:00
Vue.component("http-cache-stale-config", {
props: ["v-cache-stale-config"],
data: function () {
let config = this.vCacheStaleConfig
if (config == null) {
config = {
isPrior: false,
isOn: false,
status: [],
supportStaleIfErrorHeader: true,
life: {
count: 1,
unit: "day"
}
}
}
return {
config: config
}
},
watch: {
config: {
deep: true,
handler: function () {
this.$emit("change", this.config)
}
}
},
methods: {},
template: `<table class="ui table definition selectable">
<tbody>
<tr>
2021-12-17 14:17:48 +08:00
<td class="title">启用过时缓存</td>
2021-12-16 17:27:09 +08:00
<td>
<checkbox v-model="config.isOn"></checkbox>
2021-12-17 14:17:48 +08:00
<p class="comment">选中后在更新缓存失败后会尝试读取过时的缓存</p>
2021-12-16 17:27:09 +08:00
</td>
</tr>
<tr v-show="config.isOn">
<td>有效期</td>
<td>
<time-duration-box :v-value="config.life"></time-duration-box>
<p class="comment">缓存在过期之后仍然保留的时间</p>
</td>
</tr>
<tr v-show="config.isOn">
<td>状态码</td>
<td><http-status-box :v-status-list="config.status"></http-status-box>
2021-12-17 14:17:48 +08:00
<p class="comment">在这些状态码出现时使用过时缓存默认支持<code-label>50x</code-label></p>
2021-12-16 17:27:09 +08:00
</td>
</tr>
<tr v-show="config.isOn">
<td>支持stale-if-error</td>
<td>
<checkbox v-model="config.supportStaleIfErrorHeader"></checkbox>
2021-12-17 14:17:48 +08:00
<p class="comment">选中后支持在Cache-Control中通过<code-label>stale-if-error</code-label></p>
2021-12-16 17:27:09 +08:00
</td>
</tr>
</tbody>
</table>`
})